From 644a9ce63cabb4c4b6561fe9374d14d696665da1 Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Thu, 27 Jul 2023 14:44:08 -0700 Subject: [PATCH] Was still truncating instead of rounding in projection --- projection.cpp | 8 +- ...accumulate-attribute_thecomma%3acomma.json | 8 +- tests/allow-existing/both.mbtiles.json | 256 ++-- ..._-y_STATEFP10_-y_COUNTYFP10_-l_merged.json | 14 +- tests/csv/out-null.mbtiles.json | 2 +- tests/csv/out.mbtiles.json | 2 +- .../out/-yNAME_-z5_-sEPSG%3a3857.json | 4 +- tests/id/out/-Z11.json | 42 +- tests/join-population/joined-i.mbtiles.json | 132 +- .../joined-no-tile-stats.mbtiles.json | 130 +- .../join-population/joined-null.mbtiles.json | 130 +- ...d-tile-stats-attributes-limit.mbtiles.json | 130 +- ...ile-stats-sample-values-limit.mbtiles.json | 130 +- ...oined-tile-stats-values-limit.mbtiles.json | 130 +- tests/join-population/joined.mbtiles.json | 130 +- .../just-macarthur.mbtiles.json | 4 +- .../macarthur-6-9-exclude.mbtiles.json | 2 +- .../macarthur-6-9.mbtiles.json | 2 +- .../merged-folder.mbtiles.json | 164 +-- tests/join-population/merged.mbtiles.json | 164 +-- .../join-population/no-macarthur.mbtiles.json | 160 +-- tests/join-population/raw-merged-folder.json | 164 +-- tests/join-population/renamed.mbtiles.json | 18 +- tests/join-population/windows.mbtiles.json | 4 +- tests/knox/out/-zg.json | 436 +++---- tests/knox/out/-zg_-P.json | 436 +++---- tests/muni/decode/multi.mbtiles.onetile.json | 22 +- tests/muni/decode/multi.mbtiles.pipeline.json | 24 +- tests/muni/decode/multi.mbtiles.stats.json | 2 +- tests/muni/out/-Z11_-z11.json | 24 +- ...-Z11_-z11_--calculate-feature-density.json | 36 +- tests/muni/out/-Z11_-z11_--hilbert.json | 28 +- .../out/-Z11_-z11_--prefer-radix-sort.json | 24 +- tests/muni/out/-Z11_-z11_-g2.json | 20 +- tests/muni/out/-Z11_-z13_-B15.json | 16 +- tests/muni/out/-Z11_-z13_-Bf2000.json | 116 +- tests/muni/out/-Z11_-z13_-M10000.json | 90 +- tests/muni/out/-Z11_-z13_-M10000_-aG.json | 84 +- tests/muni/out/-Z11_-z13_-M10000_-ad.json | 200 +-- tests/muni/out/-Z11_-z13_-M10000_-pd.json | 146 +-- tests/muni/out/-Z11_-z13_-M5000_-as.json | 28 +- ...z13_-O100_--cluster-densest-as-needed.json | 10 +- tests/muni/out/-Z11_-z13_-rf2000.json | 104 +- tests/muni/out/-Z11_-z13_-rf2000_-Bg.json | 116 +- tests/muni/out/-Z11_-z13_-rf2000_-g2.json | 88 +- tests/muni/out/-r1_-K20.json | 80 +- ...e_-zg_-M5000_--drop-densest-as-needed.json | 780 ++++++------ ..._-zg_-M5000_--drop-fraction-as-needed.json | 826 ++++++------- ..._-zg_-M5000_--drop-smallest-as-needed.json | 638 +++++----- .../-ae_-zg_-M5000_--force-feature-limit.json | 1038 ++++++++-------- .../out/-z4_-yname.json | 4 +- .../out/-z4_-yname_--drop-polygons.json | 2 +- .../out/-z4_-yname_--grid-low-zooms_-D8.json | 2 +- ...z4_-yname_--no-tiny-polygon-reduction.json | 4 +- .../out/-z4_-yname_-S4.json | 4 +- ...S4_--simplification-at-maximum-zoom_2.json | 4 +- .../out/-z4_-yname_-S4_--visvalingam.json | 4 +- .../out/-z4_-yname_-pD.json | 4 +- .../out/-z4_-yname_-pc.json | 44 +- ...5_-M5000_--coalesce-densest-as-needed.json | 12 +- ..._-M5000_--coalesce-fraction-as-needed.json | 14 +- ..._-M5000_--coalesce-smallest-as-needed.json | 20 +- .../-z5_-M5000_--drop-smallest-as-needed.json | 14 +- .../out/-zg_-yname.json | 168 +-- .../ne_110m_populated_places/out/-yNAME.json | 8 +- .../out/-yNAME_-z5_--drop-denser_60.json | 136 +-- ..._-Z15_--drop-smallest-as-needed_-M300.json | 1086 ++++++++--------- .../out/-Z21_-zg_-D10_-d10.json | 68 +- tests/tl_2015_us_county/out/-z8.json | 8 +- tests/tl_2015_us_county/out/-z8_-pp.json | 8 +- ...1_--no-simplification-of-shared-nodes.json | 12 +- 71 files changed, 4503 insertions(+), 4465 deletions(-) diff --git a/projection.cpp b/projection.cpp index e021752b6..f5f713827 100644 --- a/projection.cpp +++ b/projection.cpp @@ -57,8 +57,8 @@ void lonlat2tile(double lon, double lat, int zoom, long long *x, long long *y) { double lat_rad = lat * M_PI / 180; unsigned long long n = 1LL << zoom; - long long llx = n * ((lon + 180) / 360); - long long lly = n * (1 - (log(tan(lat_rad) + 1 / cos(lat_rad)) / M_PI)) / 2; + long long llx = std::round(n * ((lon + 180) / 360)); + long long lly = std::round(n * (1 - (log(tan(lat_rad) + 1 / cos(lat_rad)) / M_PI)) / 2); *x = llx; *y = lly; @@ -84,8 +84,8 @@ void epsg3857totile(double ix, double iy, int zoom, long long *x, long long *y) ix = 40000000.0; } - *x = ix * (1LL << 31) / 6378137.0 / M_PI + (1LL << 31); - *y = ((1LL << 32) - 1) - (iy * (1LL << 31) / 6378137.0 / M_PI + (1LL << 31)); + *x = std::round(ix * (1LL << 31) / 6378137.0 / M_PI + (1LL << 31)); + *y = std::round(((1LL << 32) - 1) - (iy * (1LL << 31) / 6378137.0 / M_PI + (1LL << 31))); if (zoom != 0) { *x = std::round((double) *x / (1LL << (32 - zoom))); diff --git a/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json b/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json index fdfd97241..805bbba54 100644 --- a/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json +++ b/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json @@ -5337,7 +5337,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1275, "y": 7544 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ -123.948516, -81.873970 ] } } +{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ -123.948505, -81.873970 ] } } ] } ] } , @@ -5481,7 +5481,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 4245, "y": 5238 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 18, "themax": 18, "themin": 18, "theproduct": 18, "themean": 18, "theconcat": 18, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ 6.564438, -44.802834 ] } } +{ "type": "Feature", "properties": { "thesum": 18, "themax": 18, "themin": 18, "theproduct": 18, "themean": 18, "theconcat": 18, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ 6.564438, -44.802842 ] } } ] } ] } , @@ -5889,7 +5889,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2550, "y": 15088 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ -123.948516, -81.873970 ] } } +{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ -123.948510, -81.873970 ] } } ] } ] } , @@ -6045,7 +6045,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 8490, "y": 10477 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 18, "themax": 18, "themin": 18, "theproduct": 18, "themean": 18, "theconcat": 18, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ 6.564433, -44.802834 ] } } +{ "type": "Feature", "properties": { "thesum": 18, "themax": 18, "themin": 18, "theproduct": 18, "themean": 18, "theconcat": 18, "thecomma": "NEWVALUE" }, "geometry": { "type": "Point", "coordinates": [ 6.564433, -44.802838 ] } } ] } ] } , diff --git a/tests/allow-existing/both.mbtiles.json b/tests/allow-existing/both.mbtiles.json index 071ccd0f7..cd2640ff9 100644 --- a/tests/allow-existing/both.mbtiles.json +++ b/tests/allow-existing/both.mbtiles.json @@ -78,9 +78,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730539 ], [ -121.910477, 37.728910 ], [ -121.909447, 37.725379 ], [ -121.910133, 37.722664 ], [ -121.910133, 37.710443 ], [ -121.918373, 37.718590 ], [ -121.925926, 37.727009 ], [ -121.910477, 37.730539 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.809196, 37.740313 ], [ -121.809196, 37.738413 ], [ -121.808167, 37.735969 ], [ -121.808510, 37.730539 ], [ -121.809196, 37.728910 ], [ -121.808510, 37.726194 ], [ -121.808853, 37.722392 ], [ -121.808510, 37.718590 ], [ -121.805077, 37.709628 ], [ -121.804733, 37.707455 ], [ -121.806107, 37.704467 ], [ -121.806107, 37.702566 ], [ -121.808167, 37.701207 ], [ -121.808167, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701207 ], [ -121.823273, 37.708813 ], [ -121.824646, 37.718590 ], [ -121.825676, 37.722664 ], [ -121.827393, 37.725108 ], [ -121.830482, 37.727823 ], [ -121.836319, 37.731082 ], [ -121.837349, 37.733797 ], [ -121.842155, 37.733526 ], [ -121.843872, 37.732439 ], [ -121.845245, 37.732439 ], [ -121.846962, 37.733526 ], [ -121.847992, 37.732711 ], [ -121.850395, 37.734069 ], [ -121.851768, 37.734340 ], [ -121.854172, 37.733254 ], [ -121.854515, 37.732439 ], [ -121.856918, 37.731353 ], [ -121.857262, 37.730539 ], [ -121.860008, 37.730810 ], [ -121.858635, 37.728910 ], [ -121.858292, 37.726194 ], [ -121.856575, 37.725923 ], [ -121.855545, 37.724565 ], [ -121.854172, 37.725379 ], [ -121.852455, 37.725108 ], [ -121.851768, 37.721306 ], [ -121.852455, 37.721306 ], [ -121.853828, 37.720491 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.850739, 37.716146 ], [ -121.851768, 37.714245 ], [ -121.857605, 37.716689 ], [ -121.858978, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865501, 37.718047 ], [ -121.866531, 37.716961 ], [ -121.870995, 37.716418 ], [ -121.872025, 37.716689 ], [ -121.872025, 37.718590 ], [ -121.871338, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724836 ], [ -121.873055, 37.726466 ], [ -121.872711, 37.727552 ], [ -121.873398, 37.728095 ], [ -121.873398, 37.729453 ], [ -121.872711, 37.729453 ], [ -121.874428, 37.731625 ], [ -121.881638, 37.736784 ], [ -121.881638, 37.737327 ], [ -121.869621, 37.740313 ], [ -121.809196, 37.740313 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.809196, 37.740313 ], [ -121.809196, 37.738413 ], [ -121.808167, 37.735969 ], [ -121.808510, 37.730539 ], [ -121.809196, 37.728910 ], [ -121.808167, 37.725108 ], [ -121.808853, 37.722935 ], [ -121.808510, 37.718590 ], [ -121.805077, 37.709628 ], [ -121.804733, 37.707455 ], [ -121.806107, 37.704467 ], [ -121.806107, 37.702566 ], [ -121.808167, 37.701207 ], [ -121.808167, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701207 ], [ -121.823273, 37.708813 ], [ -121.824646, 37.718590 ], [ -121.825676, 37.722664 ], [ -121.827393, 37.725108 ], [ -121.830482, 37.727823 ], [ -121.836319, 37.731082 ], [ -121.837349, 37.733797 ], [ -121.842155, 37.733526 ], [ -121.843872, 37.732439 ], [ -121.845245, 37.732439 ], [ -121.846962, 37.733526 ], [ -121.847992, 37.732711 ], [ -121.850395, 37.734069 ], [ -121.851768, 37.734340 ], [ -121.854172, 37.733254 ], [ -121.854515, 37.732439 ], [ -121.856918, 37.731353 ], [ -121.857262, 37.730539 ], [ -121.860008, 37.730810 ], [ -121.858635, 37.728910 ], [ -121.858292, 37.726194 ], [ -121.856575, 37.725923 ], [ -121.855545, 37.724565 ], [ -121.854172, 37.725379 ], [ -121.852455, 37.725108 ], [ -121.851768, 37.721306 ], [ -121.852455, 37.721306 ], [ -121.853828, 37.720491 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.850739, 37.716146 ], [ -121.851768, 37.714245 ], [ -121.857605, 37.716689 ], [ -121.858978, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865501, 37.718047 ], [ -121.866531, 37.716961 ], [ -121.870995, 37.716418 ], [ -121.872025, 37.716689 ], [ -121.872025, 37.718590 ], [ -121.871338, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724836 ], [ -121.873055, 37.726466 ], [ -121.872711, 37.727552 ], [ -121.873398, 37.728095 ], [ -121.873398, 37.729453 ], [ -121.872711, 37.729453 ], [ -121.874428, 37.731625 ], [ -121.881638, 37.736784 ], [ -121.881638, 37.737327 ], [ -121.869621, 37.740313 ], [ -121.809196, 37.740313 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.723022, 37.740313 ], [ -121.724052, 37.738956 ], [ -121.724052, 37.716961 ], [ -121.738815, 37.716961 ], [ -121.740875, 37.716418 ], [ -121.741562, 37.717504 ], [ -121.742935, 37.718319 ], [ -121.744652, 37.716961 ], [ -121.750488, 37.715875 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.712887 ], [ -121.753922, 37.711257 ], [ -121.752892, 37.709628 ], [ -121.753578, 37.706368 ], [ -121.754265, 37.705825 ], [ -121.756668, 37.705282 ], [ -121.757355, 37.704467 ], [ -121.759071, 37.704467 ], [ -121.759415, 37.702837 ], [ -121.764221, 37.702566 ], [ -121.776237, 37.700392 ], [ -121.785507, 37.699578 ], [ -121.788597, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808167, 37.700936 ], [ -121.808167, 37.701207 ], [ -121.806107, 37.702566 ], [ -121.806107, 37.704467 ], [ -121.804733, 37.708270 ], [ -121.806107, 37.713430 ], [ -121.808510, 37.718590 ], [ -121.808853, 37.722392 ], [ -121.808510, 37.726194 ], [ -121.809196, 37.728910 ], [ -121.808510, 37.730539 ], [ -121.808167, 37.735969 ], [ -121.809196, 37.738413 ], [ -121.809196, 37.740313 ], [ -121.723022, 37.740313 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.723022, 37.740313 ], [ -121.724052, 37.738956 ], [ -121.724052, 37.716961 ], [ -121.738815, 37.716961 ], [ -121.740875, 37.716418 ], [ -121.741562, 37.717504 ], [ -121.742935, 37.718319 ], [ -121.744652, 37.716961 ], [ -121.750488, 37.715875 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.712887 ], [ -121.753922, 37.711257 ], [ -121.752892, 37.709628 ], [ -121.753578, 37.706368 ], [ -121.754265, 37.705825 ], [ -121.756668, 37.705282 ], [ -121.757355, 37.704467 ], [ -121.759071, 37.704467 ], [ -121.759415, 37.702837 ], [ -121.764221, 37.702566 ], [ -121.776237, 37.700392 ], [ -121.785507, 37.699578 ], [ -121.788597, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808167, 37.700936 ], [ -121.808167, 37.701207 ], [ -121.806107, 37.702566 ], [ -121.806107, 37.704467 ], [ -121.804733, 37.708270 ], [ -121.806107, 37.713430 ], [ -121.808510, 37.718590 ], [ -121.808853, 37.722935 ], [ -121.808167, 37.725108 ], [ -121.809196, 37.728910 ], [ -121.808510, 37.730539 ], [ -121.808167, 37.735969 ], [ -121.809196, 37.738413 ], [ -121.809196, 37.740313 ], [ -121.723022, 37.740313 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164192, 37.722664 ], [ -122.159386, 37.718590 ], [ -122.155609, 37.715060 ], [ -122.166595, 37.710443 ], [ -122.171745, 37.713973 ], [ -122.175865, 37.717776 ], [ -122.176552, 37.718319 ], [ -122.176208, 37.718590 ], [ -122.173119, 37.720491 ], [ -122.164192, 37.722664 ] ] ] } } , @@ -618,7 +618,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404000", "GEOID10": "06001404000", "NAME10": "4040", "NAMELSAD10": "Census Tract 4040", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 371153, "AWATER10": 0, "INTPTLAT10": "+37.8232774", "INTPTLON10": "-122.2536542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256546, 37.827684 ], [ -122.254143, 37.826328 ], [ -122.253456, 37.825514 ], [ -122.253799, 37.825514 ], [ -122.250366, 37.822802 ], [ -122.249336, 37.823616 ], [ -122.248650, 37.823345 ], [ -122.249336, 37.822802 ], [ -122.247276, 37.821446 ], [ -122.251740, 37.820362 ], [ -122.253456, 37.819006 ], [ -122.254143, 37.819277 ], [ -122.255173, 37.820090 ], [ -122.254143, 37.820362 ], [ -122.254486, 37.821718 ], [ -122.258606, 37.824430 ], [ -122.256546, 37.827684 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220497, 37.860218 ], [ -122.220154, 37.859405 ], [ -122.219124, 37.859405 ], [ -122.219124, 37.857507 ], [ -122.217751, 37.857236 ], [ -122.217407, 37.856423 ], [ -122.216721, 37.856694 ], [ -122.216721, 37.855881 ], [ -122.214317, 37.856152 ], [ -122.213631, 37.855881 ], [ -122.212257, 37.857236 ], [ -122.211914, 37.856965 ], [ -122.210541, 37.855068 ], [ -122.210884, 37.854525 ], [ -122.208481, 37.851543 ], [ -122.204018, 37.851272 ], [ -122.200584, 37.847477 ], [ -122.195091, 37.843410 ], [ -122.195091, 37.842868 ], [ -122.198524, 37.843410 ], [ -122.202644, 37.843410 ], [ -122.206421, 37.841784 ], [ -122.208824, 37.841512 ], [ -122.210541, 37.839343 ], [ -122.211914, 37.834734 ], [ -122.214317, 37.832836 ], [ -122.215004, 37.831751 ], [ -122.217064, 37.832565 ], [ -122.219467, 37.836090 ], [ -122.222900, 37.839072 ], [ -122.227020, 37.844766 ], [ -122.227707, 37.847477 ], [ -122.230797, 37.848833 ], [ -122.228394, 37.848833 ], [ -122.231483, 37.849646 ], [ -122.233887, 37.852357 ], [ -122.231483, 37.850730 ], [ -122.226677, 37.849917 ], [ -122.226677, 37.850188 ], [ -122.225304, 37.850188 ], [ -122.224274, 37.850730 ], [ -122.224617, 37.851815 ], [ -122.223587, 37.852086 ], [ -122.223930, 37.853441 ], [ -122.222900, 37.853983 ], [ -122.223587, 37.855068 ], [ -122.221870, 37.854796 ], [ -122.221527, 37.855339 ], [ -122.222557, 37.857778 ], [ -122.220497, 37.860218 ] ], [ [ -122.213631, 37.855881 ], [ -122.214317, 37.855881 ], [ -122.213974, 37.855610 ], [ -122.213631, 37.855881 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220497, 37.860218 ], [ -122.220154, 37.859405 ], [ -122.219124, 37.859405 ], [ -122.219124, 37.857507 ], [ -122.217751, 37.857236 ], [ -122.217407, 37.856423 ], [ -122.216721, 37.856694 ], [ -122.216721, 37.855881 ], [ -122.214317, 37.856152 ], [ -122.213631, 37.855881 ], [ -122.212257, 37.857236 ], [ -122.211914, 37.856965 ], [ -122.210541, 37.855068 ], [ -122.210884, 37.854525 ], [ -122.208481, 37.851543 ], [ -122.204018, 37.851272 ], [ -122.200584, 37.847477 ], [ -122.195091, 37.843410 ], [ -122.195091, 37.842868 ], [ -122.198524, 37.843410 ], [ -122.200928, 37.843139 ], [ -122.202644, 37.843410 ], [ -122.206421, 37.841784 ], [ -122.208824, 37.841512 ], [ -122.210541, 37.839343 ], [ -122.211914, 37.834734 ], [ -122.214317, 37.832836 ], [ -122.215004, 37.831751 ], [ -122.217064, 37.832565 ], [ -122.219467, 37.836090 ], [ -122.222900, 37.839072 ], [ -122.227020, 37.844766 ], [ -122.227707, 37.847477 ], [ -122.230797, 37.848833 ], [ -122.228394, 37.848833 ], [ -122.231483, 37.849646 ], [ -122.233887, 37.852357 ], [ -122.231483, 37.850730 ], [ -122.226677, 37.849917 ], [ -122.226677, 37.850188 ], [ -122.225304, 37.850188 ], [ -122.224274, 37.850730 ], [ -122.224617, 37.851815 ], [ -122.223587, 37.852086 ], [ -122.223930, 37.853441 ], [ -122.222900, 37.853983 ], [ -122.223587, 37.855068 ], [ -122.221870, 37.854796 ], [ -122.221527, 37.855339 ], [ -122.222557, 37.857778 ], [ -122.220497, 37.860218 ] ], [ [ -122.213631, 37.855881 ], [ -122.214317, 37.855881 ], [ -122.213974, 37.855610 ], [ -122.213631, 37.855881 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404200", "GEOID10": "06001404200", "NAME10": "4042", "NAMELSAD10": "Census Tract 4042", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2728909, "AWATER10": 0, "INTPTLAT10": "+37.8361078", "INTPTLON10": "-122.2344651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.842868 ], [ -122.224617, 37.841512 ], [ -122.222900, 37.839072 ], [ -122.219810, 37.836632 ], [ -122.217064, 37.832565 ], [ -122.221527, 37.832565 ], [ -122.222557, 37.830938 ], [ -122.224274, 37.830124 ], [ -122.224960, 37.831209 ], [ -122.228050, 37.832836 ], [ -122.236633, 37.830667 ], [ -122.243156, 37.829853 ], [ -122.243843, 37.830395 ], [ -122.244873, 37.832022 ], [ -122.246933, 37.833107 ], [ -122.248650, 37.831751 ], [ -122.250366, 37.833649 ], [ -122.252426, 37.834463 ], [ -122.250710, 37.837174 ], [ -122.248993, 37.837174 ], [ -122.244186, 37.839072 ], [ -122.241096, 37.839886 ], [ -122.239380, 37.840970 ], [ -122.236633, 37.840970 ], [ -122.235260, 37.842326 ], [ -122.232513, 37.842597 ], [ -122.228737, 37.842326 ], [ -122.226677, 37.842868 ] ] ] } } , @@ -672,7 +672,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793508 ], [ -122.221527, 37.790795 ], [ -122.219810, 37.790523 ], [ -122.222214, 37.784825 ], [ -122.224617, 37.785639 ], [ -122.230797, 37.789438 ], [ -122.228050, 37.791337 ], [ -122.226677, 37.793508 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404502", "GEOID10": "06001404502", "NAME10": "4045.02", "NAMELSAD10": "Census Tract 4045.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3071440, "AWATER10": 0, "INTPTLAT10": "+37.8345259", "INTPTLON10": "-122.2026154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.198524, 37.843410 ], [ -122.195091, 37.842868 ], [ -122.196121, 37.842055 ], [ -122.194061, 37.841241 ], [ -122.193718, 37.840699 ], [ -122.191658, 37.839886 ], [ -122.188911, 37.837445 ], [ -122.185135, 37.836903 ], [ -122.184448, 37.834734 ], [ -122.185822, 37.836090 ], [ -122.187538, 37.836090 ], [ -122.187881, 37.835819 ], [ -122.187538, 37.835819 ], [ -122.187195, 37.835005 ], [ -122.188568, 37.835276 ], [ -122.190971, 37.834734 ], [ -122.193718, 37.832022 ], [ -122.196465, 37.831480 ], [ -122.200584, 37.829311 ], [ -122.202301, 37.827141 ], [ -122.202644, 37.825786 ], [ -122.202301, 37.824430 ], [ -122.202988, 37.823616 ], [ -122.207108, 37.824701 ], [ -122.208824, 37.824430 ], [ -122.206764, 37.822260 ], [ -122.207108, 37.821446 ], [ -122.212944, 37.828497 ], [ -122.215691, 37.831209 ], [ -122.215004, 37.831480 ], [ -122.214317, 37.832836 ], [ -122.212257, 37.834463 ], [ -122.210541, 37.839343 ], [ -122.208824, 37.841512 ], [ -122.206421, 37.841784 ], [ -122.202644, 37.843410 ], [ -122.198524, 37.843410 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404502", "GEOID10": "06001404502", "NAME10": "4045.02", "NAMELSAD10": "Census Tract 4045.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3071440, "AWATER10": 0, "INTPTLAT10": "+37.8345259", "INTPTLON10": "-122.2026154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.198524, 37.843410 ], [ -122.195091, 37.842868 ], [ -122.196121, 37.842055 ], [ -122.194061, 37.841241 ], [ -122.193718, 37.840699 ], [ -122.191658, 37.839886 ], [ -122.188911, 37.837445 ], [ -122.185135, 37.836903 ], [ -122.184448, 37.834734 ], [ -122.185822, 37.836090 ], [ -122.187538, 37.836090 ], [ -122.187881, 37.835819 ], [ -122.187538, 37.835819 ], [ -122.187195, 37.835005 ], [ -122.188568, 37.835276 ], [ -122.190971, 37.834734 ], [ -122.193718, 37.832022 ], [ -122.196465, 37.831480 ], [ -122.200584, 37.829311 ], [ -122.202301, 37.827141 ], [ -122.202644, 37.825786 ], [ -122.202301, 37.824430 ], [ -122.202988, 37.823616 ], [ -122.207108, 37.824701 ], [ -122.208824, 37.824430 ], [ -122.206764, 37.822260 ], [ -122.207108, 37.821446 ], [ -122.212944, 37.828497 ], [ -122.215691, 37.831209 ], [ -122.215004, 37.831480 ], [ -122.214317, 37.832836 ], [ -122.212257, 37.834463 ], [ -122.210541, 37.839343 ], [ -122.208824, 37.841512 ], [ -122.206421, 37.841784 ], [ -122.202644, 37.843410 ], [ -122.200928, 37.843139 ], [ -122.198524, 37.843410 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404700", "GEOID10": "06001404700", "NAME10": "4047", "NAMELSAD10": "Census Tract 4047", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1205965, "AWATER10": 0, "INTPTLAT10": "+37.8133625", "INTPTLON10": "-122.2070119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.207108, 37.821446 ], [ -122.200241, 37.812768 ], [ -122.197838, 37.810598 ], [ -122.198524, 37.810055 ], [ -122.201614, 37.810326 ], [ -122.201958, 37.809513 ], [ -122.207451, 37.806258 ], [ -122.208481, 37.807071 ], [ -122.209511, 37.806800 ], [ -122.209854, 37.808699 ], [ -122.210541, 37.808699 ], [ -122.211914, 37.809784 ], [ -122.210884, 37.810598 ], [ -122.214661, 37.812768 ], [ -122.212944, 37.814666 ], [ -122.212601, 37.816293 ], [ -122.211914, 37.817378 ], [ -122.208824, 37.819277 ], [ -122.207108, 37.821446 ] ] ] } } , @@ -804,9 +804,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730267 ], [ -121.910477, 37.728638 ], [ -121.909447, 37.725108 ], [ -121.910133, 37.722392 ], [ -121.910133, 37.710443 ], [ -121.918373, 37.718590 ], [ -121.925926, 37.727009 ], [ -121.910477, 37.730267 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812630, 37.754158 ], [ -121.811943, 37.751444 ], [ -121.813660, 37.746286 ], [ -121.813660, 37.745200 ], [ -121.809196, 37.741399 ], [ -121.809196, 37.738141 ], [ -121.808167, 37.735969 ], [ -121.808510, 37.730267 ], [ -121.809196, 37.728638 ], [ -121.808510, 37.725923 ], [ -121.808853, 37.722392 ], [ -121.808510, 37.718590 ], [ -121.805077, 37.709628 ], [ -121.804733, 37.707455 ], [ -121.806107, 37.704467 ], [ -121.806107, 37.702566 ], [ -121.808167, 37.701207 ], [ -121.808167, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701207 ], [ -121.823273, 37.708813 ], [ -121.824646, 37.718590 ], [ -121.825676, 37.722392 ], [ -121.827393, 37.725108 ], [ -121.830482, 37.727823 ], [ -121.836319, 37.731082 ], [ -121.837349, 37.733526 ], [ -121.842155, 37.733254 ], [ -121.843872, 37.732168 ], [ -121.845245, 37.732168 ], [ -121.846962, 37.733254 ], [ -121.847992, 37.732711 ], [ -121.850395, 37.734069 ], [ -121.851768, 37.734069 ], [ -121.854172, 37.732983 ], [ -121.854515, 37.732439 ], [ -121.856918, 37.731082 ], [ -121.857262, 37.730267 ], [ -121.860008, 37.730539 ], [ -121.858635, 37.728638 ], [ -121.858292, 37.725923 ], [ -121.856575, 37.725651 ], [ -121.855545, 37.724565 ], [ -121.854172, 37.725108 ], [ -121.852455, 37.724836 ], [ -121.851768, 37.721034 ], [ -121.852455, 37.721306 ], [ -121.853828, 37.720220 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.850739, 37.716146 ], [ -121.851768, 37.714245 ], [ -121.857605, 37.716689 ], [ -121.858978, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865501, 37.718047 ], [ -121.866531, 37.716961 ], [ -121.870995, 37.716418 ], [ -121.872025, 37.716689 ], [ -121.872025, 37.718590 ], [ -121.871338, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724565 ], [ -121.873055, 37.726466 ], [ -121.872711, 37.727552 ], [ -121.873398, 37.728095 ], [ -121.873398, 37.729181 ], [ -121.872711, 37.729453 ], [ -121.874428, 37.731353 ], [ -121.881638, 37.736241 ], [ -121.881638, 37.737327 ], [ -121.812630, 37.754158 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812630, 37.754158 ], [ -121.811943, 37.751444 ], [ -121.813660, 37.746286 ], [ -121.813660, 37.745200 ], [ -121.809196, 37.741399 ], [ -121.809196, 37.738141 ], [ -121.808167, 37.735969 ], [ -121.808510, 37.730267 ], [ -121.809196, 37.728638 ], [ -121.808167, 37.724836 ], [ -121.808853, 37.722664 ], [ -121.808510, 37.718590 ], [ -121.805077, 37.709628 ], [ -121.804733, 37.707455 ], [ -121.806107, 37.704467 ], [ -121.806107, 37.702566 ], [ -121.808167, 37.701207 ], [ -121.808167, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701207 ], [ -121.823273, 37.708813 ], [ -121.824646, 37.718590 ], [ -121.825676, 37.722392 ], [ -121.827393, 37.725108 ], [ -121.830482, 37.727823 ], [ -121.836319, 37.731082 ], [ -121.837349, 37.733526 ], [ -121.842155, 37.733254 ], [ -121.843872, 37.732168 ], [ -121.845245, 37.732168 ], [ -121.846962, 37.733254 ], [ -121.847992, 37.732711 ], [ -121.850395, 37.734069 ], [ -121.851768, 37.734069 ], [ -121.854172, 37.732983 ], [ -121.854515, 37.732439 ], [ -121.856918, 37.731082 ], [ -121.857262, 37.730267 ], [ -121.860008, 37.730539 ], [ -121.858635, 37.728638 ], [ -121.858292, 37.725923 ], [ -121.856575, 37.725651 ], [ -121.855545, 37.724565 ], [ -121.854172, 37.725108 ], [ -121.852455, 37.724836 ], [ -121.851768, 37.721034 ], [ -121.852455, 37.721306 ], [ -121.853828, 37.720220 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.850739, 37.716146 ], [ -121.851768, 37.714245 ], [ -121.857605, 37.716689 ], [ -121.858978, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865501, 37.718047 ], [ -121.866531, 37.716961 ], [ -121.870995, 37.716418 ], [ -121.872025, 37.716689 ], [ -121.872025, 37.718590 ], [ -121.871338, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724565 ], [ -121.873055, 37.726466 ], [ -121.872711, 37.727552 ], [ -121.873398, 37.728095 ], [ -121.873398, 37.729181 ], [ -121.872711, 37.729453 ], [ -121.874428, 37.731353 ], [ -121.881638, 37.736241 ], [ -121.881638, 37.737327 ], [ -121.812630, 37.754158 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.739159, 37.772072 ], [ -121.735382, 37.770715 ], [ -121.733665, 37.767458 ], [ -121.734009, 37.766372 ], [ -121.735382, 37.765558 ], [ -121.736412, 37.763116 ], [ -121.736069, 37.760401 ], [ -121.732635, 37.757959 ], [ -121.732635, 37.756873 ], [ -121.734352, 37.755787 ], [ -121.734352, 37.754973 ], [ -121.731949, 37.752530 ], [ -121.730576, 37.749272 ], [ -121.725769, 37.746829 ], [ -121.725082, 37.744114 ], [ -121.723022, 37.741399 ], [ -121.723022, 37.740313 ], [ -121.724052, 37.738684 ], [ -121.724052, 37.716961 ], [ -121.738815, 37.716961 ], [ -121.740875, 37.716418 ], [ -121.741562, 37.717504 ], [ -121.742935, 37.718319 ], [ -121.744652, 37.716961 ], [ -121.750488, 37.715875 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.712887 ], [ -121.753922, 37.711257 ], [ -121.752892, 37.709628 ], [ -121.753578, 37.706368 ], [ -121.754265, 37.705825 ], [ -121.756668, 37.705282 ], [ -121.757355, 37.704467 ], [ -121.759071, 37.704467 ], [ -121.759415, 37.702837 ], [ -121.764221, 37.702566 ], [ -121.776237, 37.700392 ], [ -121.785507, 37.699578 ], [ -121.788597, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808167, 37.700936 ], [ -121.808167, 37.701207 ], [ -121.806107, 37.702566 ], [ -121.806107, 37.704467 ], [ -121.804733, 37.708270 ], [ -121.806107, 37.713430 ], [ -121.808510, 37.718590 ], [ -121.808853, 37.722392 ], [ -121.808510, 37.725923 ], [ -121.809196, 37.728638 ], [ -121.808510, 37.730267 ], [ -121.808167, 37.735969 ], [ -121.809196, 37.738141 ], [ -121.809196, 37.741399 ], [ -121.813660, 37.745200 ], [ -121.813660, 37.746286 ], [ -121.811943, 37.751444 ], [ -121.812630, 37.754158 ], [ -121.791687, 37.759044 ], [ -121.739159, 37.772072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.739159, 37.772072 ], [ -121.735382, 37.770715 ], [ -121.733665, 37.767458 ], [ -121.734009, 37.766372 ], [ -121.735382, 37.765558 ], [ -121.736412, 37.763116 ], [ -121.736069, 37.760401 ], [ -121.732635, 37.757959 ], [ -121.732635, 37.756873 ], [ -121.734352, 37.755787 ], [ -121.734352, 37.754973 ], [ -121.731949, 37.752530 ], [ -121.730576, 37.749272 ], [ -121.725769, 37.746829 ], [ -121.725082, 37.744114 ], [ -121.723022, 37.741399 ], [ -121.723022, 37.740313 ], [ -121.724052, 37.738684 ], [ -121.724052, 37.716961 ], [ -121.738815, 37.716961 ], [ -121.740875, 37.716418 ], [ -121.741562, 37.717504 ], [ -121.742935, 37.718319 ], [ -121.744652, 37.716961 ], [ -121.750488, 37.715875 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.712887 ], [ -121.753922, 37.711257 ], [ -121.752892, 37.709628 ], [ -121.753578, 37.706368 ], [ -121.754265, 37.705825 ], [ -121.756668, 37.705282 ], [ -121.757355, 37.704467 ], [ -121.759071, 37.704467 ], [ -121.759415, 37.702837 ], [ -121.764221, 37.702566 ], [ -121.776237, 37.700392 ], [ -121.785507, 37.699578 ], [ -121.788597, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808167, 37.700936 ], [ -121.808167, 37.701207 ], [ -121.806107, 37.702566 ], [ -121.806107, 37.704467 ], [ -121.804733, 37.708270 ], [ -121.806107, 37.713430 ], [ -121.808510, 37.718590 ], [ -121.808853, 37.722664 ], [ -121.808167, 37.724836 ], [ -121.809196, 37.728638 ], [ -121.808510, 37.730267 ], [ -121.808167, 37.735969 ], [ -121.809196, 37.738141 ], [ -121.809196, 37.741399 ], [ -121.813660, 37.745200 ], [ -121.813660, 37.746286 ], [ -121.811943, 37.751444 ], [ -121.812630, 37.754158 ], [ -121.791687, 37.759044 ], [ -121.739159, 37.772072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164192, 37.722664 ], [ -122.159386, 37.718590 ], [ -122.155609, 37.715060 ], [ -122.166595, 37.710443 ], [ -122.171745, 37.713973 ], [ -122.175865, 37.717776 ], [ -122.176552, 37.718319 ], [ -122.176208, 37.718590 ], [ -122.173119, 37.720220 ], [ -122.164192, 37.722664 ] ] ] } } , @@ -940,11 +940,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.729453 ], [ -121.910477, 37.728095 ], [ -121.909447, 37.725244 ], [ -121.909447, 37.724022 ], [ -121.910133, 37.722528 ], [ -121.910133, 37.712751 ], [ -121.910305, 37.712208 ], [ -121.910305, 37.710443 ], [ -121.914253, 37.713973 ], [ -121.918545, 37.718590 ], [ -121.925926, 37.727009 ], [ -121.922321, 37.727688 ], [ -121.915283, 37.729453 ], [ -121.910477, 37.729453 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.809025, 37.729453 ], [ -121.809368, 37.728638 ], [ -121.808510, 37.726058 ], [ -121.808510, 37.724293 ], [ -121.809025, 37.722392 ], [ -121.808510, 37.721170 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.714924 ], [ -121.806278, 37.713566 ], [ -121.805420, 37.709764 ], [ -121.805077, 37.709628 ], [ -121.804905, 37.707591 ], [ -121.806107, 37.704603 ], [ -121.806107, 37.702701 ], [ -121.807137, 37.701751 ], [ -121.808338, 37.701343 ], [ -121.808338, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701343 ], [ -121.823273, 37.708813 ], [ -121.823788, 37.710578 ], [ -121.823788, 37.713702 ], [ -121.824474, 37.715875 ], [ -121.824303, 37.717232 ], [ -121.824474, 37.718590 ], [ -121.825848, 37.722528 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726058 ], [ -121.830482, 37.727823 ], [ -121.833916, 37.729453 ], [ -121.809025, 37.729453 ] ] ], [ [ [ -121.858978, 37.729453 ], [ -121.858292, 37.727688 ], [ -121.858292, 37.726058 ], [ -121.856575, 37.725787 ], [ -121.855717, 37.724565 ], [ -121.855373, 37.724701 ], [ -121.855373, 37.724972 ], [ -121.854687, 37.724972 ], [ -121.854172, 37.725244 ], [ -121.852798, 37.725244 ], [ -121.852455, 37.724972 ], [ -121.851940, 37.723886 ], [ -121.852112, 37.722800 ], [ -121.851768, 37.722121 ], [ -121.851768, 37.721170 ], [ -121.852455, 37.721306 ], [ -121.854000, 37.720356 ], [ -121.853142, 37.719269 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.851425, 37.716961 ], [ -121.850910, 37.716282 ], [ -121.851768, 37.714245 ], [ -121.854172, 37.715467 ], [ -121.857605, 37.716825 ], [ -121.858463, 37.717504 ], [ -121.859150, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865673, 37.718183 ], [ -121.866016, 37.717504 ], [ -121.866703, 37.717097 ], [ -121.869106, 37.716961 ], [ -121.870995, 37.716553 ], [ -121.872025, 37.716689 ], [ -121.871853, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724701 ], [ -121.872540, 37.725108 ], [ -121.872540, 37.726194 ], [ -121.873055, 37.726466 ], [ -121.872883, 37.727552 ], [ -121.873569, 37.728095 ], [ -121.873226, 37.728366 ], [ -121.873226, 37.728774 ], [ -121.873569, 37.729045 ], [ -121.873398, 37.729453 ], [ -121.858978, 37.729453 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.809025, 37.729453 ], [ -121.809368, 37.728638 ], [ -121.808681, 37.726873 ], [ -121.808338, 37.724972 ], [ -121.809025, 37.722800 ], [ -121.808510, 37.721170 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.714924 ], [ -121.806278, 37.713566 ], [ -121.805420, 37.709764 ], [ -121.805077, 37.709628 ], [ -121.804905, 37.707591 ], [ -121.806107, 37.704603 ], [ -121.806107, 37.702701 ], [ -121.807137, 37.701751 ], [ -121.808338, 37.701343 ], [ -121.808338, 37.700936 ], [ -121.830139, 37.701207 ], [ -121.823273, 37.701343 ], [ -121.823273, 37.708813 ], [ -121.823788, 37.710578 ], [ -121.823788, 37.713702 ], [ -121.824474, 37.715875 ], [ -121.824303, 37.717232 ], [ -121.824474, 37.718590 ], [ -121.825848, 37.722528 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726058 ], [ -121.830482, 37.727823 ], [ -121.833916, 37.729453 ], [ -121.809025, 37.729453 ] ] ], [ [ [ -121.858978, 37.729453 ], [ -121.858292, 37.727688 ], [ -121.858292, 37.726058 ], [ -121.856575, 37.725787 ], [ -121.855717, 37.724565 ], [ -121.855373, 37.724701 ], [ -121.855373, 37.724972 ], [ -121.854687, 37.724972 ], [ -121.854172, 37.725244 ], [ -121.852798, 37.725244 ], [ -121.852455, 37.724972 ], [ -121.851940, 37.723886 ], [ -121.852112, 37.722800 ], [ -121.851768, 37.722121 ], [ -121.851768, 37.721170 ], [ -121.852455, 37.721306 ], [ -121.854000, 37.720356 ], [ -121.853142, 37.719269 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.851425, 37.716961 ], [ -121.850910, 37.716282 ], [ -121.851768, 37.714245 ], [ -121.854172, 37.715467 ], [ -121.857605, 37.716825 ], [ -121.858463, 37.717504 ], [ -121.859150, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865673, 37.718183 ], [ -121.866016, 37.717504 ], [ -121.866703, 37.717097 ], [ -121.869106, 37.716961 ], [ -121.870995, 37.716553 ], [ -121.872025, 37.716689 ], [ -121.871853, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724701 ], [ -121.872540, 37.725108 ], [ -121.872540, 37.726194 ], [ -121.873055, 37.726466 ], [ -121.872883, 37.727552 ], [ -121.873569, 37.728095 ], [ -121.873226, 37.728366 ], [ -121.873226, 37.728774 ], [ -121.873569, 37.729045 ], [ -121.873398, 37.729453 ], [ -121.858978, 37.729453 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.724052, 37.729453 ], [ -121.724224, 37.718590 ], [ -121.724224, 37.716961 ], [ -121.738987, 37.717097 ], [ -121.741047, 37.716553 ], [ -121.741734, 37.717640 ], [ -121.742764, 37.718455 ], [ -121.743107, 37.718455 ], [ -121.744137, 37.717232 ], [ -121.744823, 37.716961 ], [ -121.747055, 37.716689 ], [ -121.750488, 37.715875 ], [ -121.751003, 37.715196 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.713023 ], [ -121.753922, 37.711257 ], [ -121.753922, 37.710714 ], [ -121.752892, 37.709764 ], [ -121.752892, 37.708541 ], [ -121.753407, 37.707862 ], [ -121.753750, 37.706504 ], [ -121.754265, 37.705961 ], [ -121.756840, 37.705282 ], [ -121.757526, 37.704603 ], [ -121.759243, 37.704467 ], [ -121.759586, 37.703924 ], [ -121.759415, 37.702973 ], [ -121.761131, 37.702973 ], [ -121.764221, 37.702566 ], [ -121.776409, 37.700528 ], [ -121.785507, 37.699713 ], [ -121.786194, 37.699713 ], [ -121.786709, 37.699985 ], [ -121.788769, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808338, 37.700936 ], [ -121.808338, 37.701343 ], [ -121.807137, 37.701751 ], [ -121.806107, 37.702701 ], [ -121.806107, 37.704603 ], [ -121.805077, 37.707047 ], [ -121.804905, 37.708270 ], [ -121.805077, 37.709628 ], [ -121.805420, 37.709764 ], [ -121.806278, 37.713566 ], [ -121.807137, 37.714924 ], [ -121.808510, 37.718590 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.721170 ], [ -121.809025, 37.722392 ], [ -121.808510, 37.724293 ], [ -121.808510, 37.726058 ], [ -121.809368, 37.728638 ], [ -121.809025, 37.729453 ], [ -121.724052, 37.729453 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.724052, 37.729453 ], [ -121.724224, 37.718590 ], [ -121.724224, 37.716961 ], [ -121.738987, 37.717097 ], [ -121.741047, 37.716553 ], [ -121.741734, 37.717640 ], [ -121.742764, 37.718455 ], [ -121.743107, 37.718455 ], [ -121.744137, 37.717232 ], [ -121.744823, 37.716961 ], [ -121.747055, 37.716689 ], [ -121.750488, 37.715875 ], [ -121.751003, 37.715196 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.713023 ], [ -121.753922, 37.711257 ], [ -121.753922, 37.710714 ], [ -121.752892, 37.709764 ], [ -121.752892, 37.708541 ], [ -121.753407, 37.707862 ], [ -121.753750, 37.706504 ], [ -121.754265, 37.705961 ], [ -121.756840, 37.705282 ], [ -121.757526, 37.704603 ], [ -121.759243, 37.704467 ], [ -121.759586, 37.703924 ], [ -121.759415, 37.702973 ], [ -121.761131, 37.702973 ], [ -121.764221, 37.702566 ], [ -121.776409, 37.700528 ], [ -121.785507, 37.699713 ], [ -121.786194, 37.699713 ], [ -121.786709, 37.699985 ], [ -121.788769, 37.699849 ], [ -121.794777, 37.700936 ], [ -121.808338, 37.700936 ], [ -121.808338, 37.701343 ], [ -121.807137, 37.701751 ], [ -121.806107, 37.702701 ], [ -121.806107, 37.704603 ], [ -121.805077, 37.707047 ], [ -121.804905, 37.708270 ], [ -121.805077, 37.709628 ], [ -121.805420, 37.709764 ], [ -121.806278, 37.713566 ], [ -121.807137, 37.714924 ], [ -121.808510, 37.718590 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.721170 ], [ -121.809025, 37.722800 ], [ -121.808338, 37.724972 ], [ -121.808681, 37.726873 ], [ -121.809368, 37.728638 ], [ -121.809025, 37.729453 ], [ -121.724052, 37.729453 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164364, 37.722664 ], [ -122.159557, 37.718590 ], [ -122.155781, 37.715196 ], [ -122.155609, 37.715196 ], [ -122.155609, 37.715060 ], [ -122.166767, 37.710443 ], [ -122.171745, 37.714109 ], [ -122.174492, 37.716825 ], [ -122.176037, 37.717776 ], [ -122.176723, 37.718455 ], [ -122.176380, 37.718590 ], [ -122.173290, 37.720356 ], [ -122.165222, 37.722257 ], [ -122.164364, 37.722664 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164192, 37.722664 ], [ -122.159557, 37.718590 ], [ -122.155781, 37.715196 ], [ -122.155609, 37.715196 ], [ -122.155609, 37.715060 ], [ -122.166767, 37.710443 ], [ -122.171745, 37.714109 ], [ -122.174492, 37.716825 ], [ -122.176037, 37.717776 ], [ -122.176723, 37.718455 ], [ -122.176380, 37.718590 ], [ -122.173290, 37.720356 ], [ -122.165222, 37.722257 ], [ -122.164192, 37.722664 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432400", "GEOID10": "06001432400", "NAME10": "4324", "NAMELSAD10": "Census Tract 4324", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6437229, "AWATER10": 1351272, "INTPTLAT10": "+37.7097451", "INTPTLON10": "-122.1898921" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.190285, 37.728774 ], [ -122.187538, 37.728095 ], [ -122.187366, 37.727823 ], [ -122.186508, 37.727552 ], [ -122.185650, 37.726601 ], [ -122.183933, 37.725787 ], [ -122.183762, 37.725515 ], [ -122.183075, 37.725379 ], [ -122.176895, 37.719269 ], [ -122.177067, 37.718998 ], [ -122.176037, 37.717776 ], [ -122.174492, 37.716825 ], [ -122.171745, 37.714109 ], [ -122.166595, 37.710443 ], [ -122.170887, 37.708677 ], [ -122.167454, 37.703652 ], [ -122.182388, 37.697540 ], [ -122.185650, 37.695910 ], [ -122.186508, 37.695639 ], [ -122.187538, 37.696725 ], [ -122.191315, 37.695774 ], [ -122.192001, 37.695367 ], [ -122.191658, 37.695367 ], [ -122.197151, 37.692514 ], [ -122.198009, 37.698491 ], [ -122.200413, 37.700800 ], [ -122.204361, 37.703788 ], [ -122.205391, 37.702701 ], [ -122.209339, 37.710850 ], [ -122.201786, 37.713159 ], [ -122.196980, 37.715603 ], [ -122.195091, 37.715603 ], [ -122.195606, 37.717776 ], [ -122.193546, 37.718590 ], [ -122.192688, 37.716825 ], [ -122.189083, 37.717776 ], [ -122.189941, 37.718590 ], [ -122.196293, 37.723750 ], [ -122.196808, 37.725244 ], [ -122.197495, 37.724972 ], [ -122.198009, 37.726466 ], [ -122.196808, 37.727009 ], [ -122.196293, 37.726058 ], [ -122.193031, 37.727823 ], [ -122.191830, 37.727145 ], [ -122.191143, 37.728095 ], [ -122.190800, 37.727959 ], [ -122.190285, 37.728774 ] ] ] } } , @@ -1056,13 +1056,13 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436500", "GEOID10": "06001436500", "NAME10": "4365", "NAMELSAD10": "Census Tract 4365", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1915270, "AWATER10": 0, "INTPTLAT10": "+37.6586897", "INTPTLON10": "-122.0691461" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.080936, 37.668739 ], [ -122.080593, 37.668603 ], [ -122.075958, 37.662896 ], [ -122.073898, 37.662896 ], [ -122.072868, 37.663576 ], [ -122.071495, 37.663847 ], [ -122.069263, 37.665206 ], [ -122.068062, 37.665206 ], [ -122.065315, 37.663983 ], [ -122.063770, 37.662760 ], [ -122.063255, 37.662624 ], [ -122.061195, 37.660450 ], [ -122.059135, 37.660314 ], [ -122.058792, 37.660042 ], [ -122.060337, 37.660314 ], [ -122.061367, 37.660042 ], [ -122.063084, 37.659091 ], [ -122.061195, 37.658548 ], [ -122.055187, 37.652568 ], [ -122.057076, 37.652704 ], [ -122.059994, 37.654335 ], [ -122.061195, 37.654335 ], [ -122.062912, 37.653519 ], [ -122.064457, 37.651888 ], [ -122.066860, 37.651345 ], [ -122.068062, 37.650801 ], [ -122.069950, 37.650529 ], [ -122.078705, 37.661537 ], [ -122.078705, 37.662217 ], [ -122.079735, 37.662760 ], [ -122.082310, 37.666157 ], [ -122.080936, 37.668739 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435104", "GEOID10": "06001435104", "NAME10": "4351.04", "NAMELSAD10": "Census Tract 4351.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7174354, "AWATER10": 0, "INTPTLAT10": "+37.6385981", "INTPTLON10": "-122.0389710" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.055874, 37.650801 ], [ -122.054672, 37.650393 ], [ -122.053471, 37.648898 ], [ -122.051926, 37.648490 ], [ -122.051411, 37.647675 ], [ -122.050381, 37.647267 ], [ -122.049522, 37.646452 ], [ -122.047291, 37.646452 ], [ -122.047291, 37.646723 ], [ -122.046604, 37.646723 ], [ -122.045918, 37.647267 ], [ -122.044201, 37.647403 ], [ -122.042313, 37.646859 ], [ -122.039738, 37.646859 ], [ -122.037163, 37.645636 ], [ -122.035618, 37.645500 ], [ -122.033386, 37.645772 ], [ -122.031326, 37.645500 ], [ -122.030468, 37.646044 ], [ -122.030125, 37.646587 ], [ -122.029095, 37.647131 ], [ -122.028751, 37.647675 ], [ -122.028236, 37.647811 ], [ -122.027035, 37.647811 ], [ -122.025490, 37.647131 ], [ -122.024632, 37.647267 ], [ -122.024117, 37.647675 ], [ -122.022572, 37.647539 ], [ -122.020512, 37.646452 ], [ -122.019482, 37.646316 ], [ -122.018280, 37.645500 ], [ -122.017422, 37.643869 ], [ -122.016048, 37.642918 ], [ -122.016392, 37.641966 ], [ -122.018108, 37.640607 ], [ -122.019310, 37.638976 ], [ -122.019825, 37.637480 ], [ -122.019653, 37.636801 ], [ -122.016735, 37.634761 ], [ -122.015362, 37.634218 ], [ -122.012615, 37.634218 ], [ -122.011242, 37.633674 ], [ -122.013817, 37.631635 ], [ -122.015190, 37.632179 ], [ -122.017078, 37.632314 ], [ -122.018452, 37.632858 ], [ -122.018967, 37.633402 ], [ -122.020683, 37.633402 ], [ -122.021885, 37.632314 ], [ -122.022915, 37.632314 ], [ -122.023602, 37.631091 ], [ -122.024288, 37.630683 ], [ -122.024632, 37.630139 ], [ -122.025490, 37.630003 ], [ -122.026691, 37.629052 ], [ -122.027721, 37.628916 ], [ -122.028065, 37.628372 ], [ -122.030468, 37.628916 ], [ -122.034760, 37.627964 ], [ -122.035961, 37.628644 ], [ -122.036304, 37.629188 ], [ -122.039909, 37.629188 ], [ -122.042313, 37.628100 ], [ -122.044716, 37.627828 ], [ -122.046776, 37.629731 ], [ -122.051754, 37.625789 ], [ -122.053814, 37.629867 ], [ -122.058449, 37.635713 ], [ -122.054329, 37.636393 ], [ -122.056904, 37.638840 ], [ -122.054329, 37.640063 ], [ -122.055016, 37.641150 ], [ -122.054672, 37.641422 ], [ -122.055187, 37.642782 ], [ -122.057247, 37.642918 ], [ -122.059650, 37.641966 ], [ -122.064629, 37.648219 ], [ -122.063942, 37.648219 ], [ -122.062912, 37.648762 ], [ -122.062225, 37.649985 ], [ -122.061195, 37.649850 ], [ -122.060852, 37.649578 ], [ -122.059822, 37.649578 ], [ -122.058449, 37.650393 ], [ -122.055874, 37.650801 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435104", "GEOID10": "06001435104", "NAME10": "4351.04", "NAMELSAD10": "Census Tract 4351.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7174354, "AWATER10": 0, "INTPTLAT10": "+37.6385981", "INTPTLON10": "-122.0389710" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.055874, 37.650801 ], [ -122.054672, 37.650393 ], [ -122.053471, 37.648898 ], [ -122.051926, 37.648490 ], [ -122.051411, 37.647675 ], [ -122.050381, 37.647267 ], [ -122.049522, 37.646452 ], [ -122.047291, 37.646452 ], [ -122.045918, 37.647267 ], [ -122.044201, 37.647403 ], [ -122.042313, 37.646859 ], [ -122.039738, 37.646859 ], [ -122.037163, 37.645636 ], [ -122.035618, 37.645500 ], [ -122.033386, 37.645772 ], [ -122.031326, 37.645500 ], [ -122.030468, 37.646044 ], [ -122.030125, 37.646587 ], [ -122.029095, 37.647131 ], [ -122.028751, 37.647675 ], [ -122.028236, 37.647811 ], [ -122.027035, 37.647811 ], [ -122.025490, 37.647131 ], [ -122.024632, 37.647267 ], [ -122.024117, 37.647675 ], [ -122.022572, 37.647539 ], [ -122.020512, 37.646452 ], [ -122.019482, 37.646316 ], [ -122.018280, 37.645500 ], [ -122.017422, 37.643869 ], [ -122.016048, 37.642918 ], [ -122.016392, 37.641966 ], [ -122.018108, 37.640607 ], [ -122.019310, 37.638976 ], [ -122.019825, 37.637480 ], [ -122.019653, 37.636801 ], [ -122.016735, 37.634761 ], [ -122.015362, 37.634218 ], [ -122.012615, 37.634218 ], [ -122.011242, 37.633674 ], [ -122.013817, 37.631635 ], [ -122.015190, 37.632179 ], [ -122.017078, 37.632314 ], [ -122.018452, 37.632858 ], [ -122.018967, 37.633402 ], [ -122.020683, 37.633402 ], [ -122.021885, 37.632314 ], [ -122.022915, 37.632314 ], [ -122.023602, 37.631091 ], [ -122.024288, 37.630683 ], [ -122.024632, 37.630139 ], [ -122.025490, 37.630003 ], [ -122.026691, 37.629052 ], [ -122.027721, 37.628916 ], [ -122.028065, 37.628372 ], [ -122.030468, 37.628916 ], [ -122.034760, 37.627964 ], [ -122.035961, 37.628644 ], [ -122.036304, 37.629188 ], [ -122.039909, 37.629188 ], [ -122.042313, 37.628100 ], [ -122.044716, 37.627828 ], [ -122.046776, 37.629731 ], [ -122.051754, 37.625789 ], [ -122.053814, 37.629867 ], [ -122.058449, 37.635713 ], [ -122.054329, 37.636393 ], [ -122.056904, 37.638840 ], [ -122.054329, 37.640063 ], [ -122.055016, 37.641150 ], [ -122.054672, 37.641422 ], [ -122.055187, 37.642782 ], [ -122.057247, 37.642918 ], [ -122.059650, 37.641966 ], [ -122.064629, 37.648219 ], [ -122.063942, 37.648219 ], [ -122.062912, 37.648762 ], [ -122.062225, 37.649985 ], [ -122.061195, 37.649850 ], [ -122.060852, 37.649578 ], [ -122.059822, 37.649578 ], [ -122.058449, 37.650393 ], [ -122.055874, 37.650801 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436402", "GEOID10": "06001436402", "NAME10": "4364.02", "NAMELSAD10": "Census Tract 4364.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4262742, "AWATER10": 0, "INTPTLAT10": "+37.6668495", "INTPTLON10": "-122.0404785" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.049179, 37.677027 ], [ -122.048836, 37.676892 ], [ -122.048149, 37.675805 ], [ -122.044888, 37.675261 ], [ -122.043171, 37.674446 ], [ -122.042141, 37.674446 ], [ -122.039738, 37.675397 ], [ -122.033558, 37.676212 ], [ -122.033043, 37.676076 ], [ -122.032356, 37.675261 ], [ -122.032013, 37.675261 ], [ -122.032185, 37.675125 ], [ -122.031670, 37.674446 ], [ -122.029095, 37.672272 ], [ -122.029266, 37.670777 ], [ -122.027550, 37.666157 ], [ -122.027893, 37.664527 ], [ -122.026863, 37.663032 ], [ -122.026691, 37.661945 ], [ -122.025833, 37.661265 ], [ -122.024117, 37.661265 ], [ -122.026520, 37.657460 ], [ -122.026520, 37.656917 ], [ -122.027035, 37.656645 ], [ -122.027206, 37.656237 ], [ -122.027721, 37.655965 ], [ -122.028408, 37.656373 ], [ -122.030468, 37.656237 ], [ -122.031841, 37.656645 ], [ -122.034073, 37.657732 ], [ -122.034931, 37.657868 ], [ -122.036304, 37.658683 ], [ -122.037506, 37.658683 ], [ -122.038536, 37.658276 ], [ -122.039394, 37.658412 ], [ -122.041969, 37.659499 ], [ -122.042999, 37.660178 ], [ -122.045403, 37.660994 ], [ -122.047977, 37.662624 ], [ -122.049351, 37.662488 ], [ -122.051411, 37.661537 ], [ -122.053127, 37.661537 ], [ -122.053986, 37.661945 ], [ -122.055359, 37.663847 ], [ -122.056561, 37.664663 ], [ -122.056904, 37.664663 ], [ -122.057247, 37.665070 ], [ -122.059135, 37.665070 ], [ -122.059479, 37.665478 ], [ -122.060852, 37.665478 ], [ -122.060852, 37.665750 ], [ -122.058964, 37.666293 ], [ -122.058277, 37.667245 ], [ -122.051754, 37.668467 ], [ -122.052612, 37.670506 ], [ -122.056217, 37.671049 ], [ -122.055874, 37.672951 ], [ -122.055531, 37.673631 ], [ -122.051926, 37.674038 ], [ -122.051411, 37.674446 ], [ -122.050037, 37.676620 ], [ -122.049179, 37.677027 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436401", "GEOID10": "06001436401", "NAME10": "4364.01", "NAMELSAD10": "Census Tract 4364.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3116600, "AWATER10": 0, "INTPTLAT10": "+37.6715227", "INTPTLON10": "-122.0650918" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.057934, 37.680016 ], [ -122.050381, 37.678794 ], [ -122.049866, 37.678522 ], [ -122.049007, 37.677027 ], [ -122.050037, 37.676620 ], [ -122.051411, 37.674446 ], [ -122.051926, 37.674038 ], [ -122.055702, 37.673495 ], [ -122.056217, 37.671049 ], [ -122.052612, 37.670506 ], [ -122.051754, 37.668467 ], [ -122.058277, 37.667245 ], [ -122.058964, 37.666293 ], [ -122.065659, 37.663983 ], [ -122.065830, 37.664255 ], [ -122.067547, 37.665070 ], [ -122.069263, 37.665206 ], [ -122.071495, 37.663847 ], [ -122.072868, 37.663576 ], [ -122.073898, 37.662896 ], [ -122.075958, 37.662896 ], [ -122.080765, 37.668739 ], [ -122.079906, 37.669826 ], [ -122.075958, 37.671864 ], [ -122.077503, 37.673087 ], [ -122.075100, 37.674854 ], [ -122.066689, 37.677707 ], [ -122.063599, 37.678114 ], [ -122.063255, 37.678386 ], [ -122.057934, 37.680016 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435102", "GEOID10": "06001435102", "NAME10": "4351.02", "NAMELSAD10": "Census Tract 4351.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4274559, "AWATER10": 0, "INTPTLAT10": "+37.6552403", "INTPTLON10": "-122.0458797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.060852, 37.665750 ], [ -122.060852, 37.665478 ], [ -122.059479, 37.665478 ], [ -122.059135, 37.665070 ], [ -122.057247, 37.665070 ], [ -122.056904, 37.664663 ], [ -122.056561, 37.664663 ], [ -122.055359, 37.663847 ], [ -122.053986, 37.661945 ], [ -122.053127, 37.661537 ], [ -122.051411, 37.661537 ], [ -122.049351, 37.662488 ], [ -122.047977, 37.662624 ], [ -122.045403, 37.660994 ], [ -122.042999, 37.660178 ], [ -122.041969, 37.659499 ], [ -122.039394, 37.658412 ], [ -122.038536, 37.658276 ], [ -122.037506, 37.658683 ], [ -122.036304, 37.658683 ], [ -122.034931, 37.657868 ], [ -122.034073, 37.657732 ], [ -122.031841, 37.656645 ], [ -122.030468, 37.656237 ], [ -122.028408, 37.656373 ], [ -122.027721, 37.655965 ], [ -122.027378, 37.656101 ], [ -122.027035, 37.656645 ], [ -122.026520, 37.656917 ], [ -122.026520, 37.657460 ], [ -122.024117, 37.661265 ], [ -122.023773, 37.661265 ], [ -122.021713, 37.660450 ], [ -122.019653, 37.659227 ], [ -122.018280, 37.658819 ], [ -122.017937, 37.658412 ], [ -122.017078, 37.655558 ], [ -122.017422, 37.654199 ], [ -122.018452, 37.654199 ], [ -122.021198, 37.655014 ], [ -122.022057, 37.656101 ], [ -122.022572, 37.656373 ], [ -122.023602, 37.656373 ], [ -122.024117, 37.656101 ], [ -122.024632, 37.654878 ], [ -122.026005, 37.654063 ], [ -122.028751, 37.654335 ], [ -122.029953, 37.654063 ], [ -122.030983, 37.654606 ], [ -122.034073, 37.655286 ], [ -122.034245, 37.654199 ], [ -122.033043, 37.652704 ], [ -122.033043, 37.652024 ], [ -122.033730, 37.650937 ], [ -122.036133, 37.648490 ], [ -122.038193, 37.649578 ], [ -122.039223, 37.648490 ], [ -122.038879, 37.647947 ], [ -122.037678, 37.647811 ], [ -122.037163, 37.647267 ], [ -122.036648, 37.647403 ], [ -122.036819, 37.646859 ], [ -122.036304, 37.646452 ], [ -122.034931, 37.646180 ], [ -122.035961, 37.645500 ], [ -122.037163, 37.645636 ], [ -122.039738, 37.646859 ], [ -122.042313, 37.646859 ], [ -122.044201, 37.647403 ], [ -122.045918, 37.647267 ], [ -122.046604, 37.646723 ], [ -122.047291, 37.646723 ], [ -122.047291, 37.646452 ], [ -122.049522, 37.646452 ], [ -122.050381, 37.647267 ], [ -122.051411, 37.647675 ], [ -122.051926, 37.648490 ], [ -122.053471, 37.648898 ], [ -122.054672, 37.650393 ], [ -122.055874, 37.650801 ], [ -122.058449, 37.650393 ], [ -122.059822, 37.649578 ], [ -122.060852, 37.649578 ], [ -122.061195, 37.649850 ], [ -122.062225, 37.649985 ], [ -122.062912, 37.648762 ], [ -122.063942, 37.648219 ], [ -122.064629, 37.648219 ], [ -122.066860, 37.651073 ], [ -122.066860, 37.651345 ], [ -122.064457, 37.651888 ], [ -122.062912, 37.653519 ], [ -122.061195, 37.654335 ], [ -122.059994, 37.654335 ], [ -122.057076, 37.652704 ], [ -122.055187, 37.652568 ], [ -122.061195, 37.658548 ], [ -122.063084, 37.659091 ], [ -122.061367, 37.660042 ], [ -122.060337, 37.660314 ], [ -122.058792, 37.660042 ], [ -122.059822, 37.660450 ], [ -122.061195, 37.660450 ], [ -122.063255, 37.662624 ], [ -122.063770, 37.662760 ], [ -122.065315, 37.663983 ], [ -122.065659, 37.663983 ], [ -122.060852, 37.665750 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435102", "GEOID10": "06001435102", "NAME10": "4351.02", "NAMELSAD10": "Census Tract 4351.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4274559, "AWATER10": 0, "INTPTLAT10": "+37.6552403", "INTPTLON10": "-122.0458797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.060852, 37.665750 ], [ -122.060852, 37.665478 ], [ -122.059479, 37.665478 ], [ -122.059135, 37.665070 ], [ -122.057247, 37.665070 ], [ -122.056904, 37.664663 ], [ -122.056561, 37.664663 ], [ -122.055359, 37.663847 ], [ -122.053986, 37.661945 ], [ -122.053127, 37.661537 ], [ -122.051411, 37.661537 ], [ -122.049351, 37.662488 ], [ -122.047977, 37.662624 ], [ -122.045403, 37.660994 ], [ -122.042999, 37.660178 ], [ -122.041969, 37.659499 ], [ -122.039394, 37.658412 ], [ -122.038536, 37.658276 ], [ -122.037506, 37.658683 ], [ -122.036304, 37.658683 ], [ -122.034931, 37.657868 ], [ -122.034073, 37.657732 ], [ -122.031841, 37.656645 ], [ -122.030468, 37.656237 ], [ -122.028408, 37.656373 ], [ -122.027721, 37.655965 ], [ -122.027378, 37.656101 ], [ -122.027035, 37.656645 ], [ -122.026520, 37.656917 ], [ -122.026520, 37.657460 ], [ -122.024117, 37.661265 ], [ -122.023773, 37.661265 ], [ -122.021713, 37.660450 ], [ -122.019653, 37.659227 ], [ -122.018280, 37.658819 ], [ -122.017937, 37.658412 ], [ -122.017078, 37.655558 ], [ -122.017422, 37.654199 ], [ -122.018452, 37.654199 ], [ -122.021198, 37.655014 ], [ -122.022057, 37.656101 ], [ -122.022572, 37.656373 ], [ -122.023602, 37.656373 ], [ -122.024117, 37.656101 ], [ -122.024632, 37.654878 ], [ -122.026005, 37.654063 ], [ -122.028751, 37.654335 ], [ -122.029953, 37.654063 ], [ -122.030983, 37.654606 ], [ -122.034073, 37.655286 ], [ -122.034245, 37.654199 ], [ -122.033043, 37.652704 ], [ -122.033043, 37.652024 ], [ -122.033730, 37.650937 ], [ -122.036133, 37.648490 ], [ -122.038193, 37.649578 ], [ -122.039223, 37.648490 ], [ -122.038879, 37.647947 ], [ -122.037678, 37.647811 ], [ -122.037163, 37.647267 ], [ -122.036648, 37.647403 ], [ -122.036819, 37.646859 ], [ -122.036304, 37.646452 ], [ -122.034931, 37.646180 ], [ -122.035961, 37.645500 ], [ -122.037163, 37.645636 ], [ -122.039738, 37.646859 ], [ -122.042313, 37.646859 ], [ -122.044201, 37.647403 ], [ -122.045918, 37.647267 ], [ -122.047291, 37.646452 ], [ -122.049522, 37.646452 ], [ -122.050381, 37.647267 ], [ -122.051411, 37.647675 ], [ -122.051926, 37.648490 ], [ -122.053471, 37.648898 ], [ -122.054672, 37.650393 ], [ -122.055874, 37.650801 ], [ -122.058449, 37.650393 ], [ -122.059822, 37.649578 ], [ -122.060852, 37.649578 ], [ -122.061195, 37.649850 ], [ -122.062225, 37.649985 ], [ -122.062912, 37.648762 ], [ -122.063942, 37.648219 ], [ -122.064629, 37.648219 ], [ -122.066860, 37.651073 ], [ -122.066860, 37.651345 ], [ -122.064457, 37.651888 ], [ -122.062912, 37.653519 ], [ -122.061195, 37.654335 ], [ -122.059994, 37.654335 ], [ -122.057076, 37.652704 ], [ -122.055187, 37.652568 ], [ -122.061195, 37.658548 ], [ -122.063084, 37.659091 ], [ -122.061367, 37.660042 ], [ -122.060337, 37.660314 ], [ -122.058792, 37.660042 ], [ -122.059822, 37.660450 ], [ -122.061195, 37.660450 ], [ -122.063255, 37.662624 ], [ -122.063770, 37.662760 ], [ -122.065315, 37.663983 ], [ -122.065659, 37.663983 ], [ -122.060852, 37.665750 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435103", "GEOID10": "06001435103", "NAME10": "4351.03", "NAMELSAD10": "Census Tract 4351.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 51492700, "AWATER10": 0, "INTPTLAT10": "+37.6518042", "INTPTLON10": "-121.9830876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.036133, 37.702022 ], [ -122.034073, 37.701207 ], [ -122.031841, 37.699849 ], [ -122.027550, 37.698219 ], [ -122.026176, 37.697948 ], [ -122.024803, 37.698083 ], [ -122.021885, 37.699713 ], [ -122.020340, 37.699985 ], [ -122.020855, 37.697676 ], [ -122.022572, 37.696046 ], [ -122.019310, 37.694824 ], [ -122.016048, 37.694688 ], [ -122.014503, 37.694959 ], [ -122.011757, 37.694552 ], [ -122.011414, 37.694959 ], [ -122.010727, 37.694959 ], [ -122.009869, 37.695503 ], [ -122.005577, 37.695503 ], [ -122.003345, 37.696182 ], [ -122.002487, 37.694009 ], [ -122.000942, 37.693194 ], [ -121.999912, 37.691292 ], [ -121.999226, 37.690884 ], [ -121.996822, 37.690477 ], [ -121.996307, 37.690205 ], [ -121.994419, 37.690341 ], [ -121.993046, 37.690069 ], [ -121.991329, 37.688847 ], [ -121.990128, 37.688711 ], [ -121.988068, 37.687760 ], [ -121.986008, 37.687760 ], [ -121.984463, 37.688983 ], [ -121.983604, 37.689118 ], [ -121.979313, 37.679065 ], [ -121.978626, 37.678794 ], [ -121.978283, 37.677843 ], [ -121.976910, 37.676620 ], [ -121.976910, 37.675533 ], [ -121.976051, 37.675261 ], [ -121.974850, 37.674038 ], [ -121.972790, 37.674038 ], [ -121.971931, 37.673495 ], [ -121.971245, 37.673359 ], [ -121.970730, 37.672680 ], [ -121.967983, 37.671457 ], [ -121.965923, 37.671728 ], [ -121.963692, 37.671457 ], [ -121.963520, 37.672000 ], [ -121.963348, 37.671864 ], [ -121.963348, 37.671321 ], [ -121.964035, 37.670913 ], [ -121.963863, 37.669826 ], [ -121.964207, 37.669283 ], [ -121.965580, 37.668467 ], [ -121.966267, 37.668332 ], [ -121.966782, 37.667652 ], [ -121.966782, 37.667245 ], [ -121.967640, 37.666565 ], [ -121.967125, 37.665614 ], [ -121.967983, 37.664119 ], [ -121.967640, 37.663576 ], [ -121.966610, 37.662896 ], [ -121.965580, 37.662760 ], [ -121.964207, 37.662217 ], [ -121.964035, 37.661537 ], [ -121.962318, 37.660586 ], [ -121.959572, 37.658412 ], [ -121.959400, 37.657732 ], [ -121.959057, 37.657460 ], [ -121.957169, 37.656645 ], [ -121.955109, 37.654470 ], [ -121.954250, 37.654063 ], [ -121.952019, 37.652160 ], [ -121.950645, 37.653655 ], [ -121.949959, 37.653247 ], [ -121.949615, 37.652432 ], [ -121.948586, 37.651888 ], [ -121.948242, 37.651073 ], [ -121.948414, 37.650801 ], [ -121.947727, 37.650121 ], [ -121.947041, 37.649985 ], [ -121.945839, 37.649034 ], [ -121.945667, 37.647947 ], [ -121.945324, 37.647539 ], [ -121.944809, 37.647131 ], [ -121.944122, 37.646995 ], [ -121.943951, 37.646587 ], [ -121.943436, 37.646452 ], [ -121.941891, 37.644956 ], [ -121.941719, 37.644277 ], [ -121.941376, 37.644005 ], [ -121.941719, 37.643189 ], [ -121.940517, 37.643053 ], [ -121.939316, 37.642510 ], [ -121.939144, 37.642102 ], [ -121.939659, 37.641694 ], [ -121.938972, 37.641150 ], [ -121.938629, 37.640063 ], [ -121.937771, 37.639519 ], [ -121.936569, 37.639383 ], [ -121.936054, 37.639112 ], [ -121.936054, 37.638840 ], [ -121.935196, 37.638160 ], [ -121.935196, 37.637480 ], [ -121.934166, 37.636121 ], [ -121.934338, 37.635033 ], [ -121.932793, 37.633946 ], [ -121.932278, 37.632722 ], [ -121.931591, 37.632314 ], [ -121.931076, 37.630547 ], [ -121.929874, 37.630275 ], [ -121.929531, 37.630003 ], [ -121.929188, 37.628916 ], [ -121.927643, 37.628780 ], [ -121.927128, 37.627692 ], [ -121.926098, 37.626605 ], [ -121.926098, 37.624701 ], [ -121.925583, 37.624565 ], [ -121.925583, 37.623341 ], [ -121.924038, 37.618991 ], [ -121.922150, 37.618583 ], [ -121.917000, 37.614639 ], [ -121.911507, 37.608656 ], [ -121.909103, 37.607840 ], [ -121.908588, 37.606480 ], [ -121.904812, 37.603760 ], [ -121.904469, 37.602128 ], [ -121.902409, 37.601176 ], [ -121.902752, 37.600632 ], [ -121.896915, 37.597776 ], [ -121.897430, 37.597368 ], [ -121.896400, 37.597368 ], [ -121.897774, 37.595736 ], [ -121.898460, 37.595328 ], [ -121.896229, 37.593968 ], [ -121.898632, 37.594376 ], [ -121.902409, 37.595464 ], [ -121.904812, 37.595736 ], [ -121.905842, 37.595600 ], [ -121.911507, 37.593696 ], [ -121.914082, 37.593832 ], [ -121.917515, 37.595056 ], [ -121.920605, 37.597368 ], [ -121.921291, 37.598184 ], [ -121.923866, 37.599000 ], [ -121.925411, 37.599000 ], [ -121.926613, 37.598592 ], [ -121.928158, 37.596960 ], [ -121.929531, 37.596416 ], [ -121.930218, 37.595872 ], [ -121.931419, 37.593016 ], [ -121.932621, 37.591791 ], [ -121.934681, 37.590975 ], [ -121.936054, 37.590975 ], [ -121.937084, 37.591927 ], [ -121.937599, 37.592880 ], [ -121.938114, 37.594920 ], [ -121.937943, 37.597640 ], [ -121.939316, 37.598728 ], [ -121.940346, 37.598864 ], [ -121.942921, 37.597776 ], [ -121.944809, 37.597504 ], [ -121.946354, 37.597504 ], [ -121.947041, 37.597912 ], [ -121.946011, 37.597912 ], [ -121.945839, 37.598320 ], [ -121.947899, 37.601176 ], [ -121.948242, 37.603760 ], [ -121.947727, 37.604576 ], [ -121.945496, 37.606752 ], [ -121.945496, 37.607840 ], [ -121.945152, 37.608384 ], [ -121.945324, 37.609336 ], [ -121.943951, 37.610152 ], [ -121.942749, 37.610152 ], [ -121.942234, 37.610424 ], [ -121.942406, 37.611104 ], [ -121.941376, 37.611240 ], [ -121.941547, 37.611648 ], [ -121.941204, 37.611920 ], [ -121.940861, 37.613552 ], [ -121.941891, 37.614639 ], [ -121.943779, 37.614775 ], [ -121.944294, 37.615183 ], [ -121.945152, 37.616679 ], [ -121.944981, 37.617087 ], [ -121.943951, 37.617631 ], [ -121.943436, 37.618311 ], [ -121.943779, 37.618991 ], [ -121.943779, 37.620758 ], [ -121.943436, 37.620894 ], [ -121.943436, 37.621166 ], [ -121.943779, 37.621574 ], [ -121.943264, 37.624565 ], [ -121.943951, 37.625517 ], [ -121.943779, 37.626469 ], [ -121.945839, 37.628372 ], [ -121.946011, 37.628916 ], [ -121.947212, 37.629867 ], [ -121.949100, 37.630275 ], [ -121.949100, 37.630819 ], [ -121.949444, 37.631227 ], [ -121.951160, 37.632179 ], [ -121.951675, 37.633130 ], [ -121.952877, 37.633402 ], [ -121.953735, 37.634897 ], [ -121.954422, 37.635169 ], [ -121.954422, 37.635713 ], [ -121.954765, 37.635985 ], [ -121.958885, 37.636121 ], [ -121.960087, 37.636665 ], [ -121.960945, 37.637752 ], [ -121.962147, 37.638568 ], [ -121.962662, 37.639927 ], [ -121.963348, 37.640743 ], [ -121.965752, 37.642238 ], [ -121.966095, 37.642918 ], [ -121.966610, 37.643189 ], [ -121.968842, 37.643053 ], [ -121.978111, 37.639519 ], [ -121.981201, 37.635849 ], [ -121.983089, 37.634626 ], [ -121.984634, 37.634761 ], [ -121.987381, 37.633946 ], [ -121.989956, 37.633810 ], [ -121.990471, 37.633402 ], [ -121.990814, 37.632314 ], [ -121.991329, 37.631635 ], [ -121.991501, 37.630411 ], [ -121.991844, 37.630275 ], [ -121.992359, 37.630547 ], [ -121.993217, 37.630547 ], [ -121.995792, 37.631499 ], [ -121.996651, 37.631499 ], [ -121.998367, 37.630819 ], [ -121.999054, 37.630275 ], [ -121.999226, 37.628780 ], [ -121.999912, 37.628372 ], [ -122.001457, 37.627964 ], [ -122.002316, 37.627148 ], [ -122.003860, 37.627148 ], [ -122.005577, 37.627556 ], [ -122.006779, 37.627012 ], [ -122.007637, 37.627556 ], [ -122.007637, 37.628100 ], [ -122.008324, 37.628780 ], [ -122.009697, 37.629324 ], [ -122.010555, 37.630003 ], [ -122.011414, 37.630139 ], [ -122.013988, 37.631635 ], [ -122.011242, 37.633674 ], [ -122.012615, 37.634218 ], [ -122.015362, 37.634218 ], [ -122.016735, 37.634761 ], [ -122.019653, 37.636801 ], [ -122.019825, 37.637480 ], [ -122.019310, 37.638976 ], [ -122.018108, 37.640607 ], [ -122.016392, 37.641966 ], [ -122.016048, 37.642918 ], [ -122.017422, 37.643869 ], [ -122.018280, 37.645500 ], [ -122.019482, 37.646316 ], [ -122.020512, 37.646452 ], [ -122.022572, 37.647539 ], [ -122.024117, 37.647675 ], [ -122.024632, 37.647267 ], [ -122.025490, 37.647131 ], [ -122.027035, 37.647811 ], [ -122.028236, 37.647811 ], [ -122.028751, 37.647675 ], [ -122.029095, 37.647131 ], [ -122.030125, 37.646587 ], [ -122.030468, 37.646044 ], [ -122.031326, 37.645500 ], [ -122.033386, 37.645772 ], [ -122.035961, 37.645500 ], [ -122.034931, 37.646180 ], [ -122.036304, 37.646452 ], [ -122.036819, 37.646859 ], [ -122.036648, 37.647403 ], [ -122.037163, 37.647267 ], [ -122.037678, 37.647811 ], [ -122.038879, 37.647947 ], [ -122.039223, 37.648490 ], [ -122.038193, 37.649578 ], [ -122.036133, 37.648490 ], [ -122.033730, 37.650937 ], [ -122.033043, 37.652024 ], [ -122.033043, 37.652704 ], [ -122.034245, 37.654199 ], [ -122.034073, 37.655286 ], [ -122.030983, 37.654606 ], [ -122.029953, 37.654063 ], [ -122.028751, 37.654335 ], [ -122.026005, 37.654063 ], [ -122.024632, 37.654878 ], [ -122.024117, 37.656101 ], [ -122.023602, 37.656373 ], [ -122.022572, 37.656373 ], [ -122.022057, 37.656101 ], [ -122.021198, 37.655014 ], [ -122.018452, 37.654199 ], [ -122.017422, 37.654199 ], [ -122.017078, 37.655558 ], [ -122.017937, 37.658412 ], [ -122.018280, 37.658819 ], [ -122.019653, 37.659227 ], [ -122.023258, 37.661130 ], [ -122.025833, 37.661265 ], [ -122.026520, 37.661673 ], [ -122.026863, 37.663032 ], [ -122.027893, 37.664527 ], [ -122.027550, 37.666157 ], [ -122.029266, 37.670777 ], [ -122.029095, 37.672272 ], [ -122.031670, 37.674446 ], [ -122.032185, 37.675125 ], [ -122.032013, 37.675261 ], [ -122.032356, 37.675261 ], [ -122.033043, 37.676076 ], [ -122.034073, 37.676212 ], [ -122.039738, 37.675397 ], [ -122.042141, 37.674446 ], [ -122.043171, 37.674446 ], [ -122.044373, 37.674989 ], [ -122.040596, 37.679609 ], [ -122.042656, 37.683277 ], [ -122.043686, 37.686673 ], [ -122.044201, 37.687352 ], [ -122.046947, 37.688983 ], [ -122.047291, 37.690884 ], [ -122.046089, 37.691971 ], [ -122.044544, 37.692379 ], [ -122.044029, 37.693465 ], [ -122.044029, 37.694552 ], [ -122.045231, 37.695639 ], [ -122.040596, 37.699713 ], [ -122.040253, 37.700257 ], [ -122.036133, 37.702022 ] ] ] } } , @@ -1480,7 +1480,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404000", "GEOID10": "06001404000", "NAME10": "4040", "NAMELSAD10": "Census Tract 4040", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 371153, "AWATER10": 0, "INTPTLAT10": "+37.8232774", "INTPTLON10": "-122.2536542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256718, 37.827684 ], [ -122.254143, 37.826328 ], [ -122.253456, 37.825650 ], [ -122.253799, 37.825514 ], [ -122.250366, 37.822938 ], [ -122.249336, 37.823616 ], [ -122.248821, 37.823345 ], [ -122.249336, 37.822938 ], [ -122.247448, 37.821582 ], [ -122.251740, 37.820362 ], [ -122.253628, 37.819006 ], [ -122.254314, 37.819412 ], [ -122.255173, 37.820090 ], [ -122.254486, 37.820090 ], [ -122.254314, 37.820362 ], [ -122.254658, 37.821853 ], [ -122.257748, 37.824158 ], [ -122.258606, 37.824430 ], [ -122.256718, 37.827684 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220669, 37.860218 ], [ -122.220154, 37.859540 ], [ -122.219296, 37.859540 ], [ -122.219639, 37.858998 ], [ -122.219639, 37.858727 ], [ -122.219124, 37.858320 ], [ -122.219296, 37.857643 ], [ -122.218952, 37.857372 ], [ -122.217922, 37.857372 ], [ -122.217922, 37.856558 ], [ -122.217579, 37.856423 ], [ -122.216721, 37.856694 ], [ -122.216721, 37.856016 ], [ -122.214489, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214489, 37.856016 ], [ -122.213974, 37.855610 ], [ -122.212429, 37.857236 ], [ -122.211914, 37.856965 ], [ -122.210712, 37.855068 ], [ -122.211056, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.207794, 37.851815 ], [ -122.207451, 37.851543 ], [ -122.206249, 37.851408 ], [ -122.204018, 37.851408 ], [ -122.200756, 37.847613 ], [ -122.197666, 37.845308 ], [ -122.196980, 37.845037 ], [ -122.195263, 37.843546 ], [ -122.195263, 37.842868 ], [ -122.198696, 37.843546 ], [ -122.199898, 37.843546 ], [ -122.200584, 37.843275 ], [ -122.202644, 37.843410 ], [ -122.204018, 37.843004 ], [ -122.204533, 37.842461 ], [ -122.206593, 37.841784 ], [ -122.208996, 37.841648 ], [ -122.210541, 37.839343 ], [ -122.212086, 37.834734 ], [ -122.214489, 37.832972 ], [ -122.215176, 37.831751 ], [ -122.215347, 37.832022 ], [ -122.217064, 37.832700 ], [ -122.219467, 37.836225 ], [ -122.223072, 37.839208 ], [ -122.227192, 37.844901 ], [ -122.227707, 37.845850 ], [ -122.227879, 37.847613 ], [ -122.230797, 37.848968 ], [ -122.228565, 37.848968 ], [ -122.231483, 37.849781 ], [ -122.231483, 37.850188 ], [ -122.232342, 37.850595 ], [ -122.234058, 37.852492 ], [ -122.233372, 37.852086 ], [ -122.232857, 37.851408 ], [ -122.232342, 37.851408 ], [ -122.231483, 37.850866 ], [ -122.226677, 37.849917 ], [ -122.226677, 37.850324 ], [ -122.225304, 37.850188 ], [ -122.224789, 37.850730 ], [ -122.224274, 37.850866 ], [ -122.224274, 37.851408 ], [ -122.224617, 37.851815 ], [ -122.223587, 37.852086 ], [ -122.223587, 37.852899 ], [ -122.224102, 37.853306 ], [ -122.224102, 37.853577 ], [ -122.223244, 37.853712 ], [ -122.223072, 37.854119 ], [ -122.223587, 37.855068 ], [ -122.222042, 37.854932 ], [ -122.221527, 37.855339 ], [ -122.222385, 37.856965 ], [ -122.222214, 37.857236 ], [ -122.222557, 37.857914 ], [ -122.222042, 37.858320 ], [ -122.222042, 37.858862 ], [ -122.221355, 37.858998 ], [ -122.221012, 37.860218 ], [ -122.220669, 37.860218 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220669, 37.860218 ], [ -122.220154, 37.859540 ], [ -122.219296, 37.859540 ], [ -122.219639, 37.858998 ], [ -122.219639, 37.858727 ], [ -122.219124, 37.858320 ], [ -122.219296, 37.857643 ], [ -122.218952, 37.857372 ], [ -122.217922, 37.857372 ], [ -122.217922, 37.856558 ], [ -122.217579, 37.856423 ], [ -122.216721, 37.856694 ], [ -122.216721, 37.856016 ], [ -122.214489, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214489, 37.856016 ], [ -122.213974, 37.855610 ], [ -122.212429, 37.857236 ], [ -122.211914, 37.856965 ], [ -122.210712, 37.855068 ], [ -122.211056, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.207794, 37.851815 ], [ -122.207451, 37.851543 ], [ -122.206249, 37.851408 ], [ -122.204018, 37.851408 ], [ -122.200756, 37.847613 ], [ -122.197666, 37.845308 ], [ -122.196980, 37.845037 ], [ -122.195263, 37.843546 ], [ -122.195263, 37.842868 ], [ -122.198696, 37.843546 ], [ -122.199898, 37.843546 ], [ -122.201099, 37.843139 ], [ -122.201614, 37.843410 ], [ -122.202644, 37.843410 ], [ -122.204018, 37.843004 ], [ -122.204533, 37.842461 ], [ -122.206593, 37.841784 ], [ -122.208996, 37.841648 ], [ -122.210541, 37.839343 ], [ -122.212086, 37.834734 ], [ -122.214489, 37.832972 ], [ -122.215176, 37.831751 ], [ -122.215347, 37.832022 ], [ -122.217064, 37.832700 ], [ -122.219467, 37.836225 ], [ -122.223072, 37.839208 ], [ -122.227192, 37.844901 ], [ -122.227707, 37.845850 ], [ -122.227879, 37.847613 ], [ -122.230797, 37.848968 ], [ -122.228565, 37.848968 ], [ -122.231483, 37.849781 ], [ -122.231483, 37.850188 ], [ -122.232342, 37.850595 ], [ -122.234058, 37.852492 ], [ -122.233372, 37.852086 ], [ -122.232857, 37.851408 ], [ -122.232342, 37.851408 ], [ -122.231483, 37.850866 ], [ -122.226677, 37.849917 ], [ -122.226677, 37.850324 ], [ -122.225304, 37.850188 ], [ -122.224789, 37.850730 ], [ -122.224274, 37.850866 ], [ -122.224274, 37.851408 ], [ -122.224617, 37.851815 ], [ -122.223587, 37.852086 ], [ -122.223587, 37.852899 ], [ -122.224102, 37.853306 ], [ -122.224102, 37.853577 ], [ -122.223244, 37.853712 ], [ -122.223072, 37.854119 ], [ -122.223587, 37.855068 ], [ -122.222042, 37.854932 ], [ -122.221527, 37.855339 ], [ -122.222385, 37.856965 ], [ -122.222214, 37.857236 ], [ -122.222557, 37.857914 ], [ -122.222042, 37.858320 ], [ -122.222042, 37.858862 ], [ -122.221355, 37.858998 ], [ -122.221012, 37.860218 ], [ -122.220669, 37.860218 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404200", "GEOID10": "06001404200", "NAME10": "4042", "NAMELSAD10": "Census Tract 4042", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2728909, "AWATER10": 0, "INTPTLAT10": "+37.8361078", "INTPTLON10": "-122.2344651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226849, 37.842868 ], [ -122.225819, 37.842055 ], [ -122.224789, 37.841648 ], [ -122.223072, 37.839208 ], [ -122.219982, 37.836768 ], [ -122.217064, 37.832700 ], [ -122.217751, 37.832972 ], [ -122.218609, 37.832972 ], [ -122.221527, 37.832700 ], [ -122.222042, 37.832429 ], [ -122.222557, 37.831073 ], [ -122.223244, 37.830531 ], [ -122.224274, 37.830260 ], [ -122.224617, 37.830395 ], [ -122.225132, 37.831345 ], [ -122.226334, 37.832022 ], [ -122.226849, 37.832022 ], [ -122.228050, 37.832972 ], [ -122.236633, 37.830802 ], [ -122.238178, 37.830531 ], [ -122.240753, 37.830531 ], [ -122.243156, 37.829989 ], [ -122.244015, 37.830395 ], [ -122.245045, 37.832022 ], [ -122.246075, 37.832429 ], [ -122.246933, 37.833107 ], [ -122.248821, 37.831751 ], [ -122.249336, 37.832022 ], [ -122.250538, 37.833785 ], [ -122.252426, 37.834598 ], [ -122.250881, 37.837174 ], [ -122.249165, 37.837174 ], [ -122.244358, 37.839208 ], [ -122.241096, 37.839886 ], [ -122.239380, 37.840970 ], [ -122.236805, 37.840970 ], [ -122.235260, 37.842326 ], [ -122.232685, 37.842733 ], [ -122.231483, 37.842733 ], [ -122.230797, 37.842461 ], [ -122.228737, 37.842461 ], [ -122.228050, 37.842868 ], [ -122.226849, 37.842868 ] ] ] } } , @@ -1534,7 +1534,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793508 ], [ -122.225990, 37.793372 ], [ -122.222729, 37.791473 ], [ -122.221870, 37.791202 ], [ -122.221699, 37.790930 ], [ -122.219982, 37.790523 ], [ -122.222214, 37.784961 ], [ -122.224789, 37.785775 ], [ -122.230968, 37.789438 ], [ -122.229939, 37.790388 ], [ -122.228222, 37.791473 ], [ -122.226677, 37.793508 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404502", "GEOID10": "06001404502", "NAME10": "4045.02", "NAMELSAD10": "Census Tract 4045.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3071440, "AWATER10": 0, "INTPTLAT10": "+37.8345259", "INTPTLON10": "-122.2026154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.198696, 37.843546 ], [ -122.195263, 37.842868 ], [ -122.196121, 37.842055 ], [ -122.195778, 37.842055 ], [ -122.195091, 37.841512 ], [ -122.194233, 37.841377 ], [ -122.193890, 37.840699 ], [ -122.191830, 37.839886 ], [ -122.188911, 37.837581 ], [ -122.185307, 37.837039 ], [ -122.184620, 37.835954 ], [ -122.184448, 37.834870 ], [ -122.185993, 37.836225 ], [ -122.187195, 37.835954 ], [ -122.187366, 37.836225 ], [ -122.187710, 37.836225 ], [ -122.188053, 37.835819 ], [ -122.187538, 37.835954 ], [ -122.187023, 37.835412 ], [ -122.187195, 37.835005 ], [ -122.188568, 37.835276 ], [ -122.190971, 37.834734 ], [ -122.192173, 37.833921 ], [ -122.192860, 37.832836 ], [ -122.193718, 37.832158 ], [ -122.196465, 37.831480 ], [ -122.200584, 37.829446 ], [ -122.201443, 37.828768 ], [ -122.202301, 37.827277 ], [ -122.202816, 37.825921 ], [ -122.202473, 37.824565 ], [ -122.203159, 37.823752 ], [ -122.203846, 37.823752 ], [ -122.205219, 37.824294 ], [ -122.206078, 37.824294 ], [ -122.207108, 37.824836 ], [ -122.208996, 37.824430 ], [ -122.208138, 37.823209 ], [ -122.206764, 37.822260 ], [ -122.207279, 37.821582 ], [ -122.212944, 37.828497 ], [ -122.215862, 37.831209 ], [ -122.215347, 37.831616 ], [ -122.215176, 37.831480 ], [ -122.214489, 37.832972 ], [ -122.212257, 37.834463 ], [ -122.210541, 37.839343 ], [ -122.208996, 37.841648 ], [ -122.206593, 37.841784 ], [ -122.204533, 37.842461 ], [ -122.204018, 37.843004 ], [ -122.202644, 37.843410 ], [ -122.200584, 37.843275 ], [ -122.199898, 37.843546 ], [ -122.198696, 37.843546 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404502", "GEOID10": "06001404502", "NAME10": "4045.02", "NAMELSAD10": "Census Tract 4045.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3071440, "AWATER10": 0, "INTPTLAT10": "+37.8345259", "INTPTLON10": "-122.2026154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.198696, 37.843546 ], [ -122.195263, 37.842868 ], [ -122.196121, 37.842055 ], [ -122.195778, 37.842055 ], [ -122.195091, 37.841512 ], [ -122.194233, 37.841377 ], [ -122.193890, 37.840699 ], [ -122.191830, 37.839886 ], [ -122.188911, 37.837581 ], [ -122.185307, 37.837039 ], [ -122.184620, 37.835954 ], [ -122.184448, 37.834870 ], [ -122.185993, 37.836225 ], [ -122.186508, 37.835954 ], [ -122.187195, 37.835954 ], [ -122.187366, 37.836225 ], [ -122.187710, 37.836225 ], [ -122.188053, 37.835819 ], [ -122.187538, 37.835954 ], [ -122.187023, 37.835412 ], [ -122.187195, 37.835005 ], [ -122.188568, 37.835276 ], [ -122.190971, 37.834734 ], [ -122.192173, 37.833921 ], [ -122.192860, 37.832836 ], [ -122.193718, 37.832158 ], [ -122.196465, 37.831480 ], [ -122.200584, 37.829446 ], [ -122.201443, 37.828768 ], [ -122.202301, 37.827277 ], [ -122.202816, 37.825921 ], [ -122.202473, 37.824565 ], [ -122.203159, 37.823752 ], [ -122.203846, 37.823752 ], [ -122.205219, 37.824294 ], [ -122.206078, 37.824294 ], [ -122.207108, 37.824836 ], [ -122.208996, 37.824430 ], [ -122.208138, 37.823209 ], [ -122.206764, 37.822260 ], [ -122.207279, 37.821582 ], [ -122.212944, 37.828497 ], [ -122.215862, 37.831209 ], [ -122.215347, 37.831616 ], [ -122.215176, 37.831480 ], [ -122.214489, 37.832972 ], [ -122.212257, 37.834463 ], [ -122.210541, 37.839343 ], [ -122.208996, 37.841648 ], [ -122.206593, 37.841784 ], [ -122.204533, 37.842461 ], [ -122.204018, 37.843004 ], [ -122.202644, 37.843410 ], [ -122.201614, 37.843410 ], [ -122.201099, 37.843139 ], [ -122.199898, 37.843546 ], [ -122.198696, 37.843546 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404700", "GEOID10": "06001404700", "NAME10": "4047", "NAMELSAD10": "Census Tract 4047", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1205965, "AWATER10": 0, "INTPTLAT10": "+37.8133625", "INTPTLON10": "-122.2070119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.207279, 37.821582 ], [ -122.200413, 37.812903 ], [ -122.197838, 37.810598 ], [ -122.198524, 37.810191 ], [ -122.200584, 37.810462 ], [ -122.201614, 37.810326 ], [ -122.202129, 37.809513 ], [ -122.207451, 37.806393 ], [ -122.208481, 37.807071 ], [ -122.209682, 37.806936 ], [ -122.209854, 37.808699 ], [ -122.210541, 37.808699 ], [ -122.212086, 37.809920 ], [ -122.210884, 37.810598 ], [ -122.211399, 37.810598 ], [ -122.212429, 37.811683 ], [ -122.214832, 37.812768 ], [ -122.213974, 37.813446 ], [ -122.213802, 37.813988 ], [ -122.213116, 37.814666 ], [ -122.212772, 37.816429 ], [ -122.211914, 37.817514 ], [ -122.208996, 37.819412 ], [ -122.207966, 37.820633 ], [ -122.207623, 37.821446 ], [ -122.207279, 37.821582 ] ] ] } } , @@ -1546,7 +1546,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406900", "GEOID10": "06001406900", "NAME10": "4069", "NAMELSAD10": "Census Tract 4069", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 872953, "AWATER10": 0, "INTPTLAT10": "+37.7932754", "INTPTLON10": "-122.1903803" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.189083, 37.798933 ], [ -122.185307, 37.798527 ], [ -122.184448, 37.797306 ], [ -122.185650, 37.796356 ], [ -122.185650, 37.795542 ], [ -122.185135, 37.795135 ], [ -122.185135, 37.794457 ], [ -122.185822, 37.793915 ], [ -122.185822, 37.793372 ], [ -122.184105, 37.792422 ], [ -122.183933, 37.791744 ], [ -122.185822, 37.789845 ], [ -122.186165, 37.789709 ], [ -122.188225, 37.790659 ], [ -122.194920, 37.787267 ], [ -122.198353, 37.791066 ], [ -122.192001, 37.794728 ], [ -122.190971, 37.795542 ], [ -122.192345, 37.796492 ], [ -122.192516, 37.797577 ], [ -122.193031, 37.798120 ], [ -122.191830, 37.798933 ], [ -122.189083, 37.798933 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404600", "GEOID10": "06001404600", "NAME10": "4046", "NAMELSAD10": "Census Tract 4046", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4887532, "AWATER10": 0, "INTPTLAT10": "+37.8197458", "INTPTLON10": "-122.1910599" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.187366, 37.836225 ], [ -122.187195, 37.835954 ], [ -122.185993, 37.836225 ], [ -122.184448, 37.834870 ], [ -122.184105, 37.833921 ], [ -122.186165, 37.831073 ], [ -122.187195, 37.829040 ], [ -122.187023, 37.827141 ], [ -122.186680, 37.827006 ], [ -122.185822, 37.825514 ], [ -122.186680, 37.823616 ], [ -122.185993, 37.820768 ], [ -122.181530, 37.819548 ], [ -122.176895, 37.816293 ], [ -122.175007, 37.814259 ], [ -122.174492, 37.810462 ], [ -122.175522, 37.807750 ], [ -122.175865, 37.807207 ], [ -122.176208, 37.807207 ], [ -122.176552, 37.806800 ], [ -122.178268, 37.803952 ], [ -122.179298, 37.805037 ], [ -122.179813, 37.806800 ], [ -122.181015, 37.808699 ], [ -122.183075, 37.809648 ], [ -122.184963, 37.809784 ], [ -122.186852, 37.809241 ], [ -122.188568, 37.809784 ], [ -122.191315, 37.809648 ], [ -122.192688, 37.810326 ], [ -122.195606, 37.811005 ], [ -122.197151, 37.811005 ], [ -122.197838, 37.810598 ], [ -122.199726, 37.812225 ], [ -122.201443, 37.814124 ], [ -122.202816, 37.816158 ], [ -122.207279, 37.821582 ], [ -122.206764, 37.822260 ], [ -122.208138, 37.823209 ], [ -122.208996, 37.824430 ], [ -122.207108, 37.824836 ], [ -122.206078, 37.824294 ], [ -122.205219, 37.824294 ], [ -122.203846, 37.823752 ], [ -122.203159, 37.823752 ], [ -122.202473, 37.824565 ], [ -122.202816, 37.825921 ], [ -122.201443, 37.828768 ], [ -122.200584, 37.829446 ], [ -122.197151, 37.831209 ], [ -122.193718, 37.832158 ], [ -122.192860, 37.832836 ], [ -122.192173, 37.833921 ], [ -122.190971, 37.834734 ], [ -122.188568, 37.835276 ], [ -122.187195, 37.835005 ], [ -122.187023, 37.835412 ], [ -122.187538, 37.835954 ], [ -122.188053, 37.835819 ], [ -122.187710, 37.836225 ], [ -122.187366, 37.836225 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404600", "GEOID10": "06001404600", "NAME10": "4046", "NAMELSAD10": "Census Tract 4046", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4887532, "AWATER10": 0, "INTPTLAT10": "+37.8197458", "INTPTLON10": "-122.1910599" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.187366, 37.836225 ], [ -122.187195, 37.835954 ], [ -122.186508, 37.835954 ], [ -122.185993, 37.836225 ], [ -122.184448, 37.834870 ], [ -122.184105, 37.833921 ], [ -122.186165, 37.831073 ], [ -122.187195, 37.829040 ], [ -122.187023, 37.827141 ], [ -122.186680, 37.827006 ], [ -122.185822, 37.825514 ], [ -122.186680, 37.823616 ], [ -122.185993, 37.820768 ], [ -122.181530, 37.819548 ], [ -122.176895, 37.816293 ], [ -122.175007, 37.814259 ], [ -122.174492, 37.810462 ], [ -122.175522, 37.807750 ], [ -122.175865, 37.807207 ], [ -122.176208, 37.807207 ], [ -122.176552, 37.806800 ], [ -122.178268, 37.803952 ], [ -122.179298, 37.805037 ], [ -122.179813, 37.806800 ], [ -122.181015, 37.808699 ], [ -122.183075, 37.809648 ], [ -122.184963, 37.809784 ], [ -122.186852, 37.809241 ], [ -122.188568, 37.809784 ], [ -122.191315, 37.809648 ], [ -122.192688, 37.810326 ], [ -122.195606, 37.811005 ], [ -122.197151, 37.811005 ], [ -122.197838, 37.810598 ], [ -122.199726, 37.812225 ], [ -122.201443, 37.814124 ], [ -122.202816, 37.816158 ], [ -122.207279, 37.821582 ], [ -122.206764, 37.822260 ], [ -122.208138, 37.823209 ], [ -122.208996, 37.824430 ], [ -122.207108, 37.824836 ], [ -122.206078, 37.824294 ], [ -122.205219, 37.824294 ], [ -122.203846, 37.823752 ], [ -122.203159, 37.823752 ], [ -122.202473, 37.824565 ], [ -122.202816, 37.825921 ], [ -122.201443, 37.828768 ], [ -122.200584, 37.829446 ], [ -122.197151, 37.831209 ], [ -122.193718, 37.832158 ], [ -122.192860, 37.832836 ], [ -122.192173, 37.833921 ], [ -122.190971, 37.834734 ], [ -122.188568, 37.835276 ], [ -122.187195, 37.835005 ], [ -122.187023, 37.835412 ], [ -122.187538, 37.835954 ], [ -122.188053, 37.835819 ], [ -122.187710, 37.836225 ], [ -122.187366, 37.836225 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408000", "GEOID10": "06001408000", "NAME10": "4080", "NAMELSAD10": "Census Tract 4080", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1913253, "AWATER10": 8312, "INTPTLAT10": "+37.8052370", "INTPTLON10": "-122.1887608" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.195606, 37.811005 ], [ -122.192688, 37.810326 ], [ -122.191315, 37.809648 ], [ -122.188568, 37.809784 ], [ -122.186852, 37.809241 ], [ -122.184963, 37.809784 ], [ -122.183762, 37.809784 ], [ -122.181358, 37.808970 ], [ -122.180328, 37.807885 ], [ -122.179298, 37.805037 ], [ -122.178268, 37.803952 ], [ -122.177410, 37.803274 ], [ -122.176552, 37.803681 ], [ -122.175694, 37.803409 ], [ -122.175350, 37.803138 ], [ -122.175694, 37.802189 ], [ -122.170887, 37.799747 ], [ -122.170372, 37.797441 ], [ -122.170544, 37.796628 ], [ -122.171230, 37.796221 ], [ -122.171917, 37.796221 ], [ -122.173462, 37.797170 ], [ -122.174320, 37.797170 ], [ -122.175007, 37.796628 ], [ -122.176037, 37.794593 ], [ -122.176895, 37.794186 ], [ -122.177925, 37.794457 ], [ -122.179298, 37.795678 ], [ -122.180672, 37.796221 ], [ -122.182388, 37.796356 ], [ -122.182903, 37.796763 ], [ -122.183418, 37.797848 ], [ -122.185307, 37.798527 ], [ -122.187881, 37.800968 ], [ -122.189770, 37.802324 ], [ -122.194405, 37.807885 ], [ -122.197838, 37.810598 ], [ -122.197151, 37.811005 ], [ -122.195606, 37.811005 ] ] ] } } , @@ -1662,15 +1662,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430200", "GEOID10": "06001430200", "NAME10": "4302", "NAMELSAD10": "Census Tract 4302", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5329284, "AWATER10": 0, "INTPTLAT10": "+37.7216743", "INTPTLON10": "-122.0615667" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.059307, 37.752665 ], [ -122.058449, 37.752122 ], [ -122.058620, 37.751444 ], [ -122.058277, 37.751580 ], [ -122.058277, 37.751172 ], [ -122.057762, 37.751037 ], [ -122.058449, 37.750358 ], [ -122.058277, 37.749679 ], [ -122.056561, 37.748051 ], [ -122.057076, 37.747372 ], [ -122.056389, 37.746693 ], [ -122.055874, 37.745336 ], [ -122.055702, 37.742892 ], [ -122.055187, 37.742349 ], [ -122.054672, 37.742214 ], [ -122.054329, 37.741399 ], [ -122.054501, 37.740178 ], [ -122.053986, 37.740042 ], [ -122.053986, 37.738549 ], [ -122.053642, 37.738277 ], [ -122.053986, 37.737327 ], [ -122.053642, 37.737191 ], [ -122.053299, 37.736512 ], [ -122.053471, 37.735833 ], [ -122.053127, 37.735833 ], [ -122.052784, 37.735426 ], [ -122.052784, 37.734612 ], [ -122.052269, 37.734476 ], [ -122.052269, 37.733661 ], [ -122.051926, 37.733526 ], [ -122.052097, 37.732439 ], [ -122.051239, 37.731625 ], [ -122.051582, 37.730675 ], [ -122.051411, 37.730267 ], [ -122.052612, 37.729045 ], [ -122.052441, 37.727688 ], [ -122.052784, 37.727009 ], [ -122.052269, 37.725923 ], [ -122.052441, 37.724565 ], [ -122.052097, 37.723750 ], [ -122.052956, 37.722392 ], [ -122.054329, 37.721306 ], [ -122.053986, 37.720356 ], [ -122.054501, 37.719269 ], [ -122.054329, 37.718590 ], [ -122.054501, 37.717232 ], [ -122.054157, 37.716825 ], [ -122.053986, 37.715331 ], [ -122.055016, 37.714924 ], [ -122.055874, 37.714109 ], [ -122.055359, 37.713294 ], [ -122.055702, 37.713159 ], [ -122.055531, 37.711936 ], [ -122.056046, 37.711801 ], [ -122.055702, 37.711122 ], [ -122.056217, 37.710986 ], [ -122.055531, 37.709220 ], [ -122.055702, 37.707726 ], [ -122.074070, 37.707726 ], [ -122.073727, 37.718590 ], [ -122.075272, 37.720763 ], [ -122.068062, 37.720627 ], [ -122.065487, 37.720220 ], [ -122.064972, 37.721306 ], [ -122.061710, 37.729588 ], [ -122.059994, 37.738820 ], [ -122.061539, 37.743707 ], [ -122.062225, 37.746965 ], [ -122.062225, 37.748458 ], [ -122.059307, 37.752665 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.925926, 37.727009 ], [ -121.918545, 37.718590 ], [ -121.915455, 37.715196 ], [ -121.912365, 37.712208 ], [ -121.906700, 37.707726 ], [ -121.925240, 37.707726 ], [ -121.927128, 37.710171 ], [ -121.927643, 37.711936 ], [ -121.927643, 37.712751 ], [ -121.927128, 37.713973 ], [ -121.926785, 37.718590 ], [ -121.926441, 37.721306 ], [ -121.926613, 37.722121 ], [ -121.926956, 37.722800 ], [ -121.929359, 37.726194 ], [ -121.925926, 37.727009 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.925926, 37.727009 ], [ -121.918545, 37.718590 ], [ -121.915455, 37.715196 ], [ -121.912365, 37.712208 ], [ -121.909447, 37.709764 ], [ -121.906528, 37.707726 ], [ -121.925240, 37.707726 ], [ -121.927128, 37.710171 ], [ -121.927643, 37.711936 ], [ -121.927643, 37.712751 ], [ -121.927128, 37.713973 ], [ -121.926785, 37.718590 ], [ -121.926441, 37.721306 ], [ -121.926613, 37.722121 ], [ -121.926956, 37.722800 ], [ -121.929359, 37.726194 ], [ -121.925926, 37.727009 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910648, 37.730403 ], [ -121.910648, 37.728774 ], [ -121.909447, 37.725244 ], [ -121.909447, 37.724022 ], [ -121.910133, 37.722528 ], [ -121.910133, 37.712751 ], [ -121.910305, 37.712208 ], [ -121.910305, 37.710443 ], [ -121.914253, 37.713973 ], [ -121.918545, 37.718590 ], [ -121.925926, 37.727009 ], [ -121.910648, 37.730403 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812630, 37.754158 ], [ -121.811943, 37.752394 ], [ -121.811943, 37.751444 ], [ -121.813831, 37.746422 ], [ -121.813831, 37.745200 ], [ -121.810226, 37.742485 ], [ -121.809368, 37.741535 ], [ -121.809368, 37.738277 ], [ -121.808338, 37.735969 ], [ -121.808681, 37.733797 ], [ -121.808681, 37.730403 ], [ -121.809368, 37.728774 ], [ -121.808510, 37.726058 ], [ -121.808510, 37.724293 ], [ -121.809025, 37.722392 ], [ -121.808510, 37.721170 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.714924 ], [ -121.806278, 37.713566 ], [ -121.805420, 37.709764 ], [ -121.805077, 37.709628 ], [ -121.804905, 37.707726 ], [ -121.823273, 37.707726 ], [ -121.823273, 37.708813 ], [ -121.823788, 37.710578 ], [ -121.823788, 37.713702 ], [ -121.824474, 37.715875 ], [ -121.824303, 37.717232 ], [ -121.824474, 37.718590 ], [ -121.825848, 37.722528 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726058 ], [ -121.830482, 37.727823 ], [ -121.834774, 37.729860 ], [ -121.835804, 37.730946 ], [ -121.836491, 37.731082 ], [ -121.837521, 37.733661 ], [ -121.840267, 37.733661 ], [ -121.842327, 37.733390 ], [ -121.844044, 37.732304 ], [ -121.845417, 37.732304 ], [ -121.846275, 37.733118 ], [ -121.846962, 37.733390 ], [ -121.847649, 37.732711 ], [ -121.848164, 37.732711 ], [ -121.849194, 37.733390 ], [ -121.849709, 37.733390 ], [ -121.850395, 37.734069 ], [ -121.851940, 37.734204 ], [ -121.852627, 37.733933 ], [ -121.853142, 37.733390 ], [ -121.854343, 37.733118 ], [ -121.854687, 37.732439 ], [ -121.855202, 37.732439 ], [ -121.856232, 37.731353 ], [ -121.856918, 37.731218 ], [ -121.857262, 37.730403 ], [ -121.860008, 37.730675 ], [ -121.858635, 37.728774 ], [ -121.858292, 37.727688 ], [ -121.858292, 37.726058 ], [ -121.856575, 37.725787 ], [ -121.855717, 37.724565 ], [ -121.855373, 37.724701 ], [ -121.855373, 37.724972 ], [ -121.854687, 37.724972 ], [ -121.854172, 37.725244 ], [ -121.852798, 37.725244 ], [ -121.852455, 37.724972 ], [ -121.851940, 37.723886 ], [ -121.852112, 37.722800 ], [ -121.851768, 37.722121 ], [ -121.851768, 37.721170 ], [ -121.852455, 37.721306 ], [ -121.854000, 37.720356 ], [ -121.853142, 37.719269 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.851425, 37.716961 ], [ -121.850910, 37.716282 ], [ -121.851768, 37.714245 ], [ -121.854172, 37.715467 ], [ -121.857605, 37.716825 ], [ -121.858463, 37.717504 ], [ -121.859150, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865673, 37.718183 ], [ -121.866016, 37.717504 ], [ -121.866703, 37.717097 ], [ -121.869106, 37.716961 ], [ -121.870995, 37.716553 ], [ -121.872025, 37.716689 ], [ -121.871853, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724701 ], [ -121.872540, 37.725108 ], [ -121.872540, 37.726194 ], [ -121.873055, 37.726466 ], [ -121.872883, 37.727552 ], [ -121.873569, 37.728095 ], [ -121.873226, 37.728366 ], [ -121.873226, 37.728774 ], [ -121.873569, 37.729317 ], [ -121.872883, 37.729453 ], [ -121.874428, 37.731489 ], [ -121.881809, 37.736376 ], [ -121.881638, 37.737327 ], [ -121.812630, 37.754158 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812630, 37.754158 ], [ -121.811943, 37.752394 ], [ -121.811943, 37.751444 ], [ -121.813831, 37.746422 ], [ -121.813831, 37.745200 ], [ -121.810226, 37.742485 ], [ -121.809368, 37.741535 ], [ -121.809368, 37.738277 ], [ -121.808338, 37.735969 ], [ -121.808681, 37.733797 ], [ -121.808681, 37.730403 ], [ -121.809368, 37.728774 ], [ -121.808338, 37.724972 ], [ -121.809025, 37.722800 ], [ -121.808510, 37.721170 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.714924 ], [ -121.806278, 37.713566 ], [ -121.805420, 37.709764 ], [ -121.805077, 37.709628 ], [ -121.804905, 37.707726 ], [ -121.823273, 37.707726 ], [ -121.823273, 37.708813 ], [ -121.823788, 37.710578 ], [ -121.823788, 37.713702 ], [ -121.824474, 37.715875 ], [ -121.824303, 37.717232 ], [ -121.824474, 37.718590 ], [ -121.825848, 37.722528 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726058 ], [ -121.830482, 37.727823 ], [ -121.834774, 37.729860 ], [ -121.835804, 37.730946 ], [ -121.836491, 37.731082 ], [ -121.837521, 37.733661 ], [ -121.840267, 37.733661 ], [ -121.842327, 37.733390 ], [ -121.844044, 37.732304 ], [ -121.845417, 37.732304 ], [ -121.846275, 37.733118 ], [ -121.846962, 37.733390 ], [ -121.847649, 37.732711 ], [ -121.848164, 37.732711 ], [ -121.849194, 37.733390 ], [ -121.849709, 37.733390 ], [ -121.850395, 37.734069 ], [ -121.851940, 37.734204 ], [ -121.852627, 37.733933 ], [ -121.853142, 37.733390 ], [ -121.854343, 37.733118 ], [ -121.854687, 37.732439 ], [ -121.855202, 37.732439 ], [ -121.856232, 37.731353 ], [ -121.856918, 37.731218 ], [ -121.857262, 37.730403 ], [ -121.860008, 37.730675 ], [ -121.858635, 37.728774 ], [ -121.858292, 37.727688 ], [ -121.858292, 37.726058 ], [ -121.856575, 37.725787 ], [ -121.855717, 37.724565 ], [ -121.855373, 37.724701 ], [ -121.855373, 37.724972 ], [ -121.854687, 37.724972 ], [ -121.854172, 37.725244 ], [ -121.852798, 37.725244 ], [ -121.852455, 37.724972 ], [ -121.851940, 37.723886 ], [ -121.852112, 37.722800 ], [ -121.851768, 37.722121 ], [ -121.851768, 37.721170 ], [ -121.852455, 37.721306 ], [ -121.854000, 37.720356 ], [ -121.853142, 37.719269 ], [ -121.853142, 37.718590 ], [ -121.851768, 37.718047 ], [ -121.851425, 37.716961 ], [ -121.850910, 37.716282 ], [ -121.851768, 37.714245 ], [ -121.854172, 37.715467 ], [ -121.857605, 37.716825 ], [ -121.858463, 37.717504 ], [ -121.859150, 37.718590 ], [ -121.862755, 37.717776 ], [ -121.865673, 37.718183 ], [ -121.866016, 37.717504 ], [ -121.866703, 37.717097 ], [ -121.869106, 37.716961 ], [ -121.870995, 37.716553 ], [ -121.872025, 37.716689 ], [ -121.871853, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872025, 37.723207 ], [ -121.872025, 37.724701 ], [ -121.872540, 37.725108 ], [ -121.872540, 37.726194 ], [ -121.873055, 37.726466 ], [ -121.872883, 37.727552 ], [ -121.873569, 37.728095 ], [ -121.873226, 37.728366 ], [ -121.873226, 37.728774 ], [ -121.873569, 37.729317 ], [ -121.872883, 37.729453 ], [ -121.874428, 37.731489 ], [ -121.881809, 37.736376 ], [ -121.881638, 37.737327 ], [ -121.812630, 37.754158 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.739330, 37.772072 ], [ -121.738300, 37.771665 ], [ -121.736927, 37.771529 ], [ -121.735554, 37.770850 ], [ -121.735039, 37.770172 ], [ -121.734867, 37.768951 ], [ -121.734180, 37.768272 ], [ -121.733837, 37.767458 ], [ -121.734180, 37.766508 ], [ -121.735382, 37.765694 ], [ -121.736584, 37.763251 ], [ -121.736240, 37.760537 ], [ -121.735039, 37.759994 ], [ -121.734180, 37.758773 ], [ -121.732635, 37.757959 ], [ -121.732807, 37.757008 ], [ -121.734352, 37.755923 ], [ -121.734352, 37.755108 ], [ -121.731949, 37.752530 ], [ -121.730576, 37.749408 ], [ -121.728687, 37.748322 ], [ -121.726627, 37.747508 ], [ -121.725941, 37.746965 ], [ -121.725597, 37.746422 ], [ -121.725597, 37.745064 ], [ -121.725254, 37.744250 ], [ -121.724224, 37.743300 ], [ -121.723022, 37.741399 ], [ -121.723022, 37.740449 ], [ -121.724052, 37.738820 ], [ -121.724224, 37.718590 ], [ -121.724224, 37.716961 ], [ -121.738987, 37.717097 ], [ -121.741047, 37.716553 ], [ -121.741734, 37.717640 ], [ -121.742764, 37.718455 ], [ -121.743107, 37.718455 ], [ -121.744137, 37.717232 ], [ -121.744823, 37.716961 ], [ -121.747055, 37.716689 ], [ -121.750488, 37.715875 ], [ -121.751003, 37.715196 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.713023 ], [ -121.753922, 37.711257 ], [ -121.753922, 37.710714 ], [ -121.752892, 37.709764 ], [ -121.752892, 37.708541 ], [ -121.753407, 37.707726 ], [ -121.804905, 37.707726 ], [ -121.805077, 37.709628 ], [ -121.805420, 37.709764 ], [ -121.806278, 37.713566 ], [ -121.807137, 37.714924 ], [ -121.808510, 37.718590 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.721170 ], [ -121.809025, 37.722392 ], [ -121.808510, 37.724293 ], [ -121.808510, 37.726058 ], [ -121.809368, 37.728774 ], [ -121.808681, 37.730403 ], [ -121.808681, 37.733797 ], [ -121.808338, 37.735969 ], [ -121.809368, 37.738277 ], [ -121.809368, 37.741535 ], [ -121.810226, 37.742485 ], [ -121.813831, 37.745200 ], [ -121.813831, 37.746422 ], [ -121.811943, 37.751444 ], [ -121.811943, 37.752394 ], [ -121.812630, 37.754294 ], [ -121.791859, 37.759044 ], [ -121.739330, 37.772072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.739330, 37.772072 ], [ -121.738300, 37.771665 ], [ -121.736927, 37.771529 ], [ -121.735554, 37.770850 ], [ -121.735039, 37.770172 ], [ -121.734867, 37.768951 ], [ -121.734180, 37.768272 ], [ -121.733837, 37.767458 ], [ -121.734180, 37.766508 ], [ -121.735382, 37.765694 ], [ -121.736584, 37.763251 ], [ -121.736240, 37.760537 ], [ -121.735039, 37.759994 ], [ -121.734180, 37.758773 ], [ -121.732635, 37.757959 ], [ -121.732807, 37.757008 ], [ -121.734352, 37.755923 ], [ -121.734352, 37.755108 ], [ -121.731949, 37.752530 ], [ -121.730576, 37.749408 ], [ -121.728687, 37.748322 ], [ -121.726627, 37.747508 ], [ -121.725941, 37.746965 ], [ -121.725597, 37.746422 ], [ -121.725597, 37.745064 ], [ -121.725254, 37.744250 ], [ -121.724224, 37.743300 ], [ -121.723022, 37.741399 ], [ -121.723022, 37.740449 ], [ -121.724052, 37.738820 ], [ -121.724224, 37.718590 ], [ -121.724224, 37.716961 ], [ -121.738987, 37.717097 ], [ -121.741047, 37.716553 ], [ -121.741734, 37.717640 ], [ -121.742764, 37.718455 ], [ -121.743107, 37.718455 ], [ -121.744137, 37.717232 ], [ -121.744823, 37.716961 ], [ -121.747055, 37.716689 ], [ -121.750488, 37.715875 ], [ -121.751003, 37.715196 ], [ -121.751862, 37.714788 ], [ -121.752205, 37.713023 ], [ -121.753922, 37.711257 ], [ -121.753922, 37.710714 ], [ -121.752892, 37.709764 ], [ -121.752892, 37.708541 ], [ -121.753407, 37.707726 ], [ -121.804905, 37.707726 ], [ -121.805077, 37.709628 ], [ -121.805420, 37.709764 ], [ -121.806278, 37.713566 ], [ -121.807137, 37.714924 ], [ -121.808510, 37.718590 ], [ -121.808681, 37.718998 ], [ -121.808510, 37.721170 ], [ -121.809025, 37.722800 ], [ -121.808338, 37.724972 ], [ -121.809368, 37.728774 ], [ -121.808681, 37.730403 ], [ -121.808681, 37.733797 ], [ -121.808338, 37.735969 ], [ -121.809368, 37.738277 ], [ -121.809368, 37.741535 ], [ -121.810226, 37.742485 ], [ -121.813831, 37.745200 ], [ -121.813831, 37.746422 ], [ -121.811943, 37.751444 ], [ -121.811943, 37.752394 ], [ -121.812630, 37.754294 ], [ -121.791859, 37.759044 ], [ -121.739330, 37.772072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164364, 37.722664 ], [ -122.159557, 37.718590 ], [ -122.155781, 37.715196 ], [ -122.155609, 37.715196 ], [ -122.155609, 37.715060 ], [ -122.166767, 37.710443 ], [ -122.171745, 37.714109 ], [ -122.174492, 37.716825 ], [ -122.176037, 37.717776 ], [ -122.176723, 37.718455 ], [ -122.176380, 37.718590 ], [ -122.173290, 37.720356 ], [ -122.165222, 37.722257 ], [ -122.164364, 37.722664 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164192, 37.722664 ], [ -122.159557, 37.718590 ], [ -122.155781, 37.715196 ], [ -122.155609, 37.715196 ], [ -122.155609, 37.715060 ], [ -122.166767, 37.710443 ], [ -122.171745, 37.714109 ], [ -122.174492, 37.716825 ], [ -122.176037, 37.717776 ], [ -122.176723, 37.718455 ], [ -122.176380, 37.718590 ], [ -122.173290, 37.720356 ], [ -122.165222, 37.722257 ], [ -122.164192, 37.722664 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432400", "GEOID10": "06001432400", "NAME10": "4324", "NAMELSAD10": "Census Tract 4324", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6437229, "AWATER10": 1351272, "INTPTLAT10": "+37.7097451", "INTPTLON10": "-122.1898921" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.190285, 37.728774 ], [ -122.187538, 37.728095 ], [ -122.187366, 37.727823 ], [ -122.186508, 37.727552 ], [ -122.185650, 37.726601 ], [ -122.183933, 37.725787 ], [ -122.183762, 37.725515 ], [ -122.183075, 37.725379 ], [ -122.176895, 37.719269 ], [ -122.177067, 37.718998 ], [ -122.176037, 37.717776 ], [ -122.174492, 37.716825 ], [ -122.171745, 37.714109 ], [ -122.166595, 37.710443 ], [ -122.170715, 37.708813 ], [ -122.170887, 37.708677 ], [ -122.170200, 37.707726 ], [ -122.207794, 37.707726 ], [ -122.209339, 37.710850 ], [ -122.201786, 37.713159 ], [ -122.196980, 37.715603 ], [ -122.195091, 37.715603 ], [ -122.195606, 37.717776 ], [ -122.193546, 37.718590 ], [ -122.192688, 37.716825 ], [ -122.189083, 37.717776 ], [ -122.189941, 37.718590 ], [ -122.196293, 37.723750 ], [ -122.196808, 37.725244 ], [ -122.197495, 37.724972 ], [ -122.198009, 37.726466 ], [ -122.196808, 37.727009 ], [ -122.196293, 37.726058 ], [ -122.193031, 37.727823 ], [ -122.191830, 37.727145 ], [ -122.191143, 37.728095 ], [ -122.190800, 37.727959 ], [ -122.190285, 37.728774 ] ] ] } } , @@ -1708,7 +1708,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450400", "GEOID10": "06001450400", "NAME10": "4504", "NAMELSAD10": "Census Tract 4504", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3155086, "AWATER10": 0, "INTPTLAT10": "+37.7126931", "INTPTLON10": "-121.9324146" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.929531, 37.726194 ], [ -121.928844, 37.725515 ], [ -121.926613, 37.722121 ], [ -121.926441, 37.721306 ], [ -121.926785, 37.718590 ], [ -121.927128, 37.713973 ], [ -121.927643, 37.712751 ], [ -121.927643, 37.711936 ], [ -121.927128, 37.710171 ], [ -121.925240, 37.707726 ], [ -121.937084, 37.707726 ], [ -121.938629, 37.710986 ], [ -121.942406, 37.722935 ], [ -121.939144, 37.723614 ], [ -121.933479, 37.725108 ], [ -121.932621, 37.725515 ], [ -121.931248, 37.725651 ], [ -121.929531, 37.726194 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881638, 37.737327 ], [ -121.881809, 37.736376 ], [ -121.874428, 37.731489 ], [ -121.872883, 37.729453 ], [ -121.873569, 37.729317 ], [ -121.873226, 37.728774 ], [ -121.873226, 37.728366 ], [ -121.873569, 37.728095 ], [ -121.872883, 37.727552 ], [ -121.873055, 37.726466 ], [ -121.872540, 37.726194 ], [ -121.872540, 37.725108 ], [ -121.872025, 37.724701 ], [ -121.872025, 37.723207 ], [ -121.871510, 37.723207 ], [ -121.871853, 37.718590 ], [ -121.872025, 37.710035 ], [ -121.874084, 37.709764 ], [ -121.877861, 37.708541 ], [ -121.887989, 37.708541 ], [ -121.890392, 37.708949 ], [ -121.893139, 37.708949 ], [ -121.893139, 37.707726 ], [ -121.906700, 37.707726 ], [ -121.910305, 37.710443 ], [ -121.910133, 37.718590 ], [ -121.910133, 37.722528 ], [ -121.909447, 37.724022 ], [ -121.909447, 37.725244 ], [ -121.910648, 37.728774 ], [ -121.910477, 37.730403 ], [ -121.881638, 37.737327 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881638, 37.737327 ], [ -121.881809, 37.736376 ], [ -121.874428, 37.731489 ], [ -121.872883, 37.729453 ], [ -121.873569, 37.729317 ], [ -121.873226, 37.728774 ], [ -121.873226, 37.728366 ], [ -121.873569, 37.728095 ], [ -121.872883, 37.727552 ], [ -121.873055, 37.726466 ], [ -121.872540, 37.726194 ], [ -121.872540, 37.725108 ], [ -121.872025, 37.724701 ], [ -121.872025, 37.723207 ], [ -121.871510, 37.723207 ], [ -121.871853, 37.718590 ], [ -121.872025, 37.710035 ], [ -121.874084, 37.709764 ], [ -121.877861, 37.708541 ], [ -121.887989, 37.708541 ], [ -121.890392, 37.708949 ], [ -121.893139, 37.708949 ], [ -121.893139, 37.707726 ], [ -121.906528, 37.707726 ], [ -121.910305, 37.710443 ], [ -121.910133, 37.718590 ], [ -121.910133, 37.722528 ], [ -121.909447, 37.724022 ], [ -121.909447, 37.725244 ], [ -121.910648, 37.728774 ], [ -121.910477, 37.730403 ], [ -121.881638, 37.737327 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450101", "GEOID10": "06001450101", "NAME10": "4501.01", "NAMELSAD10": "Census Tract 4501.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1813349, "AWATER10": 0, "INTPTLAT10": "+37.7050938", "INTPTLON10": "-121.8851034" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.872025, 37.710035 ], [ -121.872025, 37.707726 ], [ -121.893139, 37.707726 ], [ -121.893139, 37.708949 ], [ -121.890392, 37.708949 ], [ -121.887989, 37.708541 ], [ -121.877861, 37.708541 ], [ -121.874084, 37.709764 ], [ -121.872025, 37.710035 ] ] ] } } , @@ -1750,7 +1750,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 164, "y": 396 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078018, 37.495086 ], [ -122.072868, 37.494473 ], [ -122.065916, 37.492907 ], [ -122.061453, 37.491613 ], [ -122.061539, 37.486641 ], [ -122.060766, 37.474926 ], [ -122.059822, 37.469477 ], [ -122.055960, 37.463959 ], [ -122.048664, 37.461642 ], [ -122.045660, 37.461778 ], [ -122.044544, 37.460620 ], [ -122.046518, 37.459530 ], [ -122.047806, 37.458985 ], [ -122.050295, 37.458917 ], [ -122.051239, 37.458985 ], [ -122.051926, 37.459258 ], [ -122.081451, 37.477787 ], [ -122.103939, 37.493656 ], [ -122.098532, 37.494882 ], [ -122.078018, 37.495086 ] ] ], [ [ [ -122.258434, 37.724022 ], [ -122.256546, 37.721238 ], [ -122.252426, 37.718590 ], [ -122.216120, 37.695503 ], [ -122.213287, 37.695367 ], [ -122.209082, 37.696114 ], [ -122.205992, 37.702022 ], [ -122.204361, 37.703788 ], [ -122.200413, 37.700800 ], [ -122.197924, 37.698491 ], [ -122.197151, 37.692446 ], [ -122.192345, 37.687896 ], [ -122.185993, 37.684364 ], [ -122.178183, 37.677095 ], [ -122.172174, 37.673155 ], [ -122.170887, 37.671117 ], [ -122.167025, 37.667245 ], [ -122.163849, 37.655354 ], [ -122.161102, 37.646791 ], [ -122.160158, 37.641015 ], [ -122.158442, 37.632926 ], [ -122.157497, 37.621574 ], [ -122.162476, 37.614707 ], [ -122.155867, 37.611512 ], [ -122.152433, 37.599068 ], [ -122.155008, 37.591111 ], [ -122.153463, 37.582133 ], [ -122.141018, 37.562201 ], [ -122.135782, 37.558867 ], [ -122.128572, 37.548116 ], [ -122.120419, 37.532803 ], [ -122.118530, 37.526405 ], [ -122.117243, 37.513675 ], [ -122.117329, 37.506866 ], [ -122.149429, 37.546143 ], [ -122.167282, 37.568732 ], [ -122.186766, 37.592880 ], [ -122.246675, 37.665682 ], [ -122.254658, 37.675737 ], [ -122.281780, 37.708202 ], [ -122.288303, 37.718590 ], [ -122.291822, 37.724022 ], [ -122.258434, 37.724022 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078018, 37.495086 ], [ -122.072868, 37.494473 ], [ -122.065916, 37.492907 ], [ -122.061453, 37.491613 ], [ -122.061539, 37.486641 ], [ -122.060766, 37.474926 ], [ -122.059822, 37.469477 ], [ -122.055960, 37.463959 ], [ -122.048664, 37.461642 ], [ -122.045660, 37.461778 ], [ -122.044544, 37.460620 ], [ -122.046518, 37.459530 ], [ -122.047806, 37.458985 ], [ -122.048922, 37.458849 ], [ -122.050295, 37.458849 ], [ -122.051239, 37.458985 ], [ -122.051926, 37.459258 ], [ -122.081451, 37.477787 ], [ -122.103939, 37.493656 ], [ -122.098532, 37.494882 ], [ -122.078018, 37.495086 ] ] ], [ [ [ -122.258434, 37.724022 ], [ -122.256546, 37.721238 ], [ -122.252426, 37.718590 ], [ -122.216120, 37.695503 ], [ -122.213287, 37.695367 ], [ -122.209082, 37.696114 ], [ -122.205992, 37.702022 ], [ -122.204361, 37.703788 ], [ -122.200413, 37.700800 ], [ -122.197924, 37.698491 ], [ -122.197151, 37.692446 ], [ -122.192345, 37.687896 ], [ -122.185993, 37.684364 ], [ -122.178183, 37.677095 ], [ -122.172089, 37.673155 ], [ -122.170887, 37.671117 ], [ -122.167025, 37.667245 ], [ -122.163849, 37.655354 ], [ -122.161102, 37.646791 ], [ -122.160158, 37.641015 ], [ -122.158442, 37.632926 ], [ -122.157497, 37.621574 ], [ -122.162476, 37.614707 ], [ -122.155867, 37.611512 ], [ -122.152433, 37.599068 ], [ -122.155008, 37.591111 ], [ -122.153463, 37.582133 ], [ -122.141018, 37.562201 ], [ -122.135782, 37.558867 ], [ -122.128572, 37.548116 ], [ -122.120419, 37.532803 ], [ -122.118530, 37.526405 ], [ -122.117243, 37.513675 ], [ -122.117329, 37.506866 ], [ -122.149429, 37.546143 ], [ -122.167282, 37.568732 ], [ -122.186766, 37.592880 ], [ -122.246675, 37.665682 ], [ -122.254658, 37.675737 ], [ -122.281780, 37.708202 ], [ -122.288303, 37.718590 ], [ -122.291822, 37.724022 ], [ -122.258434, 37.724022 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.230797, 37.724022 ], [ -122.236118, 37.718658 ], [ -122.236891, 37.719066 ], [ -122.243843, 37.724022 ], [ -122.230797, 37.724022 ] ] ], [ [ [ -122.253284, 37.724022 ], [ -122.256546, 37.721238 ], [ -122.258434, 37.724022 ], [ -122.253284, 37.724022 ] ] ] ] } } , @@ -1768,7 +1768,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432800", "GEOID10": "06001432800", "NAME10": "4328", "NAMELSAD10": "Census Tract 4328", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3661599, "AWATER10": 0, "INTPTLAT10": "+37.7212241", "INTPTLON10": "-122.1245218" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.115612, 37.724022 ], [ -122.114840, 37.723546 ], [ -122.112350, 37.720491 ], [ -122.109861, 37.718590 ], [ -122.105827, 37.715331 ], [ -122.104712, 37.714720 ], [ -122.107630, 37.713362 ], [ -122.108488, 37.713091 ], [ -122.110119, 37.712887 ], [ -122.112179, 37.713023 ], [ -122.115097, 37.713838 ], [ -122.115870, 37.714313 ], [ -122.116470, 37.715128 ], [ -122.117243, 37.716621 ], [ -122.118187, 37.717368 ], [ -122.119389, 37.717776 ], [ -122.120504, 37.717708 ], [ -122.121277, 37.717300 ], [ -122.121706, 37.716553 ], [ -122.121620, 37.714245 ], [ -122.120762, 37.712276 ], [ -122.120676, 37.711393 ], [ -122.121105, 37.710578 ], [ -122.122049, 37.709356 ], [ -122.122564, 37.708541 ], [ -122.124882, 37.710239 ], [ -122.128315, 37.712072 ], [ -122.130032, 37.713430 ], [ -122.131233, 37.714924 ], [ -122.133121, 37.718590 ], [ -122.134151, 37.720423 ], [ -122.136812, 37.724022 ], [ -122.115612, 37.724022 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.036562, 37.724022 ], [ -122.037163, 37.722732 ], [ -122.037764, 37.720831 ], [ -122.038279, 37.719812 ], [ -122.038279, 37.719337 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.717640 ], [ -122.038450, 37.716961 ], [ -122.038536, 37.717165 ], [ -122.038965, 37.716893 ], [ -122.039566, 37.715942 ], [ -122.039738, 37.715331 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.714381 ], [ -122.039738, 37.714109 ], [ -122.040424, 37.712004 ], [ -122.040253, 37.710782 ], [ -122.040253, 37.709899 ], [ -122.040424, 37.709696 ], [ -122.040424, 37.709085 ], [ -122.040854, 37.707862 ], [ -122.041798, 37.706165 ], [ -122.042227, 37.705893 ], [ -122.043257, 37.705553 ], [ -122.043772, 37.705078 ], [ -122.043943, 37.704399 ], [ -122.043686, 37.703380 ], [ -122.044115, 37.702769 ], [ -122.044973, 37.702362 ], [ -122.045574, 37.702362 ], [ -122.050037, 37.702905 ], [ -122.050896, 37.702701 ], [ -122.052011, 37.702837 ], [ -122.052870, 37.702566 ], [ -122.053385, 37.702226 ], [ -122.053471, 37.702294 ], [ -122.054415, 37.701547 ], [ -122.054501, 37.702022 ], [ -122.055788, 37.702769 ], [ -122.055788, 37.703109 ], [ -122.055359, 37.703788 ], [ -122.055445, 37.703924 ], [ -122.056561, 37.704127 ], [ -122.056389, 37.704467 ], [ -122.056475, 37.705214 ], [ -122.056131, 37.705553 ], [ -122.055788, 37.706504 ], [ -122.055531, 37.708813 ], [ -122.055616, 37.709424 ], [ -122.056217, 37.710850 ], [ -122.056131, 37.710986 ], [ -122.055702, 37.711122 ], [ -122.056046, 37.711733 ], [ -122.055531, 37.711936 ], [ -122.055702, 37.713023 ], [ -122.055445, 37.713362 ], [ -122.055702, 37.713702 ], [ -122.055788, 37.714109 ], [ -122.055016, 37.714856 ], [ -122.054243, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054157, 37.716757 ], [ -122.054501, 37.717640 ], [ -122.054415, 37.718590 ], [ -122.054415, 37.719269 ], [ -122.054071, 37.720423 ], [ -122.054329, 37.721034 ], [ -122.054243, 37.721374 ], [ -122.052956, 37.722392 ], [ -122.052097, 37.723682 ], [ -122.052183, 37.724022 ], [ -122.036562, 37.724022 ] ] ], [ [ [ -122.063942, 37.724022 ], [ -122.065573, 37.720220 ], [ -122.065659, 37.720220 ], [ -122.068062, 37.720627 ], [ -122.075272, 37.720763 ], [ -122.075958, 37.721442 ], [ -122.078619, 37.723411 ], [ -122.079220, 37.724022 ], [ -122.063942, 37.724022 ] ] ], [ [ [ -122.104797, 37.724022 ], [ -122.107286, 37.721510 ], [ -122.112007, 37.724022 ], [ -122.104797, 37.724022 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.036562, 37.724022 ], [ -122.037163, 37.722732 ], [ -122.037764, 37.720831 ], [ -122.038279, 37.719812 ], [ -122.038279, 37.719337 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718115 ], [ -122.038021, 37.717640 ], [ -122.038450, 37.716961 ], [ -122.038536, 37.717165 ], [ -122.038965, 37.716893 ], [ -122.039566, 37.715942 ], [ -122.039738, 37.715331 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.714381 ], [ -122.039738, 37.714109 ], [ -122.040424, 37.712004 ], [ -122.040253, 37.710782 ], [ -122.040253, 37.709899 ], [ -122.040424, 37.709696 ], [ -122.040424, 37.709085 ], [ -122.040854, 37.707862 ], [ -122.041798, 37.706165 ], [ -122.042227, 37.705893 ], [ -122.043257, 37.705553 ], [ -122.043772, 37.705078 ], [ -122.043943, 37.704399 ], [ -122.043686, 37.703380 ], [ -122.044115, 37.702769 ], [ -122.044973, 37.702362 ], [ -122.045574, 37.702362 ], [ -122.050037, 37.702905 ], [ -122.050896, 37.702701 ], [ -122.052011, 37.702837 ], [ -122.052870, 37.702566 ], [ -122.053385, 37.702226 ], [ -122.053471, 37.702294 ], [ -122.054415, 37.701547 ], [ -122.054501, 37.702022 ], [ -122.055788, 37.702769 ], [ -122.055788, 37.703109 ], [ -122.055359, 37.703788 ], [ -122.055445, 37.703924 ], [ -122.056561, 37.704127 ], [ -122.056389, 37.704467 ], [ -122.056475, 37.705214 ], [ -122.056131, 37.705553 ], [ -122.055788, 37.706504 ], [ -122.055531, 37.708813 ], [ -122.055616, 37.709424 ], [ -122.056217, 37.710850 ], [ -122.056131, 37.710986 ], [ -122.055702, 37.711122 ], [ -122.056046, 37.711733 ], [ -122.055531, 37.711936 ], [ -122.055702, 37.713023 ], [ -122.055445, 37.713362 ], [ -122.055702, 37.713702 ], [ -122.055788, 37.714109 ], [ -122.055016, 37.714856 ], [ -122.054243, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054157, 37.716757 ], [ -122.054501, 37.717640 ], [ -122.054415, 37.718590 ], [ -122.054415, 37.719269 ], [ -122.054071, 37.720423 ], [ -122.054329, 37.721034 ], [ -122.054243, 37.721374 ], [ -122.052956, 37.722392 ], [ -122.052097, 37.723682 ], [ -122.052183, 37.724022 ], [ -122.036562, 37.724022 ] ] ], [ [ [ -122.063942, 37.724022 ], [ -122.065573, 37.720220 ], [ -122.065659, 37.720220 ], [ -122.068062, 37.720627 ], [ -122.075272, 37.720763 ], [ -122.075958, 37.721442 ], [ -122.078619, 37.723411 ], [ -122.079220, 37.724022 ], [ -122.063942, 37.724022 ] ] ], [ [ [ -122.104797, 37.724022 ], [ -122.107286, 37.721510 ], [ -122.112007, 37.724022 ], [ -122.104797, 37.724022 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432400", "GEOID10": "06001432400", "NAME10": "4324", "NAMELSAD10": "Census Tract 4324", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6437229, "AWATER10": 1351272, "INTPTLAT10": "+37.7097451", "INTPTLON10": "-122.1898921" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.181873, 37.724022 ], [ -122.176981, 37.719269 ], [ -122.177153, 37.719066 ], [ -122.176723, 37.718590 ], [ -122.176037, 37.717776 ], [ -122.174749, 37.717097 ], [ -122.173119, 37.715399 ], [ -122.170630, 37.713159 ], [ -122.166681, 37.710375 ], [ -122.170801, 37.708677 ], [ -122.167540, 37.703652 ], [ -122.182817, 37.697268 ], [ -122.186422, 37.695639 ], [ -122.187452, 37.696793 ], [ -122.191143, 37.695774 ], [ -122.191916, 37.695367 ], [ -122.191658, 37.695367 ], [ -122.197151, 37.692446 ], [ -122.197924, 37.698491 ], [ -122.200413, 37.700800 ], [ -122.204361, 37.703788 ], [ -122.205391, 37.702701 ], [ -122.209253, 37.710782 ], [ -122.201786, 37.713091 ], [ -122.197065, 37.715399 ], [ -122.197065, 37.715603 ], [ -122.195005, 37.715603 ], [ -122.195606, 37.717776 ], [ -122.193632, 37.718590 ], [ -122.193546, 37.718590 ], [ -122.192688, 37.716757 ], [ -122.188997, 37.717843 ], [ -122.189856, 37.718590 ], [ -122.196379, 37.723818 ], [ -122.196465, 37.724022 ], [ -122.181873, 37.724022 ] ] ] } } , @@ -1786,13 +1786,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433600", "GEOID10": "06001433600", "NAME10": "4336", "NAMELSAD10": "Census Tract 4336", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1579636, "AWATER10": 0, "INTPTLAT10": "+37.6860081", "INTPTLON10": "-122.1437942" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.140846, 37.692311 ], [ -122.138872, 37.690816 ], [ -122.138786, 37.690681 ], [ -122.135525, 37.688915 ], [ -122.129002, 37.684364 ], [ -122.129946, 37.684432 ], [ -122.130718, 37.684907 ], [ -122.131405, 37.685111 ], [ -122.132435, 37.684907 ], [ -122.133036, 37.684975 ], [ -122.133465, 37.684500 ], [ -122.134151, 37.684364 ], [ -122.134838, 37.684432 ], [ -122.136297, 37.684432 ], [ -122.138186, 37.684703 ], [ -122.138872, 37.684703 ], [ -122.139988, 37.684364 ], [ -122.140760, 37.683888 ], [ -122.141533, 37.682937 ], [ -122.141876, 37.682666 ], [ -122.143250, 37.682054 ], [ -122.144022, 37.681579 ], [ -122.144537, 37.679541 ], [ -122.150974, 37.676824 ], [ -122.151403, 37.677299 ], [ -122.149858, 37.677978 ], [ -122.150030, 37.678386 ], [ -122.150030, 37.680967 ], [ -122.150545, 37.681647 ], [ -122.150803, 37.682801 ], [ -122.151232, 37.683888 ], [ -122.151232, 37.684703 ], [ -122.151060, 37.685586 ], [ -122.151146, 37.689662 ], [ -122.151318, 37.690069 ], [ -122.151747, 37.690613 ], [ -122.151747, 37.691224 ], [ -122.140503, 37.691496 ], [ -122.140160, 37.691631 ], [ -122.140846, 37.692311 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703652 ], [ -122.165823, 37.701139 ], [ -122.165651, 37.700053 ], [ -122.162561, 37.695095 ], [ -122.162304, 37.692786 ], [ -122.162476, 37.692650 ], [ -122.163076, 37.692446 ], [ -122.162819, 37.690884 ], [ -122.161961, 37.688032 ], [ -122.160587, 37.685994 ], [ -122.155867, 37.679813 ], [ -122.158270, 37.679201 ], [ -122.158356, 37.679065 ], [ -122.152262, 37.672544 ], [ -122.154837, 37.671253 ], [ -122.157755, 37.669419 ], [ -122.158012, 37.669758 ], [ -122.162390, 37.667312 ], [ -122.165480, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167025, 37.667245 ], [ -122.170887, 37.671117 ], [ -122.172174, 37.673155 ], [ -122.178183, 37.677095 ], [ -122.185993, 37.684364 ], [ -122.192345, 37.687896 ], [ -122.197151, 37.692446 ], [ -122.191658, 37.695367 ], [ -122.191916, 37.695367 ], [ -122.191143, 37.695774 ], [ -122.187452, 37.696793 ], [ -122.186422, 37.695639 ], [ -122.182817, 37.697268 ], [ -122.167540, 37.703652 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703652 ], [ -122.165823, 37.701139 ], [ -122.165651, 37.700053 ], [ -122.162561, 37.695095 ], [ -122.162304, 37.692786 ], [ -122.162476, 37.692650 ], [ -122.163076, 37.692446 ], [ -122.162819, 37.690884 ], [ -122.161961, 37.688032 ], [ -122.160587, 37.685994 ], [ -122.155867, 37.679813 ], [ -122.158270, 37.679201 ], [ -122.158356, 37.679065 ], [ -122.152262, 37.672544 ], [ -122.154837, 37.671253 ], [ -122.157755, 37.669419 ], [ -122.158012, 37.669758 ], [ -122.162390, 37.667312 ], [ -122.165480, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167025, 37.667245 ], [ -122.170887, 37.671117 ], [ -122.172089, 37.673155 ], [ -122.178183, 37.677095 ], [ -122.185993, 37.684364 ], [ -122.192345, 37.687896 ], [ -122.197151, 37.692446 ], [ -122.191658, 37.695367 ], [ -122.191916, 37.695367 ], [ -122.191143, 37.695774 ], [ -122.187452, 37.696793 ], [ -122.186422, 37.695639 ], [ -122.182817, 37.697268 ], [ -122.167540, 37.703652 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433500", "GEOID10": "06001433500", "NAME10": "4335", "NAMELSAD10": "Census Tract 4335", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1234823, "AWATER10": 0, "INTPTLAT10": "+37.6845009", "INTPTLON10": "-122.1553145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.151747, 37.691224 ], [ -122.151747, 37.690613 ], [ -122.151318, 37.690069 ], [ -122.151146, 37.689662 ], [ -122.151060, 37.685586 ], [ -122.151232, 37.684703 ], [ -122.151232, 37.683888 ], [ -122.150803, 37.682801 ], [ -122.150545, 37.681647 ], [ -122.150030, 37.680967 ], [ -122.150030, 37.678386 ], [ -122.149858, 37.677978 ], [ -122.151403, 37.677299 ], [ -122.150974, 37.676824 ], [ -122.154665, 37.675125 ], [ -122.158356, 37.679065 ], [ -122.158270, 37.679201 ], [ -122.155867, 37.679813 ], [ -122.161703, 37.687556 ], [ -122.162132, 37.688371 ], [ -122.162819, 37.690884 ], [ -122.151747, 37.691224 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435900", "GEOID10": "06001435900", "NAME10": "4359", "NAMELSAD10": "Census Tract 4359", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2411345, "AWATER10": 17052, "INTPTLAT10": "+37.6724681", "INTPTLON10": "-122.1473050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138700, 37.684703 ], [ -122.136984, 37.679609 ], [ -122.139988, 37.678386 ], [ -122.137671, 37.674650 ], [ -122.140160, 37.673631 ], [ -122.138100, 37.670981 ], [ -122.138186, 37.670845 ], [ -122.138443, 37.670845 ], [ -122.146940, 37.666837 ], [ -122.141876, 37.661333 ], [ -122.144451, 37.661537 ], [ -122.146940, 37.664391 ], [ -122.160845, 37.664459 ], [ -122.162647, 37.667312 ], [ -122.162390, 37.667312 ], [ -122.158012, 37.669758 ], [ -122.157755, 37.669419 ], [ -122.154837, 37.671253 ], [ -122.152262, 37.672544 ], [ -122.154665, 37.675125 ], [ -122.152863, 37.676008 ], [ -122.144537, 37.679541 ], [ -122.144022, 37.681579 ], [ -122.143250, 37.682054 ], [ -122.141876, 37.682666 ], [ -122.141533, 37.682937 ], [ -122.140760, 37.683888 ], [ -122.140245, 37.684228 ], [ -122.138700, 37.684703 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436000", "GEOID10": "06001436000", "NAME10": "4360", "NAMELSAD10": "Census Tract 4360", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1314438, "AWATER10": 0, "INTPTLAT10": "+37.6691812", "INTPTLON10": "-122.1375262" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.136984, 37.679609 ], [ -122.131233, 37.670709 ], [ -122.131319, 37.669622 ], [ -122.130976, 37.665138 ], [ -122.134323, 37.664595 ], [ -122.134838, 37.663779 ], [ -122.134752, 37.663236 ], [ -122.134924, 37.663100 ], [ -122.139473, 37.662828 ], [ -122.140760, 37.663100 ], [ -122.143764, 37.663304 ], [ -122.146940, 37.666837 ], [ -122.138443, 37.670845 ], [ -122.138186, 37.670845 ], [ -122.138100, 37.670981 ], [ -122.140160, 37.673631 ], [ -122.137671, 37.674650 ], [ -122.139988, 37.678386 ], [ -122.136984, 37.679609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435800", "GEOID10": "06001435800", "NAME10": "4358", "NAMELSAD10": "Census Tract 4358", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1304875, "AWATER10": 0, "INTPTLAT10": "+37.6793691", "INTPTLON10": "-122.1296018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.131405, 37.685111 ], [ -122.130718, 37.684907 ], [ -122.129946, 37.684432 ], [ -122.129002, 37.684364 ], [ -122.122908, 37.680152 ], [ -122.117500, 37.676552 ], [ -122.123508, 37.674174 ], [ -122.126169, 37.678386 ], [ -122.127028, 37.678046 ], [ -122.125826, 37.676144 ], [ -122.132950, 37.673291 ], [ -122.136984, 37.679609 ], [ -122.138700, 37.684703 ], [ -122.137070, 37.684568 ], [ -122.136297, 37.684432 ], [ -122.134838, 37.684432 ], [ -122.134151, 37.684364 ], [ -122.133465, 37.684500 ], [ -122.133036, 37.684975 ], [ -122.132435, 37.684907 ], [ -122.131405, 37.685111 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436000", "GEOID10": "06001436000", "NAME10": "4360", "NAMELSAD10": "Census Tract 4360", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1314438, "AWATER10": 0, "INTPTLAT10": "+37.6691812", "INTPTLON10": "-122.1375262" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.136984, 37.679609 ], [ -122.131233, 37.670709 ], [ -122.131319, 37.669622 ], [ -122.130976, 37.665138 ], [ -122.134323, 37.664595 ], [ -122.134838, 37.663779 ], [ -122.134752, 37.663236 ], [ -122.134924, 37.663100 ], [ -122.139473, 37.662828 ], [ -122.140760, 37.663100 ], [ -122.143764, 37.663304 ], [ -122.146940, 37.666837 ], [ -122.138443, 37.670845 ], [ -122.138186, 37.670845 ], [ -122.138186, 37.671049 ], [ -122.140160, 37.673631 ], [ -122.137671, 37.674650 ], [ -122.139988, 37.678386 ], [ -122.136984, 37.679609 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430500", "GEOID10": "06001430500", "NAME10": "4305", "NAMELSAD10": "Census Tract 4305", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2610283, "AWATER10": 0, "INTPTLAT10": "+37.7049110", "INTPTLON10": "-122.1091519" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.119389, 37.717776 ], [ -122.118187, 37.717368 ], [ -122.117243, 37.716621 ], [ -122.116470, 37.715128 ], [ -122.115870, 37.714313 ], [ -122.115526, 37.714109 ], [ -122.113380, 37.713294 ], [ -122.111578, 37.712887 ], [ -122.110119, 37.712887 ], [ -122.108831, 37.713023 ], [ -122.107630, 37.713362 ], [ -122.105055, 37.714652 ], [ -122.104540, 37.714788 ], [ -122.103338, 37.714720 ], [ -122.104454, 37.714177 ], [ -122.105055, 37.714449 ], [ -122.105227, 37.714381 ], [ -122.105312, 37.713226 ], [ -122.105570, 37.712887 ], [ -122.105570, 37.712683 ], [ -122.105141, 37.711122 ], [ -122.105141, 37.710782 ], [ -122.106342, 37.709696 ], [ -122.106686, 37.708745 ], [ -122.105999, 37.707726 ], [ -122.103767, 37.705621 ], [ -122.103510, 37.703992 ], [ -122.103167, 37.703313 ], [ -122.102308, 37.702701 ], [ -122.101793, 37.702633 ], [ -122.101793, 37.702362 ], [ -122.102308, 37.701615 ], [ -122.102308, 37.701343 ], [ -122.101965, 37.701139 ], [ -122.101107, 37.701207 ], [ -122.100849, 37.701072 ], [ -122.100248, 37.700189 ], [ -122.097759, 37.695503 ], [ -122.097244, 37.695639 ], [ -122.096558, 37.695503 ], [ -122.096128, 37.695706 ], [ -122.096043, 37.695571 ], [ -122.095699, 37.694280 ], [ -122.095013, 37.693329 ], [ -122.095013, 37.692311 ], [ -122.093725, 37.691156 ], [ -122.093554, 37.691224 ], [ -122.093296, 37.691088 ], [ -122.091837, 37.691835 ], [ -122.093039, 37.690952 ], [ -122.093983, 37.690069 ], [ -122.095785, 37.689866 ], [ -122.097158, 37.690001 ], [ -122.098360, 37.690273 ], [ -122.099991, 37.691020 ], [ -122.101879, 37.692854 ], [ -122.106771, 37.698491 ], [ -122.108746, 37.700460 ], [ -122.116642, 37.705282 ], [ -122.120934, 37.707319 ], [ -122.122564, 37.708541 ], [ -122.122049, 37.709356 ], [ -122.121105, 37.710578 ], [ -122.120676, 37.711393 ], [ -122.120676, 37.712004 ], [ -122.121534, 37.714041 ], [ -122.121706, 37.714788 ], [ -122.121706, 37.716553 ], [ -122.121534, 37.716893 ], [ -122.121105, 37.717436 ], [ -122.120504, 37.717708 ], [ -122.119389, 37.717776 ] ] ] } } , @@ -1800,7 +1802,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433800", "GEOID10": "06001433800", "NAME10": "4338", "NAMELSAD10": "Census Tract 4338", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1600719, "AWATER10": 0, "INTPTLAT10": "+37.6988143", "INTPTLON10": "-122.1234820" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124195, 37.709831 ], [ -122.120934, 37.707319 ], [ -122.116642, 37.705282 ], [ -122.116899, 37.704874 ], [ -122.117071, 37.703720 ], [ -122.117243, 37.703448 ], [ -122.119646, 37.701072 ], [ -122.120934, 37.699985 ], [ -122.118874, 37.698559 ], [ -122.118788, 37.698355 ], [ -122.118874, 37.694009 ], [ -122.119045, 37.691767 ], [ -122.118959, 37.689458 ], [ -122.126513, 37.690613 ], [ -122.127800, 37.690748 ], [ -122.130032, 37.692718 ], [ -122.130032, 37.696929 ], [ -122.128487, 37.698083 ], [ -122.125740, 37.699781 ], [ -122.123680, 37.701751 ], [ -122.123680, 37.701886 ], [ -122.123852, 37.702022 ], [ -122.129259, 37.705825 ], [ -122.125225, 37.708949 ], [ -122.124195, 37.709831 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435700", "GEOID10": "06001435700", "NAME10": "4357", "NAMELSAD10": "Census Tract 4357", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1325907, "AWATER10": 0, "INTPTLAT10": "+37.6786494", "INTPTLON10": "-122.1160735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.117844, 37.686062 ], [ -122.117157, 37.685926 ], [ -122.116814, 37.685654 ], [ -122.116556, 37.684092 ], [ -122.109690, 37.676416 ], [ -122.110720, 37.675737 ], [ -122.100248, 37.666565 ], [ -122.101192, 37.666429 ], [ -122.103338, 37.666497 ], [ -122.103510, 37.666769 ], [ -122.110119, 37.672544 ], [ -122.111578, 37.672000 ], [ -122.113037, 37.673291 ], [ -122.116728, 37.676008 ], [ -122.122908, 37.680152 ], [ -122.129002, 37.684364 ], [ -122.128744, 37.684228 ], [ -122.128658, 37.684703 ], [ -122.128229, 37.685043 ], [ -122.127800, 37.685179 ], [ -122.126427, 37.685043 ], [ -122.125998, 37.685315 ], [ -122.125740, 37.685722 ], [ -122.125397, 37.685790 ], [ -122.119303, 37.685790 ], [ -122.117844, 37.686062 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435700", "GEOID10": "06001435700", "NAME10": "4357", "NAMELSAD10": "Census Tract 4357", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1325907, "AWATER10": 0, "INTPTLAT10": "+37.6786494", "INTPTLON10": "-122.1160735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.117844, 37.686062 ], [ -122.117157, 37.685926 ], [ -122.116814, 37.685654 ], [ -122.116556, 37.684092 ], [ -122.109690, 37.676416 ], [ -122.110720, 37.675737 ], [ -122.100248, 37.666565 ], [ -122.101192, 37.666429 ], [ -122.103338, 37.666497 ], [ -122.103510, 37.666769 ], [ -122.110119, 37.672544 ], [ -122.111578, 37.672000 ], [ -122.113295, 37.673495 ], [ -122.116728, 37.676008 ], [ -122.122908, 37.680152 ], [ -122.129002, 37.684364 ], [ -122.128744, 37.684228 ], [ -122.128658, 37.684703 ], [ -122.128229, 37.685043 ], [ -122.127800, 37.685179 ], [ -122.126427, 37.685043 ], [ -122.125998, 37.685315 ], [ -122.125740, 37.685722 ], [ -122.125397, 37.685790 ], [ -122.119303, 37.685790 ], [ -122.117844, 37.686062 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433900", "GEOID10": "06001433900", "NAME10": "4339", "NAMELSAD10": "Census Tract 4339", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 816478, "AWATER10": 0, "INTPTLAT10": "+37.6992653", "INTPTLON10": "-122.1135398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.116642, 37.705282 ], [ -122.108746, 37.700460 ], [ -122.106171, 37.697812 ], [ -122.111835, 37.693601 ], [ -122.120934, 37.699985 ], [ -122.119646, 37.701072 ], [ -122.117243, 37.703448 ], [ -122.117071, 37.703720 ], [ -122.116899, 37.704874 ], [ -122.116642, 37.705282 ] ] ] } } , @@ -1814,9 +1816,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "434000", "GEOID10": "06001434000", "NAME10": "4340", "NAMELSAD10": "Census Tract 4340", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1205972, "AWATER10": 0, "INTPTLAT10": "+37.6923654", "INTPTLON10": "-122.1103206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.118874, 37.698559 ], [ -122.111835, 37.693601 ], [ -122.106171, 37.697812 ], [ -122.101879, 37.692854 ], [ -122.099991, 37.691020 ], [ -122.099133, 37.690613 ], [ -122.099047, 37.689662 ], [ -122.111320, 37.688439 ], [ -122.114239, 37.688575 ], [ -122.118959, 37.689458 ], [ -122.119045, 37.691767 ], [ -122.118874, 37.694009 ], [ -122.118874, 37.698559 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435800", "GEOID10": "06001435800", "NAME10": "4358", "NAMELSAD10": "Census Tract 4358", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1304875, "AWATER10": 0, "INTPTLAT10": "+37.6793691", "INTPTLON10": "-122.1296018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.131405, 37.685111 ], [ -122.130718, 37.684907 ], [ -122.129946, 37.684432 ], [ -122.129002, 37.684364 ], [ -122.122908, 37.680152 ], [ -122.117500, 37.676552 ], [ -122.123508, 37.674174 ], [ -122.126169, 37.678386 ], [ -122.127028, 37.678046 ], [ -122.125826, 37.676144 ], [ -122.132950, 37.673291 ], [ -122.136984, 37.679609 ], [ -122.138700, 37.684703 ], [ -122.137070, 37.684568 ], [ -122.136297, 37.684432 ], [ -122.134838, 37.684432 ], [ -122.134151, 37.684364 ], [ -122.133465, 37.684500 ], [ -122.133036, 37.684975 ], [ -122.132435, 37.684907 ], [ -122.131405, 37.685111 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436100", "GEOID10": "06001436100", "NAME10": "4361", "NAMELSAD10": "Census Tract 4361", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1248056, "AWATER10": 0, "INTPTLAT10": "+37.6718054", "INTPTLON10": "-122.1235777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.126169, 37.678386 ], [ -122.123508, 37.674174 ], [ -122.117500, 37.676552 ], [ -122.113037, 37.673291 ], [ -122.111578, 37.672000 ], [ -122.120075, 37.668671 ], [ -122.120590, 37.669554 ], [ -122.123594, 37.668671 ], [ -122.123423, 37.668196 ], [ -122.127972, 37.667856 ], [ -122.128143, 37.665614 ], [ -122.128229, 37.665478 ], [ -122.127972, 37.665410 ], [ -122.127714, 37.665002 ], [ -122.128143, 37.665138 ], [ -122.130976, 37.665138 ], [ -122.131319, 37.669622 ], [ -122.131233, 37.670709 ], [ -122.132950, 37.673291 ], [ -122.125826, 37.676144 ], [ -122.127028, 37.678046 ], [ -122.126169, 37.678386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436100", "GEOID10": "06001436100", "NAME10": "4361", "NAMELSAD10": "Census Tract 4361", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1248056, "AWATER10": 0, "INTPTLAT10": "+37.6718054", "INTPTLON10": "-122.1235777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.126169, 37.678386 ], [ -122.123508, 37.674174 ], [ -122.117500, 37.676552 ], [ -122.113295, 37.673495 ], [ -122.111578, 37.672000 ], [ -122.120075, 37.668671 ], [ -122.120590, 37.669554 ], [ -122.123594, 37.668671 ], [ -122.123423, 37.668196 ], [ -122.127972, 37.667856 ], [ -122.128143, 37.665614 ], [ -122.128229, 37.665478 ], [ -122.127972, 37.665410 ], [ -122.127714, 37.665002 ], [ -122.128143, 37.665138 ], [ -122.130976, 37.665138 ], [ -122.131319, 37.669622 ], [ -122.131233, 37.670709 ], [ -122.132950, 37.673291 ], [ -122.125826, 37.676144 ], [ -122.127028, 37.678046 ], [ -122.126169, 37.678386 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436900", "GEOID10": "06001436900", "NAME10": "4369", "NAMELSAD10": "Census Tract 4369", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1207024, "AWATER10": 0, "INTPTLAT10": "+37.6603503", "INTPTLON10": "-122.1097202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.107716, 37.666361 ], [ -122.101622, 37.656373 ], [ -122.110033, 37.653179 ], [ -122.110376, 37.653111 ], [ -122.115097, 37.660518 ], [ -122.118101, 37.665546 ], [ -122.117586, 37.665818 ], [ -122.107716, 37.666361 ] ] ] } } , @@ -1864,7 +1864,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "431000", "GEOID10": "06001431000", "NAME10": "4310", "NAMELSAD10": "Census Tract 4310", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 954199, "AWATER10": 0, "INTPTLAT10": "+37.6929313", "INTPTLON10": "-122.0784575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.074671, 37.695639 ], [ -122.073298, 37.695503 ], [ -122.065573, 37.692922 ], [ -122.064457, 37.692922 ], [ -122.062397, 37.693465 ], [ -122.062483, 37.692854 ], [ -122.065659, 37.691971 ], [ -122.070122, 37.691088 ], [ -122.072439, 37.690952 ], [ -122.093296, 37.690748 ], [ -122.093039, 37.690952 ], [ -122.091064, 37.692243 ], [ -122.086601, 37.694280 ], [ -122.082996, 37.695367 ], [ -122.081366, 37.695571 ], [ -122.074671, 37.695639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.985321, 37.724022 ], [ -121.985321, 37.717640 ], [ -121.992188, 37.711529 ], [ -122.001286, 37.703720 ], [ -122.015190, 37.703109 ], [ -122.017851, 37.702633 ], [ -122.021198, 37.701479 ], [ -122.021027, 37.700936 ], [ -122.020340, 37.699985 ], [ -122.021456, 37.699781 ], [ -122.024374, 37.698287 ], [ -122.025061, 37.698016 ], [ -122.025661, 37.697948 ], [ -122.026520, 37.698016 ], [ -122.027464, 37.698219 ], [ -122.031841, 37.699917 ], [ -122.034416, 37.701343 ], [ -122.036047, 37.701954 ], [ -122.038279, 37.701275 ], [ -122.039824, 37.700392 ], [ -122.044544, 37.696114 ], [ -122.045746, 37.695299 ], [ -122.047892, 37.694280 ], [ -122.049780, 37.693737 ], [ -122.052183, 37.693533 ], [ -122.054501, 37.693737 ], [ -122.054930, 37.694212 ], [ -122.055016, 37.694620 ], [ -122.056389, 37.694552 ], [ -122.056904, 37.693941 ], [ -122.058706, 37.693805 ], [ -122.059908, 37.693601 ], [ -122.058277, 37.695706 ], [ -122.057848, 37.695639 ], [ -122.057333, 37.694891 ], [ -122.057076, 37.694959 ], [ -122.056561, 37.695435 ], [ -122.056389, 37.695706 ], [ -122.056389, 37.696250 ], [ -122.056990, 37.696861 ], [ -122.056990, 37.697404 ], [ -122.056646, 37.698016 ], [ -122.056303, 37.698219 ], [ -122.055616, 37.698355 ], [ -122.055273, 37.699034 ], [ -122.055531, 37.700936 ], [ -122.054672, 37.701343 ], [ -122.053986, 37.702022 ], [ -122.053471, 37.702294 ], [ -122.053385, 37.702226 ], [ -122.052870, 37.702566 ], [ -122.052269, 37.702769 ], [ -122.051497, 37.702837 ], [ -122.050896, 37.702701 ], [ -122.050123, 37.702905 ], [ -122.045231, 37.702362 ], [ -122.044544, 37.702498 ], [ -122.043943, 37.702905 ], [ -122.043686, 37.703380 ], [ -122.043943, 37.704399 ], [ -122.043858, 37.704942 ], [ -122.043428, 37.705418 ], [ -122.042227, 37.705893 ], [ -122.041798, 37.706165 ], [ -122.040854, 37.707862 ], [ -122.040424, 37.709085 ], [ -122.040424, 37.709696 ], [ -122.040253, 37.709899 ], [ -122.040253, 37.710782 ], [ -122.040424, 37.712004 ], [ -122.039738, 37.714109 ], [ -122.039738, 37.714381 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.715331 ], [ -122.039566, 37.715942 ], [ -122.038965, 37.716893 ], [ -122.038536, 37.717165 ], [ -122.038450, 37.716961 ], [ -122.038021, 37.717640 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719337 ], [ -122.038279, 37.719812 ], [ -122.037764, 37.720831 ], [ -122.037163, 37.722732 ], [ -122.036562, 37.724022 ], [ -121.985321, 37.724022 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.985321, 37.724022 ], [ -121.985321, 37.717640 ], [ -121.992188, 37.711529 ], [ -122.001286, 37.703720 ], [ -122.015190, 37.703109 ], [ -122.017851, 37.702633 ], [ -122.021198, 37.701479 ], [ -122.021027, 37.700936 ], [ -122.020340, 37.699985 ], [ -122.021456, 37.699781 ], [ -122.024374, 37.698287 ], [ -122.025061, 37.698016 ], [ -122.025661, 37.697948 ], [ -122.026520, 37.698016 ], [ -122.027464, 37.698219 ], [ -122.031841, 37.699917 ], [ -122.034416, 37.701343 ], [ -122.036047, 37.701954 ], [ -122.038279, 37.701275 ], [ -122.039824, 37.700392 ], [ -122.044544, 37.696114 ], [ -122.045746, 37.695299 ], [ -122.047892, 37.694280 ], [ -122.049780, 37.693737 ], [ -122.052183, 37.693533 ], [ -122.054501, 37.693737 ], [ -122.054930, 37.694212 ], [ -122.055016, 37.694620 ], [ -122.056389, 37.694552 ], [ -122.056904, 37.693941 ], [ -122.058706, 37.693805 ], [ -122.059908, 37.693601 ], [ -122.058277, 37.695706 ], [ -122.057848, 37.695639 ], [ -122.057333, 37.694891 ], [ -122.057076, 37.694959 ], [ -122.056561, 37.695435 ], [ -122.056389, 37.695706 ], [ -122.056389, 37.696250 ], [ -122.056990, 37.696861 ], [ -122.056990, 37.697404 ], [ -122.056646, 37.698016 ], [ -122.056303, 37.698219 ], [ -122.055616, 37.698355 ], [ -122.055273, 37.699034 ], [ -122.055531, 37.700936 ], [ -122.054672, 37.701343 ], [ -122.053986, 37.702022 ], [ -122.053471, 37.702294 ], [ -122.053385, 37.702226 ], [ -122.052870, 37.702566 ], [ -122.052269, 37.702769 ], [ -122.051497, 37.702837 ], [ -122.050896, 37.702701 ], [ -122.050123, 37.702905 ], [ -122.045231, 37.702362 ], [ -122.044544, 37.702498 ], [ -122.043943, 37.702905 ], [ -122.043686, 37.703380 ], [ -122.043943, 37.704399 ], [ -122.043858, 37.704942 ], [ -122.043428, 37.705418 ], [ -122.042227, 37.705893 ], [ -122.041798, 37.706165 ], [ -122.040854, 37.707862 ], [ -122.040424, 37.709085 ], [ -122.040424, 37.709696 ], [ -122.040253, 37.709899 ], [ -122.040253, 37.710782 ], [ -122.040424, 37.712004 ], [ -122.039738, 37.714109 ], [ -122.039738, 37.714381 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.715331 ], [ -122.039566, 37.715942 ], [ -122.038965, 37.716893 ], [ -122.038536, 37.717165 ], [ -122.038450, 37.716961 ], [ -122.038021, 37.717640 ], [ -122.037935, 37.718115 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719337 ], [ -122.038279, 37.719812 ], [ -122.037764, 37.720831 ], [ -122.037163, 37.722732 ], [ -122.036562, 37.724022 ], [ -121.985321, 37.724022 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435200", "GEOID10": "06001435200", "NAME10": "4352", "NAMELSAD10": "Census Tract 4352", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2266078, "AWATER10": 61590, "INTPTLAT10": "+37.6874049", "INTPTLON10": "-122.0517821" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.045231, 37.695639 ], [ -122.044802, 37.695435 ], [ -122.043943, 37.694484 ], [ -122.044115, 37.692922 ], [ -122.044458, 37.692446 ], [ -122.046089, 37.691971 ], [ -122.047291, 37.690952 ], [ -122.047119, 37.689662 ], [ -122.046776, 37.688847 ], [ -122.046518, 37.688643 ], [ -122.045746, 37.688439 ], [ -122.044973, 37.687760 ], [ -122.044287, 37.687284 ], [ -122.043600, 37.686537 ], [ -122.042570, 37.683277 ], [ -122.041969, 37.682054 ], [ -122.040510, 37.679609 ], [ -122.044373, 37.674989 ], [ -122.045832, 37.675465 ], [ -122.048149, 37.675873 ], [ -122.049952, 37.678454 ], [ -122.050123, 37.678658 ], [ -122.050467, 37.678726 ], [ -122.053471, 37.682801 ], [ -122.054501, 37.684296 ], [ -122.054501, 37.684500 ], [ -122.063770, 37.683752 ], [ -122.063169, 37.685926 ], [ -122.062397, 37.685790 ], [ -122.061882, 37.686130 ], [ -122.060509, 37.689254 ], [ -122.058706, 37.691835 ], [ -122.058706, 37.692039 ], [ -122.058964, 37.692311 ], [ -122.059822, 37.692446 ], [ -122.060080, 37.692582 ], [ -122.060165, 37.693126 ], [ -122.059908, 37.693601 ], [ -122.058706, 37.693805 ], [ -122.056904, 37.693941 ], [ -122.056389, 37.694552 ], [ -122.055016, 37.694620 ], [ -122.054930, 37.694212 ], [ -122.054501, 37.693737 ], [ -122.052183, 37.693533 ], [ -122.049780, 37.693737 ], [ -122.047634, 37.694348 ], [ -122.046175, 37.695027 ], [ -122.045231, 37.695639 ] ] ] } } , @@ -1908,7 +1908,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440334", "GEOID10": "06001440334", "NAME10": "4403.34", "NAMELSAD10": "Census Tract 4403.34", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1024273, "AWATER10": 0, "INTPTLAT10": "+37.5937913", "INTPTLON10": "-122.0648512" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.061024, 37.598660 ], [ -122.056561, 37.592472 ], [ -122.060165, 37.591723 ], [ -122.064371, 37.586758 ], [ -122.073040, 37.595464 ], [ -122.073727, 37.596416 ], [ -122.072697, 37.596416 ], [ -122.071924, 37.596552 ], [ -122.070036, 37.597300 ], [ -122.067204, 37.597980 ], [ -122.062740, 37.598388 ], [ -122.061024, 37.598660 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440333", "GEOID10": "06001440333", "NAME10": "4403.33", "NAMELSAD10": "Census Tract 4403.33", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2512242, "AWATER10": 0, "INTPTLAT10": "+37.6053389", "INTPTLON10": "-122.0738117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.077932, 37.613484 ], [ -122.066603, 37.613144 ], [ -122.066517, 37.612804 ], [ -122.066946, 37.611512 ], [ -122.067118, 37.610492 ], [ -122.068491, 37.605664 ], [ -122.066345, 37.605256 ], [ -122.065487, 37.604916 ], [ -122.061024, 37.598660 ], [ -122.062740, 37.598388 ], [ -122.067204, 37.597980 ], [ -122.070036, 37.597300 ], [ -122.071924, 37.596552 ], [ -122.072697, 37.596416 ], [ -122.073727, 37.596416 ], [ -122.074499, 37.596892 ], [ -122.087374, 37.608180 ], [ -122.085657, 37.609200 ], [ -122.083426, 37.610016 ], [ -122.081194, 37.610968 ], [ -122.079735, 37.611852 ], [ -122.078962, 37.612872 ], [ -122.078447, 37.613280 ], [ -122.077932, 37.613484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440333", "GEOID10": "06001440333", "NAME10": "4403.33", "NAMELSAD10": "Census Tract 4403.33", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2512242, "AWATER10": 0, "INTPTLAT10": "+37.6053389", "INTPTLON10": "-122.0738117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.077932, 37.613484 ], [ -122.066603, 37.613144 ], [ -122.066517, 37.612804 ], [ -122.066946, 37.611512 ], [ -122.067118, 37.610492 ], [ -122.068491, 37.605664 ], [ -122.066345, 37.605256 ], [ -122.065487, 37.604916 ], [ -122.061024, 37.598660 ], [ -122.062740, 37.598388 ], [ -122.067204, 37.597980 ], [ -122.070036, 37.597300 ], [ -122.071924, 37.596552 ], [ -122.073727, 37.596416 ], [ -122.074499, 37.596892 ], [ -122.087374, 37.608180 ], [ -122.085657, 37.609200 ], [ -122.083426, 37.610016 ], [ -122.081194, 37.610968 ], [ -122.079735, 37.611852 ], [ -122.078962, 37.612872 ], [ -122.078447, 37.613280 ], [ -122.077932, 37.613484 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440301", "GEOID10": "06001440301", "NAME10": "4403.01", "NAMELSAD10": "Census Tract 4403.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4279533, "AWATER10": 0, "INTPTLAT10": "+37.6011866", "INTPTLON10": "-122.0427542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.041454, 37.611648 ], [ -122.035275, 37.606344 ], [ -122.034760, 37.605936 ], [ -122.033987, 37.605732 ], [ -122.032871, 37.605868 ], [ -122.030897, 37.605936 ], [ -122.034330, 37.608928 ], [ -122.023258, 37.609064 ], [ -122.019997, 37.606208 ], [ -122.020941, 37.605868 ], [ -122.027121, 37.605936 ], [ -122.027292, 37.605664 ], [ -122.028322, 37.605120 ], [ -122.028666, 37.603556 ], [ -122.028666, 37.602604 ], [ -122.029352, 37.601856 ], [ -122.029352, 37.601516 ], [ -122.029524, 37.601040 ], [ -122.029352, 37.600360 ], [ -122.029781, 37.600564 ], [ -122.030125, 37.597096 ], [ -122.030382, 37.596552 ], [ -122.030382, 37.595600 ], [ -122.030554, 37.595396 ], [ -122.031927, 37.594920 ], [ -122.032442, 37.594512 ], [ -122.032700, 37.593356 ], [ -122.033472, 37.592199 ], [ -122.033644, 37.591179 ], [ -122.034502, 37.590771 ], [ -122.056475, 37.596824 ], [ -122.057676, 37.597300 ], [ -122.059221, 37.598252 ], [ -122.059908, 37.598524 ], [ -122.061024, 37.598660 ], [ -122.065487, 37.604916 ], [ -122.064800, 37.604780 ], [ -122.063341, 37.604712 ], [ -122.059393, 37.603896 ], [ -122.058706, 37.606004 ], [ -122.043257, 37.605936 ], [ -122.042742, 37.611648 ], [ -122.041454, 37.611648 ] ] ] } } , @@ -1920,6 +1920,8 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441501", "GEOID10": "06001441501", "NAME10": "4415.01", "NAMELSAD10": "Census Tract 4415.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2624991, "AWATER10": 0, "INTPTLAT10": "+37.5699748", "INTPTLON10": "-122.0724418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.062912, 37.584854 ], [ -122.062397, 37.583970 ], [ -122.062054, 37.582882 ], [ -122.060165, 37.573971 ], [ -122.062826, 37.571181 ], [ -122.066689, 37.566419 ], [ -122.067547, 37.565739 ], [ -122.068834, 37.564310 ], [ -122.070036, 37.563426 ], [ -122.072439, 37.562677 ], [ -122.080250, 37.561385 ], [ -122.084799, 37.561657 ], [ -122.089605, 37.562065 ], [ -122.089434, 37.562337 ], [ -122.089176, 37.564242 ], [ -122.088575, 37.564310 ], [ -122.088060, 37.564582 ], [ -122.085915, 37.566691 ], [ -122.084455, 37.567644 ], [ -122.084198, 37.567984 ], [ -122.080250, 37.569753 ], [ -122.077932, 37.570637 ], [ -122.076302, 37.569821 ], [ -122.075958, 37.569889 ], [ -122.062912, 37.584582 ], [ -122.062912, 37.584854 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.056561, 37.592472 ], [ -122.051325, 37.585126 ], [ -122.050209, 37.583358 ], [ -122.049265, 37.581317 ], [ -122.048321, 37.578596 ], [ -122.052011, 37.580297 ], [ -122.054672, 37.581725 ], [ -122.055616, 37.580365 ], [ -122.060423, 37.574855 ], [ -122.062054, 37.582882 ], [ -122.062397, 37.583970 ], [ -122.062912, 37.584854 ], [ -122.062483, 37.585670 ], [ -122.064285, 37.586758 ], [ -122.060165, 37.591723 ], [ -122.056561, 37.592472 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440100", "GEOID10": "06001440100", "NAME10": "4401", "NAMELSAD10": "Census Tract 4401", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 27751537, "AWATER10": 0, "INTPTLAT10": "+37.6163011", "INTPTLON10": "-121.9815046" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.985321, 37.634558 ], [ -121.985321, 37.602196 ], [ -121.988497, 37.600020 ], [ -121.988840, 37.599000 ], [ -121.992188, 37.596620 ], [ -122.001371, 37.589615 ], [ -122.001457, 37.589683 ], [ -122.019997, 37.606208 ], [ -122.018967, 37.606888 ], [ -122.017937, 37.607772 ], [ -122.017851, 37.608316 ], [ -122.018023, 37.608452 ], [ -122.016821, 37.609268 ], [ -122.017164, 37.610016 ], [ -122.017164, 37.611104 ], [ -122.016563, 37.611784 ], [ -122.016821, 37.612056 ], [ -122.017250, 37.612056 ], [ -122.017336, 37.612192 ], [ -122.017078, 37.612804 ], [ -122.016735, 37.613076 ], [ -122.016993, 37.613416 ], [ -122.016735, 37.614231 ], [ -122.016993, 37.614639 ], [ -122.017250, 37.614639 ], [ -122.017422, 37.614775 ], [ -122.017336, 37.615455 ], [ -122.017679, 37.615659 ], [ -122.017937, 37.616135 ], [ -122.017851, 37.616611 ], [ -122.018623, 37.616951 ], [ -122.018881, 37.617291 ], [ -122.018967, 37.617699 ], [ -122.019310, 37.617903 ], [ -122.019911, 37.617767 ], [ -122.020082, 37.617835 ], [ -122.020340, 37.618039 ], [ -122.020597, 37.618991 ], [ -122.021885, 37.619262 ], [ -122.022142, 37.619738 ], [ -122.022572, 37.620010 ], [ -122.022572, 37.620894 ], [ -122.023344, 37.621098 ], [ -122.023773, 37.621710 ], [ -122.023773, 37.622186 ], [ -122.023602, 37.622934 ], [ -122.023773, 37.623070 ], [ -122.024288, 37.623138 ], [ -122.024632, 37.623274 ], [ -122.025919, 37.622526 ], [ -122.026434, 37.622594 ], [ -122.026606, 37.623206 ], [ -122.027979, 37.622730 ], [ -122.029610, 37.625041 ], [ -122.029438, 37.627284 ], [ -122.029867, 37.627760 ], [ -122.030039, 37.628848 ], [ -122.028065, 37.628440 ], [ -122.027721, 37.628848 ], [ -122.026691, 37.629052 ], [ -122.026262, 37.629256 ], [ -122.025490, 37.629935 ], [ -122.024546, 37.630207 ], [ -122.023258, 37.631567 ], [ -122.022829, 37.632247 ], [ -122.021885, 37.632314 ], [ -122.020769, 37.633334 ], [ -122.019911, 37.633334 ], [ -122.019224, 37.633470 ], [ -122.018967, 37.633402 ], [ -122.018366, 37.632858 ], [ -122.017593, 37.632586 ], [ -122.017078, 37.632314 ], [ -122.016134, 37.632179 ], [ -122.015104, 37.632179 ], [ -122.014503, 37.631975 ], [ -122.011499, 37.630207 ], [ -122.010555, 37.629935 ], [ -122.009525, 37.629256 ], [ -122.008667, 37.628916 ], [ -122.008152, 37.628576 ], [ -122.007723, 37.628168 ], [ -122.007551, 37.627488 ], [ -122.006607, 37.627012 ], [ -122.005405, 37.627488 ], [ -122.003517, 37.627148 ], [ -122.002916, 37.627080 ], [ -122.002144, 37.627216 ], [ -122.001371, 37.627964 ], [ -121.999912, 37.628372 ], [ -121.999226, 37.628780 ], [ -121.999054, 37.628984 ], [ -121.999054, 37.629256 ], [ -121.999226, 37.629460 ], [ -121.999140, 37.629867 ], [ -121.998882, 37.630411 ], [ -121.998539, 37.630683 ], [ -121.996651, 37.631431 ], [ -121.995707, 37.631499 ], [ -121.994505, 37.631159 ], [ -121.993647, 37.630683 ], [ -121.992188, 37.630411 ], [ -121.991758, 37.630343 ], [ -121.991415, 37.630547 ], [ -121.991243, 37.631567 ], [ -121.991072, 37.631703 ], [ -121.990385, 37.633402 ], [ -121.989870, 37.633810 ], [ -121.987381, 37.633946 ], [ -121.985321, 37.634558 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "438000", "GEOID10": "06001438000", "NAME10": "4380", "NAMELSAD10": "Census Tract 4380", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2422520, "AWATER10": 0, "INTPTLAT10": "+37.6191280", "INTPTLON10": "-122.0285144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.039652, 37.629188 ], [ -122.036219, 37.629120 ], [ -122.035704, 37.628440 ], [ -122.034760, 37.628032 ], [ -122.033644, 37.628100 ], [ -122.030382, 37.628848 ], [ -122.030039, 37.628848 ], [ -122.029867, 37.627760 ], [ -122.029438, 37.627284 ], [ -122.029610, 37.625041 ], [ -122.027979, 37.622730 ], [ -122.026606, 37.623206 ], [ -122.026434, 37.622594 ], [ -122.025919, 37.622526 ], [ -122.024632, 37.623274 ], [ -122.024288, 37.623138 ], [ -122.023773, 37.623070 ], [ -122.023602, 37.622934 ], [ -122.023773, 37.622186 ], [ -122.023773, 37.621710 ], [ -122.023344, 37.621098 ], [ -122.022572, 37.620894 ], [ -122.022572, 37.620010 ], [ -122.022142, 37.619738 ], [ -122.021885, 37.619262 ], [ -122.020597, 37.618991 ], [ -122.020340, 37.618039 ], [ -122.020082, 37.617835 ], [ -122.019911, 37.617767 ], [ -122.019310, 37.617903 ], [ -122.018967, 37.617699 ], [ -122.018881, 37.617291 ], [ -122.018623, 37.616951 ], [ -122.017851, 37.616611 ], [ -122.017937, 37.616135 ], [ -122.017679, 37.615659 ], [ -122.017336, 37.615455 ], [ -122.017422, 37.614775 ], [ -122.017250, 37.614639 ], [ -122.016993, 37.614639 ], [ -122.016735, 37.614231 ], [ -122.016993, 37.613416 ], [ -122.016735, 37.613076 ], [ -122.017078, 37.612804 ], [ -122.017336, 37.612192 ], [ -122.017250, 37.612056 ], [ -122.016821, 37.612056 ], [ -122.016563, 37.611784 ], [ -122.017164, 37.611104 ], [ -122.017164, 37.610016 ], [ -122.016821, 37.609268 ], [ -122.018023, 37.608452 ], [ -122.017851, 37.608316 ], [ -122.017937, 37.607840 ], [ -122.018967, 37.606888 ], [ -122.019997, 37.606208 ], [ -122.044630, 37.627760 ], [ -122.044544, 37.627828 ], [ -122.042742, 37.627896 ], [ -122.039652, 37.629188 ] ] ] } } @@ -1938,8 +1940,6 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441503", "GEOID10": "06001441503", "NAME10": "4415.03", "NAMELSAD10": "Census Tract 4415.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 77476439, "AWATER10": 12542580, "INTPTLAT10": "+37.4731786", "INTPTLON10": "-121.9444248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.119646, 37.571318 ], [ -122.117672, 37.571113 ], [ -122.109518, 37.567916 ], [ -122.107544, 37.565807 ], [ -122.108402, 37.562337 ], [ -122.108402, 37.561725 ], [ -122.108145, 37.561385 ], [ -122.107801, 37.561044 ], [ -122.107544, 37.560976 ], [ -122.106857, 37.561180 ], [ -122.105141, 37.561997 ], [ -122.102823, 37.563426 ], [ -122.102137, 37.563358 ], [ -122.100677, 37.562541 ], [ -122.099304, 37.562133 ], [ -122.098961, 37.562337 ], [ -122.097845, 37.564582 ], [ -122.095442, 37.564310 ], [ -122.093983, 37.563018 ], [ -122.093897, 37.562269 ], [ -122.093639, 37.561861 ], [ -122.090549, 37.561112 ], [ -122.089691, 37.562065 ], [ -122.089348, 37.562133 ], [ -122.086515, 37.561793 ], [ -122.080250, 37.561385 ], [ -122.077675, 37.561861 ], [ -122.075014, 37.562201 ], [ -122.072439, 37.562677 ], [ -122.070808, 37.563154 ], [ -122.069693, 37.563630 ], [ -122.068834, 37.564310 ], [ -122.067547, 37.565739 ], [ -122.066689, 37.566419 ], [ -122.062826, 37.571181 ], [ -122.061625, 37.569481 ], [ -122.059307, 37.569413 ], [ -122.055187, 37.549409 ], [ -122.071152, 37.537363 ], [ -122.073469, 37.535866 ], [ -122.075529, 37.534981 ], [ -122.078104, 37.534096 ], [ -122.078447, 37.533756 ], [ -122.090549, 37.532054 ], [ -122.101965, 37.522729 ], [ -122.109175, 37.513062 ], [ -122.110291, 37.511836 ], [ -122.110806, 37.511019 ], [ -122.111664, 37.510339 ], [ -122.111578, 37.510202 ], [ -122.111063, 37.510134 ], [ -122.110891, 37.509385 ], [ -122.110720, 37.509249 ], [ -122.101192, 37.518236 ], [ -122.101536, 37.521299 ], [ -122.098274, 37.522593 ], [ -122.093210, 37.520959 ], [ -122.092266, 37.518508 ], [ -122.089090, 37.517419 ], [ -122.088318, 37.516806 ], [ -122.088747, 37.516126 ], [ -122.089434, 37.513879 ], [ -122.089434, 37.513607 ], [ -122.088919, 37.513198 ], [ -122.087803, 37.513198 ], [ -122.087030, 37.513402 ], [ -122.085485, 37.514151 ], [ -122.084627, 37.514424 ], [ -122.084112, 37.514492 ], [ -122.082825, 37.514492 ], [ -122.082825, 37.514764 ], [ -122.082224, 37.515853 ], [ -122.081881, 37.516126 ], [ -122.080421, 37.516670 ], [ -122.079906, 37.516670 ], [ -122.079477, 37.516398 ], [ -122.079563, 37.515989 ], [ -122.080164, 37.515445 ], [ -122.080164, 37.514968 ], [ -122.079992, 37.514764 ], [ -122.079391, 37.514764 ], [ -122.075443, 37.515921 ], [ -122.075014, 37.516194 ], [ -122.074757, 37.516126 ], [ -122.073898, 37.516330 ], [ -122.070551, 37.517487 ], [ -122.070122, 37.517828 ], [ -122.069006, 37.517691 ], [ -122.067118, 37.513470 ], [ -122.063084, 37.514900 ], [ -122.063169, 37.515649 ], [ -122.058277, 37.515717 ], [ -122.057676, 37.511700 ], [ -122.057333, 37.511700 ], [ -122.055531, 37.507070 ], [ -122.057762, 37.501079 ], [ -122.052355, 37.500193 ], [ -122.052612, 37.499240 ], [ -122.043343, 37.495835 ], [ -122.040167, 37.495358 ], [ -122.039223, 37.495086 ], [ -122.035360, 37.494677 ], [ -122.032700, 37.490660 ], [ -122.032099, 37.490796 ], [ -122.031412, 37.490251 ], [ -122.030983, 37.490115 ], [ -122.031155, 37.489093 ], [ -122.031498, 37.488412 ], [ -122.031498, 37.486846 ], [ -122.031155, 37.485211 ], [ -122.030811, 37.481533 ], [ -122.029781, 37.480103 ], [ -122.028151, 37.478741 ], [ -122.027035, 37.478604 ], [ -122.025833, 37.478945 ], [ -122.025318, 37.480580 ], [ -122.025232, 37.482419 ], [ -122.024803, 37.483236 ], [ -122.023087, 37.484666 ], [ -122.021456, 37.484803 ], [ -122.019739, 37.484598 ], [ -122.017851, 37.483849 ], [ -122.016478, 37.483032 ], [ -122.015276, 37.481874 ], [ -122.014246, 37.481329 ], [ -122.013817, 37.481601 ], [ -122.013302, 37.482282 ], [ -122.012873, 37.483100 ], [ -122.011929, 37.485620 ], [ -122.011414, 37.486505 ], [ -122.009954, 37.488480 ], [ -122.009697, 37.488957 ], [ -122.010727, 37.492362 ], [ -122.010641, 37.492839 ], [ -122.009954, 37.493588 ], [ -122.007980, 37.494201 ], [ -122.006865, 37.494269 ], [ -122.006350, 37.494882 ], [ -122.005920, 37.494814 ], [ -122.005320, 37.494609 ], [ -122.005148, 37.494746 ], [ -122.005062, 37.495154 ], [ -122.000256, 37.494882 ], [ -121.999826, 37.496652 ], [ -121.999226, 37.498014 ], [ -121.998453, 37.499240 ], [ -121.997080, 37.500398 ], [ -121.994333, 37.499376 ], [ -121.993303, 37.499444 ], [ -121.997938, 37.503870 ], [ -121.995277, 37.510951 ], [ -121.994762, 37.514015 ], [ -121.992188, 37.517215 ], [ -121.989613, 37.520483 ], [ -121.988239, 37.521776 ], [ -121.987724, 37.522389 ], [ -121.985321, 37.521231 ], [ -121.985321, 37.462460 ], [ -121.992188, 37.464504 ], [ -121.992617, 37.464640 ], [ -121.994247, 37.466002 ], [ -121.995449, 37.466752 ], [ -121.996479, 37.467024 ], [ -121.996651, 37.467229 ], [ -122.021112, 37.465049 ], [ -122.022486, 37.465117 ], [ -122.025404, 37.465594 ], [ -122.036133, 37.464980 ], [ -122.037249, 37.464708 ], [ -122.038364, 37.464163 ], [ -122.040682, 37.462937 ], [ -122.044544, 37.460620 ], [ -122.045660, 37.461778 ], [ -122.048664, 37.461642 ], [ -122.055960, 37.463959 ], [ -122.059822, 37.469477 ], [ -122.060766, 37.474926 ], [ -122.061539, 37.486641 ], [ -122.061453, 37.491613 ], [ -122.065916, 37.492907 ], [ -122.072868, 37.494473 ], [ -122.078018, 37.495086 ], [ -122.098532, 37.494882 ], [ -122.103939, 37.493656 ], [ -122.109604, 37.497674 ], [ -122.117329, 37.506798 ], [ -122.117243, 37.513675 ], [ -122.118530, 37.526405 ], [ -122.120419, 37.532803 ], [ -122.128572, 37.548116 ], [ -122.135782, 37.558867 ], [ -122.131577, 37.562881 ], [ -122.131405, 37.562813 ], [ -122.130203, 37.563902 ], [ -122.126083, 37.568936 ], [ -122.124968, 37.570025 ], [ -122.122564, 37.571113 ], [ -122.119646, 37.571318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.056561, 37.592472 ], [ -122.051325, 37.585126 ], [ -122.050209, 37.583358 ], [ -122.049265, 37.581317 ], [ -122.048321, 37.578596 ], [ -122.052011, 37.580297 ], [ -122.054672, 37.581725 ], [ -122.055616, 37.580365 ], [ -122.060423, 37.574855 ], [ -122.062054, 37.582882 ], [ -122.062397, 37.583970 ], [ -122.062912, 37.584854 ], [ -122.062483, 37.585670 ], [ -122.064285, 37.586758 ], [ -122.060165, 37.591723 ], [ -122.056561, 37.592472 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441523", "GEOID10": "06001441523", "NAME10": "4415.23", "NAMELSAD10": "Census Tract 4415.23", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 467502, "AWATER10": 0, "INTPTLAT10": "+37.5647793", "INTPTLON10": "-122.0464869" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.045403, 37.567780 ], [ -122.043085, 37.567712 ], [ -122.041626, 37.566351 ], [ -122.041283, 37.565127 ], [ -122.043257, 37.562881 ], [ -122.048492, 37.560772 ], [ -122.050638, 37.563562 ], [ -122.050810, 37.563970 ], [ -122.050896, 37.565535 ], [ -122.051239, 37.566283 ], [ -122.051582, 37.566759 ], [ -122.045403, 37.567780 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441402", "GEOID10": "06001441402", "NAME10": "4414.02", "NAMELSAD10": "Census Tract 4414.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1634599, "AWATER10": 0, "INTPTLAT10": "+37.5823791", "INTPTLON10": "-122.0398734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.041454, 37.588119 ], [ -122.038364, 37.587711 ], [ -122.036562, 37.587303 ], [ -122.034760, 37.586622 ], [ -122.033129, 37.585874 ], [ -122.031584, 37.584582 ], [ -122.025318, 37.578460 ], [ -122.026777, 37.576896 ], [ -122.028322, 37.577848 ], [ -122.030296, 37.579617 ], [ -122.033129, 37.581385 ], [ -122.034245, 37.581657 ], [ -122.035532, 37.581521 ], [ -122.036219, 37.581249 ], [ -122.036991, 37.580637 ], [ -122.041197, 37.575059 ], [ -122.044973, 37.576964 ], [ -122.044802, 37.577032 ], [ -122.047205, 37.578256 ], [ -122.047205, 37.578732 ], [ -122.048492, 37.580365 ], [ -122.049265, 37.581793 ], [ -122.049179, 37.581045 ], [ -122.050295, 37.583494 ], [ -122.048578, 37.585602 ], [ -122.046518, 37.586758 ], [ -122.044802, 37.587439 ], [ -122.041454, 37.588119 ] ] ] } } @@ -1954,10 +1954,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "444301", "GEOID10": "06001444301", "NAME10": "4443.01", "NAMELSAD10": "Census Tract 4443.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2576462, "AWATER10": 0, "INTPTLAT10": "+37.5365190", "INTPTLON10": "-122.0571016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.055187, 37.549409 ], [ -122.053556, 37.541651 ], [ -122.052956, 37.540358 ], [ -122.051926, 37.539269 ], [ -122.044630, 37.533280 ], [ -122.050037, 37.529196 ], [ -122.053127, 37.528175 ], [ -122.053385, 37.528719 ], [ -122.056732, 37.528039 ], [ -122.057934, 37.527086 ], [ -122.062397, 37.528719 ], [ -122.063513, 37.529536 ], [ -122.064028, 37.530897 ], [ -122.064457, 37.534232 ], [ -122.067289, 37.540222 ], [ -122.055187, 37.549409 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441601", "GEOID10": "06001441601", "NAME10": "4416.01", "NAMELSAD10": "Census Tract 4416.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1291642, "AWATER10": 0, "INTPTLAT10": "+37.5635007", "INTPTLON10": "-122.0305372" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.032442, 37.570773 ], [ -122.022743, 37.566011 ], [ -122.024460, 37.563970 ], [ -122.024889, 37.563290 ], [ -122.024975, 37.562677 ], [ -122.024546, 37.560976 ], [ -122.024546, 37.560704 ], [ -122.024803, 37.560296 ], [ -122.027550, 37.556690 ], [ -122.028151, 37.556894 ], [ -122.029438, 37.556282 ], [ -122.030382, 37.557030 ], [ -122.031240, 37.556622 ], [ -122.038450, 37.563358 ], [ -122.036390, 37.566011 ], [ -122.036304, 37.566215 ], [ -122.036562, 37.566283 ], [ -122.034245, 37.568664 ], [ -122.032442, 37.570773 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441602", "GEOID10": "06001441602", "NAME10": "4416.02", "NAMELSAD10": "Census Tract 4416.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1682393, "AWATER10": 0, "INTPTLAT10": "+37.5569600", "INTPTLON10": "-122.0212345" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.022743, 37.566011 ], [ -122.011671, 37.560568 ], [ -122.015791, 37.555125 ], [ -122.021027, 37.548728 ], [ -122.022829, 37.546551 ], [ -122.023001, 37.546551 ], [ -122.025490, 37.550021 ], [ -122.028666, 37.554104 ], [ -122.031155, 37.556554 ], [ -122.030382, 37.557030 ], [ -122.029524, 37.556282 ], [ -122.028151, 37.556894 ], [ -122.027550, 37.556690 ], [ -122.024546, 37.560704 ], [ -122.024975, 37.562677 ], [ -122.024889, 37.563290 ], [ -122.024460, 37.563970 ], [ -122.022743, 37.566011 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441601", "GEOID10": "06001441601", "NAME10": "4416.01", "NAMELSAD10": "Census Tract 4416.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1291642, "AWATER10": 0, "INTPTLAT10": "+37.5635007", "INTPTLON10": "-122.0305372" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.032442, 37.570773 ], [ -122.022743, 37.566011 ], [ -122.024460, 37.563970 ], [ -122.024889, 37.563290 ], [ -122.024975, 37.562677 ], [ -122.024546, 37.560976 ], [ -122.024546, 37.560704 ], [ -122.024803, 37.560296 ], [ -122.027550, 37.556690 ], [ -122.028151, 37.556894 ], [ -122.029438, 37.556282 ], [ -122.030382, 37.557030 ], [ -122.031240, 37.556622 ], [ -122.038450, 37.563358 ], [ -122.036390, 37.566011 ], [ -122.036304, 37.566215 ], [ -122.036562, 37.566283 ], [ -122.034245, 37.568664 ], [ -122.032442, 37.570773 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441302", "GEOID10": "06001441302", "NAME10": "4413.02", "NAMELSAD10": "Census Tract 4413.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1994668, "AWATER10": 0, "INTPTLAT10": "+37.5693426", "INTPTLON10": "-122.0194346" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.025318, 37.578460 ], [ -122.023859, 37.577032 ], [ -122.021198, 37.575603 ], [ -122.020855, 37.575535 ], [ -122.017422, 37.574039 ], [ -122.014074, 37.572066 ], [ -122.014503, 37.571726 ], [ -122.014246, 37.571522 ], [ -122.010384, 37.569345 ], [ -122.009354, 37.568256 ], [ -122.008495, 37.565943 ], [ -122.007809, 37.565127 ], [ -122.007122, 37.564650 ], [ -122.009182, 37.562745 ], [ -122.010813, 37.561657 ], [ -122.011671, 37.560568 ], [ -122.032442, 37.570773 ], [ -122.030725, 37.572474 ], [ -122.025318, 37.578460 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441200", "GEOID10": "06001441200", "NAME10": "4412", "NAMELSAD10": "Census Tract 4412", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3241560, "AWATER10": 11692, "INTPTLAT10": "+37.5780625", "INTPTLON10": "-121.9910071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.001371, 37.589615 ], [ -121.998882, 37.587371 ], [ -121.992188, 37.581997 ], [ -121.991158, 37.581181 ], [ -121.989527, 37.580297 ], [ -121.987724, 37.579821 ], [ -121.985321, 37.579413 ], [ -121.985321, 37.567780 ], [ -121.986094, 37.567780 ], [ -121.987038, 37.567984 ], [ -121.987724, 37.568324 ], [ -121.992188, 37.571794 ], [ -122.006435, 37.582745 ], [ -122.005835, 37.586486 ], [ -122.001371, 37.589615 ] ] ] } } @@ -2052,7 +2052,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "422400", "GEOID10": "06001422400", "NAME10": "4224", "NAMELSAD10": "Census Tract 4224", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 475569, "AWATER10": 0, "INTPTLAT10": "+37.8752396", "INTPTLON10": "-122.2695878" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.265730, 37.878783 ], [ -122.265644, 37.876954 ], [ -122.265387, 37.876479 ], [ -122.265558, 37.875599 ], [ -122.265387, 37.874311 ], [ -122.266331, 37.874108 ], [ -122.266159, 37.872347 ], [ -122.273026, 37.871466 ], [ -122.273712, 37.877767 ], [ -122.265730, 37.878783 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "421500", "GEOID10": "06001421500", "NAME10": "4215", "NAMELSAD10": "Census Tract 4215", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1590672, "AWATER10": 3635, "INTPTLAT10": "+37.8920346", "INTPTLON10": "-122.2590314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.259636, 37.899849 ], [ -122.258606, 37.898969 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899104 ], [ -122.257147, 37.899781 ], [ -122.256889, 37.899849 ], [ -122.256546, 37.899443 ], [ -122.256031, 37.898291 ], [ -122.256289, 37.897817 ], [ -122.256289, 37.896937 ], [ -122.255774, 37.896463 ], [ -122.255430, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255516, 37.895921 ], [ -122.254915, 37.896327 ], [ -122.254400, 37.896192 ], [ -122.253714, 37.896192 ], [ -122.253113, 37.895582 ], [ -122.252684, 37.894973 ], [ -122.252684, 37.894498 ], [ -122.253113, 37.894024 ], [ -122.252941, 37.893753 ], [ -122.252083, 37.893550 ], [ -122.251139, 37.893821 ], [ -122.249422, 37.893076 ], [ -122.248993, 37.891180 ], [ -122.249250, 37.890976 ], [ -122.249680, 37.890909 ], [ -122.250795, 37.891315 ], [ -122.251568, 37.891112 ], [ -122.251911, 37.890909 ], [ -122.252426, 37.890367 ], [ -122.252254, 37.889960 ], [ -122.253284, 37.889689 ], [ -122.252769, 37.889351 ], [ -122.252684, 37.888402 ], [ -122.252769, 37.888199 ], [ -122.253199, 37.888131 ], [ -122.253456, 37.888199 ], [ -122.253885, 37.889012 ], [ -122.254143, 37.889147 ], [ -122.254143, 37.888809 ], [ -122.254400, 37.888402 ], [ -122.254314, 37.887928 ], [ -122.254486, 37.887657 ], [ -122.255087, 37.888064 ], [ -122.255344, 37.887996 ], [ -122.255344, 37.887725 ], [ -122.255602, 37.887522 ], [ -122.255774, 37.887589 ], [ -122.255859, 37.887996 ], [ -122.256546, 37.887928 ], [ -122.256460, 37.887657 ], [ -122.256975, 37.887251 ], [ -122.256804, 37.886844 ], [ -122.257833, 37.886506 ], [ -122.258692, 37.886777 ], [ -122.258949, 37.886641 ], [ -122.259121, 37.886438 ], [ -122.259121, 37.885760 ], [ -122.259808, 37.886031 ], [ -122.259808, 37.886506 ], [ -122.260151, 37.886302 ], [ -122.260151, 37.885964 ], [ -122.258949, 37.884609 ], [ -122.258949, 37.884135 ], [ -122.259893, 37.883931 ], [ -122.259979, 37.883796 ], [ -122.259808, 37.883254 ], [ -122.260580, 37.883186 ], [ -122.260666, 37.883051 ], [ -122.261696, 37.883051 ], [ -122.262554, 37.884067 ], [ -122.262812, 37.884541 ], [ -122.262383, 37.886506 ], [ -122.266588, 37.886031 ], [ -122.266846, 37.887725 ], [ -122.266674, 37.889012 ], [ -122.267189, 37.890705 ], [ -122.267189, 37.891654 ], [ -122.266932, 37.892466 ], [ -122.267103, 37.892805 ], [ -122.267704, 37.893144 ], [ -122.260752, 37.897546 ], [ -122.261953, 37.898495 ], [ -122.260666, 37.899646 ], [ -122.260065, 37.899849 ], [ -122.259636, 37.899849 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "421500", "GEOID10": "06001421500", "NAME10": "4215", "NAMELSAD10": "Census Tract 4215", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1590672, "AWATER10": 3635, "INTPTLAT10": "+37.8920346", "INTPTLON10": "-122.2590314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.259636, 37.899849 ], [ -122.258606, 37.898969 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899104 ], [ -122.257147, 37.899781 ], [ -122.256889, 37.899849 ], [ -122.256546, 37.899443 ], [ -122.256031, 37.898291 ], [ -122.256289, 37.897750 ], [ -122.256289, 37.896937 ], [ -122.255774, 37.896463 ], [ -122.255430, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255516, 37.895921 ], [ -122.254915, 37.896327 ], [ -122.254400, 37.896192 ], [ -122.253714, 37.896192 ], [ -122.253113, 37.895582 ], [ -122.252684, 37.894973 ], [ -122.252684, 37.894498 ], [ -122.253113, 37.894024 ], [ -122.252941, 37.893753 ], [ -122.252083, 37.893550 ], [ -122.251139, 37.893821 ], [ -122.249422, 37.893076 ], [ -122.248993, 37.891180 ], [ -122.249250, 37.890976 ], [ -122.249680, 37.890909 ], [ -122.250795, 37.891315 ], [ -122.251568, 37.891112 ], [ -122.251911, 37.890909 ], [ -122.252426, 37.890367 ], [ -122.252254, 37.889960 ], [ -122.253284, 37.889689 ], [ -122.252769, 37.889351 ], [ -122.252684, 37.888402 ], [ -122.252769, 37.888199 ], [ -122.253199, 37.888131 ], [ -122.253456, 37.888199 ], [ -122.253885, 37.889012 ], [ -122.254143, 37.889147 ], [ -122.254143, 37.888809 ], [ -122.254400, 37.888402 ], [ -122.254314, 37.887928 ], [ -122.254486, 37.887657 ], [ -122.255087, 37.888064 ], [ -122.255344, 37.887996 ], [ -122.255344, 37.887725 ], [ -122.255602, 37.887522 ], [ -122.255774, 37.887589 ], [ -122.255859, 37.887996 ], [ -122.256546, 37.887928 ], [ -122.256460, 37.887657 ], [ -122.256975, 37.887251 ], [ -122.256804, 37.886844 ], [ -122.257833, 37.886506 ], [ -122.258692, 37.886777 ], [ -122.258949, 37.886641 ], [ -122.259121, 37.886438 ], [ -122.259121, 37.885760 ], [ -122.259808, 37.886031 ], [ -122.259808, 37.886506 ], [ -122.260151, 37.886302 ], [ -122.260151, 37.885964 ], [ -122.258949, 37.884609 ], [ -122.258949, 37.884135 ], [ -122.259893, 37.883931 ], [ -122.259979, 37.883796 ], [ -122.259808, 37.883254 ], [ -122.260580, 37.883186 ], [ -122.260666, 37.883051 ], [ -122.261696, 37.883051 ], [ -122.262554, 37.884067 ], [ -122.262812, 37.884541 ], [ -122.262383, 37.886506 ], [ -122.266588, 37.886031 ], [ -122.266846, 37.887725 ], [ -122.266674, 37.889012 ], [ -122.267189, 37.890705 ], [ -122.267189, 37.891654 ], [ -122.266932, 37.892466 ], [ -122.267103, 37.892805 ], [ -122.267704, 37.893144 ], [ -122.260752, 37.897546 ], [ -122.261953, 37.898495 ], [ -122.260666, 37.899646 ], [ -122.260065, 37.899849 ], [ -122.259636, 37.899849 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "422500", "GEOID10": "06001422500", "NAME10": "4225", "NAMELSAD10": "Census Tract 4225", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 460332, "AWATER10": 0, "INTPTLAT10": "+37.8773131", "INTPTLON10": "-122.2603183" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.257061, 37.880544 ], [ -122.256632, 37.879935 ], [ -122.255602, 37.880206 ], [ -122.255001, 37.878376 ], [ -122.255344, 37.878309 ], [ -122.254744, 37.875599 ], [ -122.255688, 37.875666 ], [ -122.260151, 37.875124 ], [ -122.263927, 37.874582 ], [ -122.264614, 37.874379 ], [ -122.265387, 37.874311 ], [ -122.265558, 37.875599 ], [ -122.265387, 37.876479 ], [ -122.265644, 37.876954 ], [ -122.265730, 37.878783 ], [ -122.258005, 37.879799 ], [ -122.257576, 37.879799 ], [ -122.258177, 37.880544 ], [ -122.257748, 37.880409 ], [ -122.257061, 37.880544 ] ] ] } } , @@ -2124,9 +2124,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402700", "GEOID10": "06001402700", "NAME10": "4027", "NAMELSAD10": "Census Tract 4027", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 398775, "AWATER10": 0, "INTPTLAT10": "+37.8103872", "INTPTLON10": "-122.2769914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.278690, 37.814531 ], [ -122.274914, 37.813039 ], [ -122.272682, 37.812564 ], [ -122.272940, 37.811750 ], [ -122.273626, 37.811479 ], [ -122.273369, 37.810462 ], [ -122.273455, 37.810191 ], [ -122.275944, 37.806190 ], [ -122.278519, 37.807207 ], [ -122.280922, 37.808292 ], [ -122.278690, 37.814531 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410500", "GEOID10": "06001410500", "NAME10": "4105", "NAMELSAD10": "Census Tract 4105", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 724054, "AWATER10": 0, "INTPTLAT10": "+37.8100197", "INTPTLON10": "-122.2889560" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816972 ], [ -122.288132, 37.816497 ], [ -122.284012, 37.815615 ], [ -122.288647, 37.802731 ], [ -122.289762, 37.802731 ], [ -122.291050, 37.802528 ], [ -122.290621, 37.803749 ], [ -122.291822, 37.804223 ], [ -122.292337, 37.804766 ], [ -122.293711, 37.805037 ], [ -122.291565, 37.811411 ], [ -122.289934, 37.815615 ], [ -122.289677, 37.816972 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410500", "GEOID10": "06001410500", "NAME10": "4105", "NAMELSAD10": "Census Tract 4105", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 724054, "AWATER10": 0, "INTPTLAT10": "+37.8100197", "INTPTLON10": "-122.2889560" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816972 ], [ -122.288132, 37.816497 ], [ -122.284012, 37.815615 ], [ -122.288647, 37.802731 ], [ -122.289762, 37.802731 ], [ -122.291050, 37.802528 ], [ -122.290621, 37.803749 ], [ -122.291822, 37.804223 ], [ -122.292252, 37.804766 ], [ -122.293711, 37.805037 ], [ -122.291565, 37.811411 ], [ -122.289934, 37.815615 ], [ -122.289677, 37.816972 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402200", "GEOID10": "06001402200", "NAME10": "4022", "NAMELSAD10": "Census Tract 4022", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 712761, "AWATER10": 0, "INTPTLAT10": "+37.8063512", "INTPTLON10": "-122.2963076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816836 ], [ -122.289934, 37.815615 ], [ -122.291565, 37.811411 ], [ -122.293711, 37.805037 ], [ -122.292337, 37.804766 ], [ -122.291822, 37.804223 ], [ -122.290621, 37.803749 ], [ -122.291050, 37.802528 ], [ -122.294998, 37.801985 ], [ -122.296801, 37.801918 ], [ -122.299032, 37.802189 ], [ -122.300920, 37.802867 ], [ -122.301950, 37.803477 ], [ -122.302637, 37.804020 ], [ -122.303667, 37.805105 ], [ -122.304611, 37.806800 ], [ -122.304869, 37.808089 ], [ -122.304010, 37.807343 ], [ -122.302465, 37.806936 ], [ -122.302380, 37.807139 ], [ -122.301779, 37.806868 ], [ -122.298260, 37.806054 ], [ -122.289677, 37.816836 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402200", "GEOID10": "06001402200", "NAME10": "4022", "NAMELSAD10": "Census Tract 4022", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 712761, "AWATER10": 0, "INTPTLAT10": "+37.8063512", "INTPTLON10": "-122.2963076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816836 ], [ -122.289934, 37.815615 ], [ -122.291565, 37.811411 ], [ -122.293711, 37.805037 ], [ -122.292252, 37.804766 ], [ -122.291822, 37.804223 ], [ -122.290621, 37.803749 ], [ -122.291050, 37.802528 ], [ -122.294998, 37.801985 ], [ -122.296801, 37.801918 ], [ -122.299032, 37.802189 ], [ -122.300920, 37.802867 ], [ -122.301950, 37.803477 ], [ -122.302637, 37.804020 ], [ -122.303667, 37.805105 ], [ -122.304611, 37.806800 ], [ -122.304869, 37.808089 ], [ -122.304010, 37.807343 ], [ -122.302465, 37.806936 ], [ -122.302380, 37.807139 ], [ -122.301779, 37.806868 ], [ -122.298260, 37.806054 ], [ -122.289677, 37.816836 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "982000", "GEOID10": "06001982000", "NAME10": "9820", "NAMELSAD10": "Census Tract 9820", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1269472, "AWATER10": 269260, "INTPTLAT10": "+37.7961258", "INTPTLON10": "-122.2943959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.802731 ], [ -122.285643, 37.802460 ], [ -122.283325, 37.801714 ], [ -122.279634, 37.800222 ], [ -122.282038, 37.796424 ], [ -122.283754, 37.794796 ], [ -122.284269, 37.793779 ], [ -122.294741, 37.792490 ], [ -122.314653, 37.794728 ], [ -122.313194, 37.795271 ], [ -122.311049, 37.795542 ], [ -122.307701, 37.795814 ], [ -122.300835, 37.796899 ], [ -122.300835, 37.797374 ], [ -122.298346, 37.797781 ], [ -122.294140, 37.798730 ], [ -122.290363, 37.799340 ], [ -122.289848, 37.799815 ], [ -122.288647, 37.802731 ], [ -122.287359, 37.802731 ] ] ] } } , @@ -2154,7 +2154,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "983200", "GEOID10": "06001983200", "NAME10": "9832", "NAMELSAD10": "Census Tract 9832", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 493636, "AWATER10": 163937, "INTPTLAT10": "+37.7959455", "INTPTLON10": "-122.2772680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.279549, 37.800426 ], [ -122.279119, 37.800019 ], [ -122.278433, 37.799544 ], [ -122.270107, 37.796492 ], [ -122.272768, 37.792219 ], [ -122.273626, 37.792219 ], [ -122.274141, 37.791337 ], [ -122.276287, 37.792422 ], [ -122.284269, 37.793779 ], [ -122.283754, 37.794796 ], [ -122.282038, 37.796424 ], [ -122.279549, 37.800426 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403400", "GEOID10": "06001403400", "NAME10": "4034", "NAMELSAD10": "Census Tract 4034", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660252, "AWATER10": 602433, "INTPTLAT10": "+37.8047578", "INTPTLON10": "-122.2616693" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.262297, 37.810937 ], [ -122.260408, 37.810598 ], [ -122.259207, 37.809716 ], [ -122.258434, 37.809377 ], [ -122.257318, 37.809106 ], [ -122.256117, 37.808970 ], [ -122.256289, 37.808224 ], [ -122.255945, 37.807478 ], [ -122.254915, 37.807750 ], [ -122.253199, 37.807750 ], [ -122.252855, 37.808021 ], [ -122.252769, 37.808699 ], [ -122.251139, 37.808631 ], [ -122.250452, 37.808835 ], [ -122.250109, 37.809106 ], [ -122.249165, 37.808360 ], [ -122.250795, 37.804698 ], [ -122.251396, 37.804291 ], [ -122.252855, 37.804020 ], [ -122.253284, 37.803816 ], [ -122.253456, 37.803613 ], [ -122.253799, 37.802799 ], [ -122.254400, 37.801985 ], [ -122.254400, 37.800697 ], [ -122.254915, 37.800086 ], [ -122.255602, 37.799951 ], [ -122.256546, 37.800019 ], [ -122.257404, 37.799815 ], [ -122.258091, 37.799476 ], [ -122.258949, 37.798594 ], [ -122.259293, 37.798459 ], [ -122.260838, 37.798933 ], [ -122.262554, 37.799205 ], [ -122.267275, 37.801036 ], [ -122.264271, 37.805919 ], [ -122.265472, 37.806326 ], [ -122.265987, 37.806936 ], [ -122.264528, 37.807953 ], [ -122.264528, 37.808089 ], [ -122.263670, 37.808360 ], [ -122.263155, 37.808902 ], [ -122.262726, 37.810123 ], [ -122.263069, 37.810937 ], [ -122.262297, 37.810937 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403400", "GEOID10": "06001403400", "NAME10": "4034", "NAMELSAD10": "Census Tract 4034", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660252, "AWATER10": 602433, "INTPTLAT10": "+37.8047578", "INTPTLON10": "-122.2616693" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.262297, 37.810937 ], [ -122.260408, 37.810598 ], [ -122.259207, 37.809716 ], [ -122.258434, 37.809377 ], [ -122.257318, 37.809106 ], [ -122.256117, 37.808970 ], [ -122.256289, 37.808224 ], [ -122.255945, 37.807478 ], [ -122.254915, 37.807750 ], [ -122.253199, 37.807750 ], [ -122.252855, 37.808021 ], [ -122.252769, 37.808699 ], [ -122.251139, 37.808631 ], [ -122.250452, 37.808835 ], [ -122.250109, 37.809106 ], [ -122.249165, 37.808360 ], [ -122.250795, 37.804698 ], [ -122.251396, 37.804291 ], [ -122.252855, 37.804020 ], [ -122.253284, 37.803816 ], [ -122.253456, 37.803613 ], [ -122.253799, 37.802799 ], [ -122.254400, 37.801985 ], [ -122.254400, 37.800697 ], [ -122.254915, 37.800086 ], [ -122.255602, 37.799951 ], [ -122.256546, 37.800019 ], [ -122.257404, 37.799815 ], [ -122.258177, 37.799408 ], [ -122.258949, 37.798594 ], [ -122.259293, 37.798459 ], [ -122.260838, 37.798933 ], [ -122.262554, 37.799205 ], [ -122.267275, 37.801036 ], [ -122.264271, 37.805919 ], [ -122.265472, 37.806326 ], [ -122.265987, 37.806936 ], [ -122.264528, 37.807953 ], [ -122.264528, 37.808089 ], [ -122.263670, 37.808360 ], [ -122.263155, 37.808902 ], [ -122.262726, 37.810123 ], [ -122.263069, 37.810937 ], [ -122.262297, 37.810937 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406000", "GEOID10": "06001406000", "NAME10": "4060", "NAMELSAD10": "Census Tract 4060", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2114682, "AWATER10": 566057, "INTPTLAT10": "+37.7875675", "INTPTLON10": "-122.2461840" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.257147, 37.798730 ], [ -122.247190, 37.789913 ], [ -122.245474, 37.789099 ], [ -122.235861, 37.783401 ], [ -122.236633, 37.782587 ], [ -122.238607, 37.783740 ], [ -122.238693, 37.783537 ], [ -122.238522, 37.783130 ], [ -122.237577, 37.782451 ], [ -122.237234, 37.782044 ], [ -122.236633, 37.778245 ], [ -122.236633, 37.777567 ], [ -122.236032, 37.776753 ], [ -122.236290, 37.776617 ], [ -122.236118, 37.774718 ], [ -122.235775, 37.773564 ], [ -122.235861, 37.772547 ], [ -122.236547, 37.771732 ], [ -122.240667, 37.774311 ], [ -122.244873, 37.777363 ], [ -122.244959, 37.780891 ], [ -122.246161, 37.783401 ], [ -122.250538, 37.786114 ], [ -122.254744, 37.786725 ], [ -122.255516, 37.786318 ], [ -122.256632, 37.785436 ], [ -122.257833, 37.784215 ], [ -122.268391, 37.788014 ], [ -122.264442, 37.790659 ], [ -122.262983, 37.790795 ], [ -122.262983, 37.791134 ], [ -122.263241, 37.791541 ], [ -122.262726, 37.791541 ], [ -122.262039, 37.792355 ], [ -122.261696, 37.793372 ], [ -122.261095, 37.794050 ], [ -122.261095, 37.795068 ], [ -122.260065, 37.795407 ], [ -122.259550, 37.796221 ], [ -122.259464, 37.796628 ], [ -122.259464, 37.797848 ], [ -122.260237, 37.798255 ], [ -122.259378, 37.797984 ], [ -122.258692, 37.797984 ], [ -122.259378, 37.798323 ], [ -122.259378, 37.798459 ], [ -122.259121, 37.798323 ], [ -122.258091, 37.798323 ], [ -122.257147, 37.798730 ] ] ] } } , @@ -2190,7 +2190,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400100", "GEOID10": "06001400100", "NAME10": "4001", "NAMELSAD10": "Census Tract 4001", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6882245, "AWATER10": 0, "INTPTLAT10": "+37.8675947", "INTPTLON10": "-122.2319033" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.246675, 37.885219 ], [ -122.244015, 37.883186 ], [ -122.241955, 37.881899 ], [ -122.239895, 37.882915 ], [ -122.238693, 37.883322 ], [ -122.230968, 37.881289 ], [ -122.225733, 37.879189 ], [ -122.223845, 37.878309 ], [ -122.221527, 37.875531 ], [ -122.217321, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.219124, 37.867197 ], [ -122.221441, 37.865029 ], [ -122.220325, 37.864419 ], [ -122.217493, 37.861980 ], [ -122.214746, 37.859472 ], [ -122.213459, 37.857846 ], [ -122.212343, 37.857236 ], [ -122.213631, 37.855881 ], [ -122.213974, 37.855677 ], [ -122.214060, 37.855881 ], [ -122.214403, 37.856016 ], [ -122.213802, 37.856016 ], [ -122.214661, 37.856287 ], [ -122.215261, 37.856152 ], [ -122.215691, 37.856220 ], [ -122.216206, 37.856016 ], [ -122.216549, 37.856016 ], [ -122.216721, 37.856084 ], [ -122.216635, 37.856626 ], [ -122.217579, 37.856423 ], [ -122.217836, 37.856491 ], [ -122.217836, 37.857372 ], [ -122.218609, 37.857304 ], [ -122.219296, 37.857643 ], [ -122.219210, 37.858320 ], [ -122.219639, 37.858727 ], [ -122.219381, 37.859540 ], [ -122.219896, 37.859472 ], [ -122.220240, 37.859676 ], [ -122.220669, 37.860218 ], [ -122.221012, 37.860218 ], [ -122.221441, 37.858998 ], [ -122.222042, 37.858862 ], [ -122.222042, 37.858320 ], [ -122.222643, 37.857778 ], [ -122.222214, 37.857304 ], [ -122.222300, 37.856897 ], [ -122.221613, 37.855949 ], [ -122.221613, 37.855135 ], [ -122.222557, 37.854864 ], [ -122.223501, 37.855068 ], [ -122.223158, 37.853915 ], [ -122.223244, 37.853712 ], [ -122.223930, 37.853577 ], [ -122.224102, 37.853441 ], [ -122.223587, 37.852831 ], [ -122.223501, 37.852153 ], [ -122.223759, 37.852018 ], [ -122.224617, 37.851815 ], [ -122.224531, 37.851611 ], [ -122.224188, 37.851205 ], [ -122.224188, 37.851001 ], [ -122.224360, 37.850798 ], [ -122.224789, 37.850662 ], [ -122.225132, 37.850256 ], [ -122.225904, 37.850188 ], [ -122.226591, 37.850324 ], [ -122.226763, 37.849917 ], [ -122.231398, 37.850866 ], [ -122.232342, 37.851408 ], [ -122.232943, 37.851543 ], [ -122.233543, 37.852221 ], [ -122.234144, 37.852492 ], [ -122.234573, 37.856491 ], [ -122.234659, 37.857101 ], [ -122.234917, 37.857507 ], [ -122.236977, 37.857643 ], [ -122.237663, 37.857304 ], [ -122.238522, 37.857304 ], [ -122.239380, 37.857168 ], [ -122.241697, 37.857236 ], [ -122.242212, 37.857575 ], [ -122.243328, 37.858727 ], [ -122.243929, 37.858591 ], [ -122.243929, 37.860286 ], [ -122.244272, 37.862657 ], [ -122.244616, 37.863674 ], [ -122.244873, 37.866452 ], [ -122.245131, 37.867739 ], [ -122.245045, 37.868349 ], [ -122.245302, 37.869433 ], [ -122.245216, 37.872753 ], [ -122.246590, 37.882577 ], [ -122.246504, 37.884744 ], [ -122.246675, 37.885219 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "426200", "GEOID10": "06001426200", "NAME10": "4262", "NAMELSAD10": "Census Tract 4262", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1353796, "AWATER10": 0, "INTPTLAT10": "+37.8246260", "INTPTLON10": "-122.2406227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.237234, 37.830802 ], [ -122.236547, 37.830531 ], [ -122.235260, 37.830531 ], [ -122.232256, 37.825040 ], [ -122.231913, 37.824565 ], [ -122.231483, 37.824430 ], [ -122.231741, 37.824226 ], [ -122.232599, 37.823955 ], [ -122.233801, 37.823006 ], [ -122.234144, 37.822938 ], [ -122.234488, 37.823141 ], [ -122.235346, 37.823006 ], [ -122.235775, 37.823277 ], [ -122.236032, 37.823277 ], [ -122.236290, 37.823141 ], [ -122.236462, 37.822735 ], [ -122.237921, 37.821718 ], [ -122.238350, 37.820972 ], [ -122.238264, 37.820497 ], [ -122.237234, 37.820768 ], [ -122.236547, 37.820226 ], [ -122.237492, 37.819141 ], [ -122.237577, 37.818463 ], [ -122.238865, 37.818124 ], [ -122.239294, 37.817853 ], [ -122.243156, 37.818667 ], [ -122.244530, 37.819209 ], [ -122.245560, 37.819819 ], [ -122.245646, 37.819819 ], [ -122.246418, 37.820701 ], [ -122.247448, 37.821582 ], [ -122.249336, 37.822938 ], [ -122.248821, 37.823345 ], [ -122.249336, 37.823616 ], [ -122.248135, 37.824769 ], [ -122.247620, 37.826192 ], [ -122.244358, 37.828158 ], [ -122.243156, 37.830057 ], [ -122.242298, 37.830057 ], [ -122.240925, 37.830463 ], [ -122.239637, 37.830463 ], [ -122.237835, 37.830599 ], [ -122.237234, 37.830802 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "426200", "GEOID10": "06001426200", "NAME10": "4262", "NAMELSAD10": "Census Tract 4262", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1353796, "AWATER10": 0, "INTPTLAT10": "+37.8246260", "INTPTLON10": "-122.2406227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.237234, 37.830802 ], [ -122.236547, 37.830531 ], [ -122.235260, 37.830531 ], [ -122.232256, 37.825040 ], [ -122.231913, 37.824565 ], [ -122.231483, 37.824430 ], [ -122.231741, 37.824226 ], [ -122.232599, 37.823955 ], [ -122.233801, 37.823006 ], [ -122.234144, 37.822938 ], [ -122.234488, 37.823141 ], [ -122.235346, 37.823006 ], [ -122.235775, 37.823277 ], [ -122.236032, 37.823277 ], [ -122.236290, 37.823141 ], [ -122.236462, 37.822735 ], [ -122.237921, 37.821718 ], [ -122.238350, 37.820972 ], [ -122.238264, 37.820497 ], [ -122.237234, 37.820768 ], [ -122.236547, 37.820226 ], [ -122.237492, 37.819141 ], [ -122.237577, 37.818463 ], [ -122.238865, 37.818124 ], [ -122.239294, 37.817853 ], [ -122.243156, 37.818667 ], [ -122.244530, 37.819209 ], [ -122.245560, 37.819819 ], [ -122.245646, 37.819819 ], [ -122.246418, 37.820701 ], [ -122.247362, 37.821514 ], [ -122.249336, 37.822938 ], [ -122.248821, 37.823345 ], [ -122.249336, 37.823616 ], [ -122.248135, 37.824769 ], [ -122.247620, 37.826192 ], [ -122.244358, 37.828158 ], [ -122.243156, 37.830057 ], [ -122.242298, 37.830057 ], [ -122.240925, 37.830463 ], [ -122.239637, 37.830463 ], [ -122.237835, 37.830599 ], [ -122.237234, 37.830802 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404200", "GEOID10": "06001404200", "NAME10": "4042", "NAMELSAD10": "Census Tract 4042", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2728909, "AWATER10": 0, "INTPTLAT10": "+37.8361078", "INTPTLON10": "-122.2344651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.227192, 37.842936 ], [ -122.226763, 37.842800 ], [ -122.225904, 37.842123 ], [ -122.224789, 37.841648 ], [ -122.222643, 37.838869 ], [ -122.219725, 37.836496 ], [ -122.216978, 37.832633 ], [ -122.217751, 37.832972 ], [ -122.218351, 37.832972 ], [ -122.221613, 37.832565 ], [ -122.221956, 37.832429 ], [ -122.222471, 37.831345 ], [ -122.222900, 37.830734 ], [ -122.223244, 37.830531 ], [ -122.224102, 37.830395 ], [ -122.224445, 37.830192 ], [ -122.225132, 37.831345 ], [ -122.226334, 37.831955 ], [ -122.226849, 37.832090 ], [ -122.227020, 37.832294 ], [ -122.228050, 37.833039 ], [ -122.232256, 37.831684 ], [ -122.236032, 37.831006 ], [ -122.236891, 37.830734 ], [ -122.237234, 37.830802 ], [ -122.237835, 37.830599 ], [ -122.239037, 37.830463 ], [ -122.240925, 37.830463 ], [ -122.242298, 37.830057 ], [ -122.242985, 37.829989 ], [ -122.243242, 37.830057 ], [ -122.243929, 37.830395 ], [ -122.245045, 37.832022 ], [ -122.246075, 37.832429 ], [ -122.246933, 37.833039 ], [ -122.248735, 37.831684 ], [ -122.249594, 37.832429 ], [ -122.250538, 37.833649 ], [ -122.252426, 37.834531 ], [ -122.250795, 37.837107 ], [ -122.249336, 37.837174 ], [ -122.243843, 37.839343 ], [ -122.241182, 37.839886 ], [ -122.239466, 37.840902 ], [ -122.237406, 37.840902 ], [ -122.236891, 37.840970 ], [ -122.236376, 37.841174 ], [ -122.235518, 37.842055 ], [ -122.235003, 37.842394 ], [ -122.231741, 37.842800 ], [ -122.230625, 37.842461 ], [ -122.228909, 37.842394 ], [ -122.227879, 37.842868 ], [ -122.227192, 37.842936 ] ] ] } } , @@ -2210,9 +2210,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405100", "GEOID10": "06001405100", "NAME10": "4051", "NAMELSAD10": "Census Tract 4051", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1265693, "AWATER10": 0, "INTPTLAT10": "+37.8114477", "INTPTLON10": "-122.2321836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.233286, 37.816497 ], [ -122.232170, 37.816158 ], [ -122.228565, 37.815480 ], [ -122.220154, 37.813513 ], [ -122.220926, 37.813310 ], [ -122.221613, 37.812768 ], [ -122.221870, 37.811750 ], [ -122.222643, 37.810869 ], [ -122.223415, 37.810462 ], [ -122.224617, 37.810123 ], [ -122.225132, 37.809852 ], [ -122.225990, 37.809174 ], [ -122.226849, 37.808699 ], [ -122.227449, 37.808156 ], [ -122.230539, 37.807207 ], [ -122.232084, 37.807207 ], [ -122.233028, 37.806868 ], [ -122.235003, 37.807207 ], [ -122.237148, 37.807004 ], [ -122.238092, 37.807885 ], [ -122.238607, 37.808156 ], [ -122.239380, 37.808360 ], [ -122.240238, 37.808835 ], [ -122.243242, 37.811005 ], [ -122.242212, 37.811547 ], [ -122.240839, 37.812971 ], [ -122.239208, 37.814056 ], [ -122.238092, 37.815073 ], [ -122.237577, 37.814734 ], [ -122.235775, 37.814395 ], [ -122.233200, 37.814598 ], [ -122.231998, 37.814327 ], [ -122.232857, 37.816022 ], [ -122.233372, 37.816090 ], [ -122.233286, 37.816497 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405301", "GEOID10": "06001405301", "NAME10": "4053.01", "NAMELSAD10": "Census Tract 4053.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 227753, "AWATER10": 0, "INTPTLAT10": "+37.8020757", "INTPTLON10": "-122.2513558" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.250538, 37.805241 ], [ -122.249336, 37.804834 ], [ -122.248392, 37.800426 ], [ -122.249165, 37.800222 ], [ -122.250452, 37.800154 ], [ -122.250109, 37.799815 ], [ -122.250967, 37.799137 ], [ -122.251740, 37.799679 ], [ -122.253885, 37.800426 ], [ -122.254486, 37.800561 ], [ -122.254486, 37.801850 ], [ -122.253799, 37.802799 ], [ -122.253284, 37.803816 ], [ -122.252598, 37.804088 ], [ -122.251396, 37.804291 ], [ -122.250795, 37.804698 ], [ -122.250538, 37.805241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405301", "GEOID10": "06001405301", "NAME10": "4053.01", "NAMELSAD10": "Census Tract 4053.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 227753, "AWATER10": 0, "INTPTLAT10": "+37.8020757", "INTPTLON10": "-122.2513558" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.250538, 37.805241 ], [ -122.249336, 37.804834 ], [ -122.248392, 37.800426 ], [ -122.249250, 37.800222 ], [ -122.250452, 37.800154 ], [ -122.250109, 37.799815 ], [ -122.250967, 37.799137 ], [ -122.251740, 37.799679 ], [ -122.253885, 37.800426 ], [ -122.254486, 37.800561 ], [ -122.254486, 37.801850 ], [ -122.253799, 37.802799 ], [ -122.253284, 37.803816 ], [ -122.252598, 37.804088 ], [ -122.251396, 37.804291 ], [ -122.250795, 37.804698 ], [ -122.250538, 37.805241 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405302", "GEOID10": "06001405302", "NAME10": "4053.02", "NAMELSAD10": "Census Tract 4053.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 202347, "AWATER10": 0, "INTPTLAT10": "+37.7985014", "INTPTLON10": "-122.2542495" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.254314, 37.800561 ], [ -122.251740, 37.799679 ], [ -122.250109, 37.798391 ], [ -122.253799, 37.795746 ], [ -122.257147, 37.798730 ], [ -122.257919, 37.798391 ], [ -122.258434, 37.798323 ], [ -122.259121, 37.798323 ], [ -122.259550, 37.798527 ], [ -122.259121, 37.798459 ], [ -122.258091, 37.799476 ], [ -122.257404, 37.799815 ], [ -122.256546, 37.800019 ], [ -122.255259, 37.800019 ], [ -122.254915, 37.800086 ], [ -122.254486, 37.800561 ], [ -122.254314, 37.800561 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405302", "GEOID10": "06001405302", "NAME10": "4053.02", "NAMELSAD10": "Census Tract 4053.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 202347, "AWATER10": 0, "INTPTLAT10": "+37.7985014", "INTPTLON10": "-122.2542495" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.254314, 37.800561 ], [ -122.251740, 37.799679 ], [ -122.250109, 37.798391 ], [ -122.253799, 37.795746 ], [ -122.257147, 37.798730 ], [ -122.257919, 37.798391 ], [ -122.258434, 37.798323 ], [ -122.259121, 37.798323 ], [ -122.259550, 37.798527 ], [ -122.259121, 37.798459 ], [ -122.258177, 37.799408 ], [ -122.257404, 37.799815 ], [ -122.256546, 37.800019 ], [ -122.255259, 37.800019 ], [ -122.254915, 37.800086 ], [ -122.254486, 37.800561 ], [ -122.254314, 37.800561 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405401", "GEOID10": "06001405401", "NAME10": "4054.01", "NAMELSAD10": "Census Tract 4054.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 313929, "AWATER10": 0, "INTPTLAT10": "+37.7965384", "INTPTLON10": "-122.2494562" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.248993, 37.800290 ], [ -122.244959, 37.796763 ], [ -122.250452, 37.792829 ], [ -122.253799, 37.795746 ], [ -122.250109, 37.798391 ], [ -122.250967, 37.799137 ], [ -122.250109, 37.799815 ], [ -122.250538, 37.800086 ], [ -122.248993, 37.800290 ] ] ] } } , @@ -2232,7 +2232,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405700", "GEOID10": "06001405700", "NAME10": "4057", "NAMELSAD10": "Census Tract 4057", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 546860, "AWATER10": 0, "INTPTLAT10": "+37.7982307", "INTPTLON10": "-122.2296737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.231140, 37.802596 ], [ -122.229853, 37.801578 ], [ -122.228394, 37.800900 ], [ -122.224188, 37.799951 ], [ -122.224703, 37.798527 ], [ -122.225389, 37.797509 ], [ -122.226677, 37.793508 ], [ -122.228308, 37.793779 ], [ -122.231913, 37.795949 ], [ -122.230625, 37.797306 ], [ -122.230539, 37.797441 ], [ -122.233114, 37.796560 ], [ -122.236032, 37.798391 ], [ -122.234831, 37.799747 ], [ -122.231140, 37.802596 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405800", "GEOID10": "06001405800", "NAME10": "4058", "NAMELSAD10": "Census Tract 4058", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 519054, "AWATER10": 0, "INTPTLAT10": "+37.7939452", "INTPTLON10": "-122.2330985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236032, 37.798391 ], [ -122.233114, 37.796560 ], [ -122.230539, 37.797441 ], [ -122.230625, 37.797306 ], [ -122.231913, 37.795949 ], [ -122.228308, 37.793779 ], [ -122.226677, 37.793508 ], [ -122.227707, 37.792015 ], [ -122.228308, 37.791473 ], [ -122.229080, 37.790727 ], [ -122.230196, 37.790184 ], [ -122.230883, 37.789438 ], [ -122.237492, 37.793508 ], [ -122.236805, 37.794254 ], [ -122.237921, 37.794932 ], [ -122.239037, 37.794525 ], [ -122.239809, 37.795135 ], [ -122.236977, 37.797102 ], [ -122.236032, 37.798391 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405800", "GEOID10": "06001405800", "NAME10": "4058", "NAMELSAD10": "Census Tract 4058", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 519054, "AWATER10": 0, "INTPTLAT10": "+37.7939452", "INTPTLON10": "-122.2330985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236032, 37.798391 ], [ -122.233114, 37.796560 ], [ -122.230539, 37.797441 ], [ -122.230625, 37.797306 ], [ -122.231913, 37.795949 ], [ -122.228308, 37.793779 ], [ -122.226677, 37.793508 ], [ -122.227621, 37.792151 ], [ -122.228308, 37.791473 ], [ -122.229080, 37.790727 ], [ -122.230196, 37.790184 ], [ -122.230883, 37.789438 ], [ -122.237492, 37.793508 ], [ -122.236805, 37.794254 ], [ -122.237921, 37.794932 ], [ -122.239037, 37.794525 ], [ -122.239809, 37.795135 ], [ -122.236977, 37.797102 ], [ -122.236032, 37.798391 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404800", "GEOID10": "06001404800", "NAME10": "4048", "NAMELSAD10": "Census Tract 4048", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 628405, "AWATER10": 0, "INTPTLAT10": "+37.8055076", "INTPTLON10": "-122.2131962" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.213373, 37.812157 ], [ -122.212086, 37.811411 ], [ -122.211571, 37.810665 ], [ -122.210884, 37.810598 ], [ -122.211142, 37.810326 ], [ -122.212000, 37.809920 ], [ -122.211485, 37.809377 ], [ -122.210627, 37.808835 ], [ -122.210112, 37.808767 ], [ -122.209768, 37.808563 ], [ -122.209854, 37.808224 ], [ -122.209597, 37.807817 ], [ -122.209682, 37.806936 ], [ -122.209339, 37.806868 ], [ -122.208481, 37.807071 ], [ -122.207365, 37.806393 ], [ -122.214060, 37.799815 ], [ -122.218266, 37.800832 ], [ -122.217836, 37.801375 ], [ -122.216549, 37.803884 ], [ -122.216463, 37.804630 ], [ -122.215776, 37.805376 ], [ -122.215862, 37.805783 ], [ -122.215691, 37.806326 ], [ -122.215776, 37.807682 ], [ -122.215433, 37.809174 ], [ -122.214918, 37.810259 ], [ -122.214317, 37.810598 ], [ -122.213373, 37.812157 ] ] ] } } , @@ -2272,7 +2272,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406201", "GEOID10": "06001406201", "NAME10": "4062.01", "NAMELSAD10": "Census Tract 4062.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 408075, "AWATER10": 0, "INTPTLAT10": "+37.7850448", "INTPTLON10": "-122.2307360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.230883, 37.789438 ], [ -122.225304, 37.786114 ], [ -122.226763, 37.784486 ], [ -122.227535, 37.784961 ], [ -122.231483, 37.780755 ], [ -122.235861, 37.783401 ], [ -122.232513, 37.786521 ], [ -122.231998, 37.787267 ], [ -122.231827, 37.788353 ], [ -122.230883, 37.789438 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793508 ], [ -122.225819, 37.793304 ], [ -122.221355, 37.790795 ], [ -122.219982, 37.790523 ], [ -122.222214, 37.784893 ], [ -122.224789, 37.785775 ], [ -122.230883, 37.789438 ], [ -122.230196, 37.790184 ], [ -122.229080, 37.790727 ], [ -122.228308, 37.791473 ], [ -122.227707, 37.792015 ], [ -122.226677, 37.793508 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793508 ], [ -122.225819, 37.793304 ], [ -122.221355, 37.790795 ], [ -122.219982, 37.790523 ], [ -122.222214, 37.784893 ], [ -122.224789, 37.785775 ], [ -122.230883, 37.789438 ], [ -122.230196, 37.790184 ], [ -122.229080, 37.790727 ], [ -122.228308, 37.791473 ], [ -122.227621, 37.792151 ], [ -122.226677, 37.793508 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406202", "GEOID10": "06001406202", "NAME10": "4062.02", "NAMELSAD10": "Census Tract 4062.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 392184, "AWATER10": 0, "INTPTLAT10": "+37.7819786", "INTPTLON10": "-122.2265557" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225304, 37.786114 ], [ -122.224531, 37.785707 ], [ -122.222214, 37.784893 ], [ -122.223072, 37.782994 ], [ -122.225819, 37.777635 ], [ -122.228050, 37.778720 ], [ -122.231483, 37.780755 ], [ -122.227535, 37.784961 ], [ -122.226763, 37.784486 ], [ -122.225304, 37.786114 ] ] ] } } , @@ -2282,17 +2282,17 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407102", "GEOID10": "06001407102", "NAME10": "4071.02", "NAMELSAD10": "Census Tract 4071.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660864, "AWATER10": 0, "INTPTLAT10": "+37.7807761", "INTPTLON10": "-122.2102385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.210369, 37.787946 ], [ -122.204103, 37.782519 ], [ -122.210541, 37.775735 ], [ -122.211742, 37.774650 ], [ -122.216635, 37.778992 ], [ -122.208996, 37.784351 ], [ -122.211914, 37.786996 ], [ -122.210369, 37.787946 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406100", "GEOID10": "06001406100", "NAME10": "4061", "NAMELSAD10": "Census Tract 4061", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1842465, "AWATER10": 110763, "INTPTLAT10": "+37.7741552", "INTPTLON10": "-122.2275943" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.238607, 37.783740 ], [ -122.236633, 37.782587 ], [ -122.235861, 37.783401 ], [ -122.235689, 37.783265 ], [ -122.228050, 37.778720 ], [ -122.214746, 37.772343 ], [ -122.223759, 37.765558 ], [ -122.225132, 37.764337 ], [ -122.226934, 37.766644 ], [ -122.230368, 37.768815 ], [ -122.236547, 37.771732 ], [ -122.235861, 37.772547 ], [ -122.235775, 37.773564 ], [ -122.236118, 37.774718 ], [ -122.236290, 37.776617 ], [ -122.236032, 37.776753 ], [ -122.236633, 37.777567 ], [ -122.236633, 37.778245 ], [ -122.237234, 37.782044 ], [ -122.237577, 37.782451 ], [ -122.238522, 37.783130 ], [ -122.238693, 37.783469 ], [ -122.238607, 37.783740 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407200", "GEOID10": "06001407200", "NAME10": "4072", "NAMELSAD10": "Census Tract 4072", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 715067, "AWATER10": 0, "INTPTLAT10": "+37.7777848", "INTPTLON10": "-122.2192819" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.222729, 37.783740 ], [ -122.220154, 37.782926 ], [ -122.219210, 37.782383 ], [ -122.218523, 37.780687 ], [ -122.211742, 37.774650 ], [ -122.214746, 37.772343 ], [ -122.225819, 37.777635 ], [ -122.222729, 37.783740 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406100", "GEOID10": "06001406100", "NAME10": "4061", "NAMELSAD10": "Census Tract 4061", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1842465, "AWATER10": 110763, "INTPTLAT10": "+37.7741552", "INTPTLON10": "-122.2275943" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.238607, 37.783740 ], [ -122.236633, 37.782587 ], [ -122.235861, 37.783401 ], [ -122.235689, 37.783265 ], [ -122.228050, 37.778720 ], [ -122.214746, 37.772343 ], [ -122.223759, 37.765558 ], [ -122.225132, 37.764337 ], [ -122.226934, 37.766644 ], [ -122.230368, 37.768815 ], [ -122.236547, 37.771732 ], [ -122.235861, 37.772547 ], [ -122.235775, 37.773564 ], [ -122.236118, 37.774718 ], [ -122.236290, 37.776617 ], [ -122.236032, 37.776753 ], [ -122.236633, 37.777567 ], [ -122.236633, 37.778245 ], [ -122.237234, 37.782044 ], [ -122.237577, 37.782451 ], [ -122.238522, 37.783130 ], [ -122.238693, 37.783469 ], [ -122.238607, 37.783740 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407400", "GEOID10": "06001407400", "NAME10": "4074", "NAMELSAD10": "Census Tract 4074", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 511489, "AWATER10": 0, "INTPTLAT10": "+37.7710407", "INTPTLON10": "-122.2067479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.211742, 37.774650 ], [ -122.207451, 37.772682 ], [ -122.200756, 37.772614 ], [ -122.200756, 37.769222 ], [ -122.203674, 37.767119 ], [ -122.214746, 37.772343 ], [ -122.211742, 37.774650 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "427100", "GEOID10": "06001427100", "NAME10": "4271", "NAMELSAD10": "Census Tract 4271", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1025449, "AWATER10": 102516, "INTPTLAT10": "+37.7651160", "INTPTLON10": "-122.2309908" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236462, 37.771665 ], [ -122.230368, 37.768815 ], [ -122.226934, 37.766644 ], [ -122.225132, 37.764337 ], [ -122.223930, 37.759519 ], [ -122.223759, 37.754430 ], [ -122.225904, 37.756194 ], [ -122.225904, 37.757280 ], [ -122.229939, 37.760062 ], [ -122.229681, 37.760266 ], [ -122.230539, 37.760944 ], [ -122.232599, 37.762369 ], [ -122.240753, 37.766576 ], [ -122.236462, 37.771665 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428302", "GEOID10": "06001428302", "NAME10": "4283.02", "NAMELSAD10": "Census Tract 4283.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2236214, "AWATER10": 476593, "INTPTLAT10": "+37.7439709", "INTPTLON10": "-122.2497790" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.260065, 37.749204 ], [ -122.251654, 37.749069 ], [ -122.236204, 37.748526 ], [ -122.236204, 37.747372 ], [ -122.235689, 37.746897 ], [ -122.236719, 37.745607 ], [ -122.237148, 37.744454 ], [ -122.236805, 37.743571 ], [ -122.237663, 37.743164 ], [ -122.237835, 37.742757 ], [ -122.237835, 37.741467 ], [ -122.238865, 37.737055 ], [ -122.239122, 37.736444 ], [ -122.239895, 37.735494 ], [ -122.245646, 37.736852 ], [ -122.248735, 37.737191 ], [ -122.249937, 37.737666 ], [ -122.251053, 37.737870 ], [ -122.257233, 37.737938 ], [ -122.261009, 37.737802 ], [ -122.261610, 37.739227 ], [ -122.261696, 37.740585 ], [ -122.260065, 37.749204 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428302", "GEOID10": "06001428302", "NAME10": "4283.02", "NAMELSAD10": "Census Tract 4283.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2236214, "AWATER10": 476593, "INTPTLAT10": "+37.7439709", "INTPTLON10": "-122.2497790" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.260065, 37.749204 ], [ -122.251654, 37.749069 ], [ -122.236204, 37.748526 ], [ -122.236204, 37.747372 ], [ -122.235689, 37.746897 ], [ -122.236719, 37.745607 ], [ -122.237148, 37.744454 ], [ -122.236805, 37.743571 ], [ -122.237663, 37.743164 ], [ -122.237835, 37.742757 ], [ -122.237835, 37.741467 ], [ -122.238865, 37.737055 ], [ -122.239122, 37.736444 ], [ -122.239895, 37.735494 ], [ -122.245646, 37.736852 ], [ -122.248821, 37.737191 ], [ -122.249937, 37.737666 ], [ -122.251053, 37.737870 ], [ -122.257233, 37.737938 ], [ -122.261009, 37.737802 ], [ -122.261610, 37.739227 ], [ -122.261696, 37.740585 ], [ -122.260065, 37.749204 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225904, 37.749679 ], [ -122.226505, 37.747915 ], [ -122.226934, 37.745539 ], [ -122.225132, 37.745268 ], [ -122.225561, 37.731964 ], [ -122.225733, 37.731421 ], [ -122.226591, 37.730335 ], [ -122.226334, 37.726534 ], [ -122.228050, 37.726873 ], [ -122.228136, 37.726737 ], [ -122.236118, 37.718590 ], [ -122.236891, 37.718998 ], [ -122.244015, 37.724157 ], [ -122.248306, 37.727212 ], [ -122.248821, 37.727823 ], [ -122.256546, 37.721238 ], [ -122.264442, 37.732915 ], [ -122.261009, 37.737802 ], [ -122.257233, 37.737938 ], [ -122.251053, 37.737870 ], [ -122.249937, 37.737666 ], [ -122.248735, 37.737191 ], [ -122.245646, 37.736852 ], [ -122.239895, 37.735494 ], [ -122.239122, 37.736444 ], [ -122.238865, 37.737055 ], [ -122.237835, 37.741467 ], [ -122.237835, 37.742757 ], [ -122.237663, 37.743164 ], [ -122.236805, 37.743571 ], [ -122.237148, 37.744454 ], [ -122.236719, 37.745607 ], [ -122.235689, 37.746897 ], [ -122.236204, 37.747372 ], [ -122.236204, 37.748526 ], [ -122.225904, 37.749679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225904, 37.749679 ], [ -122.226505, 37.747915 ], [ -122.226934, 37.745539 ], [ -122.225132, 37.745268 ], [ -122.225561, 37.731964 ], [ -122.225733, 37.731421 ], [ -122.226591, 37.730335 ], [ -122.226334, 37.726534 ], [ -122.228050, 37.726873 ], [ -122.228136, 37.726737 ], [ -122.236118, 37.718590 ], [ -122.236891, 37.718998 ], [ -122.244015, 37.724157 ], [ -122.248306, 37.727212 ], [ -122.248821, 37.727823 ], [ -122.256546, 37.721238 ], [ -122.264442, 37.732915 ], [ -122.261009, 37.737802 ], [ -122.257233, 37.737938 ], [ -122.251053, 37.737870 ], [ -122.249937, 37.737666 ], [ -122.248821, 37.737191 ], [ -122.245646, 37.736852 ], [ -122.239895, 37.735494 ], [ -122.239122, 37.736444 ], [ -122.238865, 37.737055 ], [ -122.237835, 37.741467 ], [ -122.237835, 37.742757 ], [ -122.237663, 37.743164 ], [ -122.236805, 37.743571 ], [ -122.237148, 37.744454 ], [ -122.236719, 37.745607 ], [ -122.235689, 37.746897 ], [ -122.236204, 37.747372 ], [ -122.236204, 37.748526 ], [ -122.225904, 37.749679 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407000", "GEOID10": "06001407000", "NAME10": "4070", "NAMELSAD10": "Census Tract 4070", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 862396, "AWATER10": 0, "INTPTLAT10": "+37.7879430", "INTPTLON10": "-122.2024899" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.200670, 37.793711 ], [ -122.194834, 37.787267 ], [ -122.204103, 37.782519 ], [ -122.210369, 37.787946 ], [ -122.203674, 37.791880 ], [ -122.202902, 37.792355 ], [ -122.202730, 37.792287 ], [ -122.202044, 37.792897 ], [ -122.200670, 37.793711 ] ] ] } } , @@ -2312,7 +2312,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408800", "GEOID10": "06001408800", "NAME10": "4088", "NAMELSAD10": "Census Tract 4088", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1204352, "AWATER10": 0, "INTPTLAT10": "+37.7588039", "INTPTLON10": "-122.1969422" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.199469, 37.765151 ], [ -122.190456, 37.760808 ], [ -122.187881, 37.759723 ], [ -122.187023, 37.759248 ], [ -122.194319, 37.754566 ], [ -122.193890, 37.754430 ], [ -122.193203, 37.754633 ], [ -122.192430, 37.754769 ], [ -122.193117, 37.754158 ], [ -122.193289, 37.753819 ], [ -122.193289, 37.753548 ], [ -122.195263, 37.752258 ], [ -122.195520, 37.751987 ], [ -122.196636, 37.753073 ], [ -122.198095, 37.752190 ], [ -122.198696, 37.752733 ], [ -122.202473, 37.756058 ], [ -122.200842, 37.756737 ], [ -122.200842, 37.756805 ], [ -122.205563, 37.760808 ], [ -122.199469, 37.765151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408600", "GEOID10": "06001408600", "NAME10": "4086", "NAMELSAD10": "Census Tract 4086", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1061057, "AWATER10": 0, "INTPTLAT10": "+37.7661964", "INTPTLON10": "-122.1823031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.179728, 37.773903 ], [ -122.177925, 37.772547 ], [ -122.176723, 37.771325 ], [ -122.173204, 37.769629 ], [ -122.172003, 37.769154 ], [ -122.176638, 37.766305 ], [ -122.177753, 37.765355 ], [ -122.186680, 37.759655 ], [ -122.187023, 37.759248 ], [ -122.187881, 37.759723 ], [ -122.192774, 37.761962 ], [ -122.190199, 37.763658 ], [ -122.188997, 37.764676 ], [ -122.182903, 37.768611 ], [ -122.182388, 37.769086 ], [ -122.182131, 37.769561 ], [ -122.182045, 37.769222 ], [ -122.181530, 37.771393 ], [ -122.181616, 37.772072 ], [ -122.181959, 37.772411 ], [ -122.179728, 37.773903 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408600", "GEOID10": "06001408600", "NAME10": "4086", "NAMELSAD10": "Census Tract 4086", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1061057, "AWATER10": 0, "INTPTLAT10": "+37.7661964", "INTPTLON10": "-122.1823031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.179728, 37.773903 ], [ -122.177925, 37.772547 ], [ -122.176723, 37.771325 ], [ -122.173204, 37.769629 ], [ -122.172003, 37.769154 ], [ -122.176638, 37.766305 ], [ -122.177753, 37.765355 ], [ -122.184706, 37.760944 ], [ -122.186594, 37.759655 ], [ -122.187023, 37.759248 ], [ -122.187881, 37.759723 ], [ -122.192774, 37.761962 ], [ -122.190199, 37.763658 ], [ -122.188997, 37.764676 ], [ -122.182903, 37.768611 ], [ -122.182388, 37.769086 ], [ -122.182131, 37.769561 ], [ -122.182045, 37.769222 ], [ -122.181530, 37.771393 ], [ -122.181616, 37.772072 ], [ -122.181959, 37.772411 ], [ -122.179728, 37.773903 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408900", "GEOID10": "06001408900", "NAME10": "4089", "NAMELSAD10": "Census Tract 4089", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 802407, "AWATER10": 0, "INTPTLAT10": "+37.7541816", "INTPTLON10": "-122.1887803" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.187023, 37.759248 ], [ -122.179127, 37.755448 ], [ -122.179556, 37.755176 ], [ -122.184534, 37.752733 ], [ -122.184963, 37.753276 ], [ -122.191830, 37.750019 ], [ -122.192430, 37.749747 ], [ -122.193632, 37.748322 ], [ -122.198095, 37.752190 ], [ -122.196636, 37.753073 ], [ -122.195520, 37.751987 ], [ -122.195263, 37.752258 ], [ -122.193289, 37.753548 ], [ -122.193289, 37.753819 ], [ -122.193117, 37.754158 ], [ -122.192430, 37.754769 ], [ -122.193203, 37.754633 ], [ -122.193890, 37.754430 ], [ -122.194319, 37.754566 ], [ -122.187023, 37.759248 ] ] ] } } , @@ -2320,7 +2320,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408200", "GEOID10": "06001408200", "NAME10": "4082", "NAMELSAD10": "Census Tract 4082", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 901754, "AWATER10": 0, "INTPTLAT10": "+37.7751005", "INTPTLON10": "-122.1755727" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.175007, 37.780213 ], [ -122.174749, 37.779127 ], [ -122.173805, 37.778992 ], [ -122.173033, 37.778585 ], [ -122.171488, 37.777228 ], [ -122.170801, 37.776074 ], [ -122.169771, 37.774921 ], [ -122.169600, 37.774378 ], [ -122.169771, 37.774107 ], [ -122.168999, 37.773225 ], [ -122.168913, 37.772547 ], [ -122.169857, 37.770783 ], [ -122.171402, 37.769493 ], [ -122.172003, 37.769154 ], [ -122.173204, 37.769629 ], [ -122.176723, 37.771325 ], [ -122.177925, 37.772547 ], [ -122.180157, 37.774243 ], [ -122.184019, 37.776481 ], [ -122.182388, 37.777499 ], [ -122.181702, 37.778177 ], [ -122.180843, 37.779331 ], [ -122.180328, 37.779670 ], [ -122.179813, 37.779806 ], [ -122.176981, 37.779873 ], [ -122.175007, 37.780213 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408500", "GEOID10": "06001408500", "NAME10": "4085", "NAMELSAD10": "Census Tract 4085", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 831360, "AWATER10": 0, "INTPTLAT10": "+37.7604176", "INTPTLON10": "-122.1785112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.177153, 37.765830 ], [ -122.175350, 37.764676 ], [ -122.172518, 37.761894 ], [ -122.171230, 37.760808 ], [ -122.170544, 37.759994 ], [ -122.179470, 37.755651 ], [ -122.187023, 37.759248 ], [ -122.186680, 37.759655 ], [ -122.177753, 37.765355 ], [ -122.177153, 37.765830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408500", "GEOID10": "06001408500", "NAME10": "4085", "NAMELSAD10": "Census Tract 4085", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 831360, "AWATER10": 0, "INTPTLAT10": "+37.7604176", "INTPTLON10": "-122.1785112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.177153, 37.765830 ], [ -122.175350, 37.764676 ], [ -122.172518, 37.761894 ], [ -122.171230, 37.760808 ], [ -122.170544, 37.759994 ], [ -122.179470, 37.755651 ], [ -122.187023, 37.759248 ], [ -122.185478, 37.760401 ], [ -122.177753, 37.765355 ], [ -122.177153, 37.765830 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "409600", "GEOID10": "06001409600", "NAME10": "4096", "NAMELSAD10": "Census Tract 4096", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 747479, "AWATER10": 0, "INTPTLAT10": "+37.7532669", "INTPTLON10": "-122.1726197" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.172260, 37.759112 ], [ -122.167540, 37.752801 ], [ -122.167883, 37.752598 ], [ -122.167196, 37.751715 ], [ -122.168312, 37.751240 ], [ -122.167110, 37.749679 ], [ -122.172518, 37.747236 ], [ -122.178097, 37.754769 ], [ -122.178440, 37.755176 ], [ -122.179470, 37.755651 ], [ -122.172260, 37.759112 ] ] ] } } , @@ -2348,7 +2348,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410400", "GEOID10": "06001410400", "NAME10": "4104", "NAMELSAD10": "Census Tract 4104", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 706609, "AWATER10": 0, "INTPTLAT10": "+37.7408161", "INTPTLON10": "-122.1621741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.159472, 37.745064 ], [ -122.155094, 37.739092 ], [ -122.160759, 37.737463 ], [ -122.164106, 37.735901 ], [ -122.169170, 37.742757 ], [ -122.160501, 37.745064 ], [ -122.159472, 37.745064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410100", "GEOID10": "06001410100", "NAME10": "4101", "NAMELSAD10": "Census Tract 4101", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 784677, "AWATER10": 0, "INTPTLAT10": "+37.7478642", "INTPTLON10": "-122.1535285" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.152090, 37.754158 ], [ -122.151146, 37.753615 ], [ -122.151661, 37.752394 ], [ -122.151661, 37.751240 ], [ -122.151403, 37.750222 ], [ -122.149515, 37.746490 ], [ -122.148657, 37.745132 ], [ -122.149429, 37.744589 ], [ -122.147198, 37.743232 ], [ -122.146511, 37.742485 ], [ -122.147541, 37.741196 ], [ -122.148743, 37.740856 ], [ -122.151489, 37.742146 ], [ -122.152605, 37.742960 ], [ -122.153893, 37.744318 ], [ -122.156296, 37.746015 ], [ -122.159815, 37.751240 ], [ -122.160416, 37.752869 ], [ -122.159386, 37.753344 ], [ -122.157326, 37.753819 ], [ -122.156553, 37.753480 ], [ -122.155867, 37.752462 ], [ -122.154322, 37.751647 ], [ -122.153893, 37.751851 ], [ -122.152777, 37.753548 ], [ -122.152433, 37.753955 ], [ -122.152090, 37.754158 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410100", "GEOID10": "06001410100", "NAME10": "4101", "NAMELSAD10": "Census Tract 4101", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 784677, "AWATER10": 0, "INTPTLAT10": "+37.7478642", "INTPTLON10": "-122.1535285" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.152090, 37.754158 ], [ -122.151146, 37.753615 ], [ -122.151661, 37.752394 ], [ -122.151661, 37.751240 ], [ -122.151403, 37.750290 ], [ -122.149515, 37.746490 ], [ -122.148657, 37.745132 ], [ -122.149429, 37.744589 ], [ -122.147198, 37.743232 ], [ -122.146511, 37.742485 ], [ -122.147541, 37.741196 ], [ -122.148743, 37.740856 ], [ -122.151489, 37.742146 ], [ -122.152605, 37.742960 ], [ -122.153893, 37.744318 ], [ -122.156296, 37.746015 ], [ -122.159815, 37.751240 ], [ -122.160416, 37.752869 ], [ -122.159386, 37.753344 ], [ -122.157326, 37.753819 ], [ -122.156553, 37.753480 ], [ -122.155867, 37.752462 ], [ -122.154322, 37.751647 ], [ -122.153893, 37.751851 ], [ -122.152777, 37.753548 ], [ -122.152433, 37.753955 ], [ -122.152090, 37.754158 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410200", "GEOID10": "06001410200", "NAME10": "4102", "NAMELSAD10": "Census Tract 4102", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 585845, "AWATER10": 0, "INTPTLAT10": "+37.7453063", "INTPTLON10": "-122.1571742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.160416, 37.752869 ], [ -122.159815, 37.751240 ], [ -122.156296, 37.746015 ], [ -122.153893, 37.744318 ], [ -122.152605, 37.742960 ], [ -122.151747, 37.742349 ], [ -122.148743, 37.740856 ], [ -122.155094, 37.739092 ], [ -122.164021, 37.751172 ], [ -122.160416, 37.752869 ] ] ] } } , @@ -2370,9 +2370,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "409900", "GEOID10": "06001409900", "NAME10": "4099", "NAMELSAD10": "Census Tract 4099", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4498557, "AWATER10": 0, "INTPTLAT10": "+37.7619882", "INTPTLON10": "-122.1353845" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.144194, 37.773157 ], [ -122.143507, 37.773021 ], [ -122.141705, 37.772275 ], [ -122.139988, 37.770511 ], [ -122.139215, 37.769968 ], [ -122.138271, 37.769561 ], [ -122.137413, 37.769493 ], [ -122.136984, 37.769629 ], [ -122.135267, 37.770240 ], [ -122.134409, 37.770783 ], [ -122.133551, 37.770986 ], [ -122.131662, 37.770918 ], [ -122.131062, 37.770715 ], [ -122.130547, 37.770376 ], [ -122.129774, 37.769629 ], [ -122.129345, 37.769493 ], [ -122.128916, 37.769426 ], [ -122.128658, 37.769629 ], [ -122.128143, 37.769697 ], [ -122.126169, 37.767594 ], [ -122.122307, 37.760537 ], [ -122.118530, 37.754498 ], [ -122.118444, 37.754158 ], [ -122.116127, 37.749883 ], [ -122.115955, 37.748390 ], [ -122.120590, 37.745947 ], [ -122.121534, 37.747711 ], [ -122.122307, 37.748729 ], [ -122.122908, 37.749204 ], [ -122.124109, 37.751172 ], [ -122.124023, 37.751308 ], [ -122.125053, 37.751919 ], [ -122.126255, 37.752937 ], [ -122.127113, 37.754158 ], [ -122.128057, 37.755108 ], [ -122.129517, 37.756058 ], [ -122.131834, 37.756533 ], [ -122.133121, 37.756601 ], [ -122.134323, 37.757144 ], [ -122.135439, 37.757484 ], [ -122.137499, 37.757619 ], [ -122.138186, 37.757959 ], [ -122.139301, 37.757619 ], [ -122.139988, 37.757212 ], [ -122.140417, 37.757212 ], [ -122.141018, 37.757484 ], [ -122.141619, 37.757484 ], [ -122.143421, 37.757076 ], [ -122.144623, 37.756398 ], [ -122.145224, 37.756194 ], [ -122.145653, 37.755651 ], [ -122.145996, 37.755380 ], [ -122.148228, 37.754294 ], [ -122.148914, 37.754158 ], [ -122.149343, 37.753480 ], [ -122.150459, 37.753344 ], [ -122.151060, 37.753548 ], [ -122.151146, 37.753615 ], [ -122.150803, 37.754226 ], [ -122.149000, 37.755855 ], [ -122.148142, 37.756873 ], [ -122.147713, 37.758026 ], [ -122.147713, 37.759112 ], [ -122.147884, 37.759926 ], [ -122.148829, 37.761691 ], [ -122.150803, 37.764540 ], [ -122.152004, 37.765965 ], [ -122.154922, 37.770511 ], [ -122.156296, 37.772004 ], [ -122.155781, 37.772343 ], [ -122.155266, 37.772479 ], [ -122.154150, 37.772479 ], [ -122.153463, 37.772072 ], [ -122.152605, 37.771054 ], [ -122.152176, 37.770715 ], [ -122.151146, 37.770376 ], [ -122.150545, 37.770376 ], [ -122.148657, 37.770850 ], [ -122.148056, 37.771190 ], [ -122.145395, 37.772954 ], [ -122.144194, 37.773157 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410000", "GEOID10": "06001410000", "NAME10": "4100", "NAMELSAD10": "Census Tract 4100", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6784422, "AWATER10": 139197, "INTPTLAT10": "+37.7447566", "INTPTLON10": "-122.1332163" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138186, 37.757959 ], [ -122.137499, 37.757619 ], [ -122.135439, 37.757484 ], [ -122.134323, 37.757144 ], [ -122.133121, 37.756601 ], [ -122.131834, 37.756533 ], [ -122.129517, 37.756058 ], [ -122.128057, 37.755108 ], [ -122.127113, 37.754158 ], [ -122.126255, 37.752937 ], [ -122.125053, 37.751919 ], [ -122.124023, 37.751308 ], [ -122.124109, 37.751172 ], [ -122.122908, 37.749204 ], [ -122.122307, 37.748729 ], [ -122.121534, 37.747711 ], [ -122.120590, 37.745947 ], [ -122.113123, 37.749883 ], [ -122.112780, 37.748933 ], [ -122.112007, 37.748118 ], [ -122.111664, 37.747575 ], [ -122.111664, 37.747033 ], [ -122.112179, 37.746286 ], [ -122.112265, 37.745879 ], [ -122.112265, 37.744861 ], [ -122.112436, 37.743843 ], [ -122.113209, 37.742960 ], [ -122.113380, 37.742146 ], [ -122.113895, 37.741196 ], [ -122.114582, 37.740721 ], [ -122.114668, 37.740313 ], [ -122.115526, 37.739227 ], [ -122.115355, 37.736716 ], [ -122.115612, 37.735901 ], [ -122.116470, 37.734340 ], [ -122.117929, 37.732575 ], [ -122.119818, 37.731625 ], [ -122.122307, 37.729860 ], [ -122.124023, 37.728977 ], [ -122.124367, 37.728977 ], [ -122.125483, 37.729385 ], [ -122.126598, 37.729520 ], [ -122.127371, 37.729724 ], [ -122.130547, 37.730064 ], [ -122.130976, 37.730335 ], [ -122.131748, 37.731421 ], [ -122.131491, 37.731489 ], [ -122.130976, 37.731829 ], [ -122.130289, 37.732779 ], [ -122.130461, 37.732779 ], [ -122.130375, 37.733593 ], [ -122.130632, 37.733797 ], [ -122.131147, 37.733593 ], [ -122.132692, 37.734001 ], [ -122.134495, 37.734204 ], [ -122.135181, 37.733729 ], [ -122.136726, 37.731761 ], [ -122.137413, 37.731489 ], [ -122.137928, 37.731082 ], [ -122.138357, 37.730946 ], [ -122.138529, 37.731421 ], [ -122.138186, 37.731625 ], [ -122.138700, 37.732372 ], [ -122.138872, 37.733322 ], [ -122.139215, 37.733797 ], [ -122.139301, 37.734680 ], [ -122.139645, 37.734476 ], [ -122.140160, 37.734408 ], [ -122.140675, 37.736037 ], [ -122.141533, 37.737327 ], [ -122.142305, 37.737802 ], [ -122.147026, 37.743096 ], [ -122.149429, 37.744589 ], [ -122.148657, 37.745132 ], [ -122.149515, 37.746490 ], [ -122.151403, 37.750222 ], [ -122.151661, 37.751240 ], [ -122.151661, 37.752394 ], [ -122.151146, 37.753615 ], [ -122.150459, 37.753344 ], [ -122.149343, 37.753480 ], [ -122.148914, 37.754158 ], [ -122.148228, 37.754294 ], [ -122.145996, 37.755380 ], [ -122.145653, 37.755651 ], [ -122.145224, 37.756194 ], [ -122.144623, 37.756398 ], [ -122.143421, 37.757076 ], [ -122.141619, 37.757484 ], [ -122.141018, 37.757484 ], [ -122.140417, 37.757212 ], [ -122.139988, 37.757212 ], [ -122.139301, 37.757619 ], [ -122.138186, 37.757959 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410000", "GEOID10": "06001410000", "NAME10": "4100", "NAMELSAD10": "Census Tract 4100", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6784422, "AWATER10": 139197, "INTPTLAT10": "+37.7447566", "INTPTLON10": "-122.1332163" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138186, 37.757959 ], [ -122.137499, 37.757619 ], [ -122.135439, 37.757484 ], [ -122.134323, 37.757144 ], [ -122.133121, 37.756601 ], [ -122.131834, 37.756533 ], [ -122.129517, 37.756058 ], [ -122.128057, 37.755108 ], [ -122.127113, 37.754158 ], [ -122.126255, 37.752937 ], [ -122.125053, 37.751919 ], [ -122.124023, 37.751308 ], [ -122.124109, 37.751172 ], [ -122.122908, 37.749204 ], [ -122.122307, 37.748729 ], [ -122.121534, 37.747711 ], [ -122.120590, 37.745947 ], [ -122.113123, 37.749883 ], [ -122.112780, 37.748933 ], [ -122.112007, 37.748118 ], [ -122.111664, 37.747575 ], [ -122.111664, 37.747033 ], [ -122.112179, 37.746286 ], [ -122.112265, 37.745879 ], [ -122.112265, 37.744861 ], [ -122.112436, 37.743843 ], [ -122.113209, 37.742960 ], [ -122.113380, 37.742146 ], [ -122.113895, 37.741196 ], [ -122.114582, 37.740721 ], [ -122.114668, 37.740313 ], [ -122.115526, 37.739227 ], [ -122.115355, 37.736716 ], [ -122.115612, 37.735901 ], [ -122.116470, 37.734340 ], [ -122.117929, 37.732575 ], [ -122.119818, 37.731625 ], [ -122.122307, 37.729860 ], [ -122.124023, 37.728977 ], [ -122.124367, 37.728977 ], [ -122.125483, 37.729385 ], [ -122.126598, 37.729520 ], [ -122.127371, 37.729724 ], [ -122.130547, 37.730064 ], [ -122.130976, 37.730335 ], [ -122.131748, 37.731421 ], [ -122.131491, 37.731489 ], [ -122.130976, 37.731829 ], [ -122.130289, 37.732779 ], [ -122.130461, 37.732779 ], [ -122.130375, 37.733593 ], [ -122.130632, 37.733797 ], [ -122.131147, 37.733593 ], [ -122.132692, 37.734001 ], [ -122.134495, 37.734204 ], [ -122.135181, 37.733729 ], [ -122.136726, 37.731761 ], [ -122.137413, 37.731489 ], [ -122.137928, 37.731082 ], [ -122.138357, 37.730946 ], [ -122.138529, 37.731421 ], [ -122.138186, 37.731625 ], [ -122.138700, 37.732372 ], [ -122.138872, 37.733322 ], [ -122.139215, 37.733797 ], [ -122.139301, 37.734680 ], [ -122.139645, 37.734476 ], [ -122.140160, 37.734408 ], [ -122.140675, 37.736037 ], [ -122.141533, 37.737327 ], [ -122.142305, 37.737802 ], [ -122.147026, 37.743096 ], [ -122.149429, 37.744589 ], [ -122.148657, 37.745132 ], [ -122.149515, 37.746490 ], [ -122.151403, 37.750290 ], [ -122.151661, 37.751240 ], [ -122.151661, 37.752394 ], [ -122.151146, 37.753615 ], [ -122.150459, 37.753344 ], [ -122.149343, 37.753480 ], [ -122.148914, 37.754158 ], [ -122.148228, 37.754294 ], [ -122.145996, 37.755380 ], [ -122.145653, 37.755651 ], [ -122.145224, 37.756194 ], [ -122.144623, 37.756398 ], [ -122.143421, 37.757076 ], [ -122.141619, 37.757484 ], [ -122.141018, 37.757484 ], [ -122.140417, 37.757212 ], [ -122.139988, 37.757212 ], [ -122.139301, 37.757619 ], [ -122.138186, 37.757959 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.157412, 37.817921 ], [ -122.156467, 37.817378 ], [ -122.155695, 37.816497 ], [ -122.154322, 37.816090 ], [ -122.153034, 37.815073 ], [ -122.148829, 37.813717 ], [ -122.145910, 37.810733 ], [ -122.144279, 37.807682 ], [ -122.140503, 37.804562 ], [ -122.140074, 37.804495 ], [ -122.138357, 37.804291 ], [ -122.134924, 37.804223 ], [ -122.132950, 37.804020 ], [ -122.113552, 37.802731 ], [ -122.094412, 37.801239 ], [ -122.071924, 37.799883 ], [ -122.045488, 37.798120 ], [ -122.037935, 37.793033 ], [ -122.030468, 37.787742 ], [ -122.021971, 37.784215 ], [ -122.017765, 37.781230 ], [ -122.014074, 37.780213 ], [ -122.004204, 37.770036 ], [ -122.007294, 37.768137 ], [ -122.011242, 37.767187 ], [ -122.012014, 37.767051 ], [ -122.013302, 37.766983 ], [ -122.014589, 37.766576 ], [ -122.016048, 37.766440 ], [ -122.017078, 37.765965 ], [ -122.018194, 37.765151 ], [ -122.019997, 37.764676 ], [ -122.021112, 37.763998 ], [ -122.022314, 37.763523 ], [ -122.023344, 37.763251 ], [ -122.024460, 37.762233 ], [ -122.025661, 37.761691 ], [ -122.027035, 37.760741 ], [ -122.028580, 37.758841 ], [ -122.029781, 37.753887 ], [ -122.029696, 37.753480 ], [ -122.029266, 37.752462 ], [ -122.029352, 37.751987 ], [ -122.029610, 37.751512 ], [ -122.030897, 37.750154 ], [ -122.031240, 37.749204 ], [ -122.031240, 37.745200 ], [ -122.031670, 37.743096 ], [ -122.031841, 37.740449 ], [ -122.032528, 37.735833 ], [ -122.032442, 37.733458 ], [ -122.032700, 37.732779 ], [ -122.033901, 37.731150 ], [ -122.033987, 37.730742 ], [ -122.033730, 37.729792 ], [ -122.033901, 37.729113 ], [ -122.037163, 37.722664 ], [ -122.037764, 37.720763 ], [ -122.038279, 37.719745 ], [ -122.038279, 37.719269 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.717640 ], [ -122.038450, 37.716961 ], [ -122.038536, 37.717165 ], [ -122.038965, 37.716893 ], [ -122.039566, 37.715942 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.714381 ], [ -122.039738, 37.714109 ], [ -122.040081, 37.713159 ], [ -122.055616, 37.713159 ], [ -122.055445, 37.713362 ], [ -122.055788, 37.713905 ], [ -122.055702, 37.714313 ], [ -122.055016, 37.714856 ], [ -122.054243, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054157, 37.716757 ], [ -122.054501, 37.717640 ], [ -122.054415, 37.718590 ], [ -122.054415, 37.719269 ], [ -122.054071, 37.720356 ], [ -122.054329, 37.721034 ], [ -122.054243, 37.721306 ], [ -122.052956, 37.722324 ], [ -122.052097, 37.723682 ], [ -122.052355, 37.724836 ], [ -122.052355, 37.725990 ], [ -122.052698, 37.727009 ], [ -122.052441, 37.727959 ], [ -122.052526, 37.728842 ], [ -122.052441, 37.729317 ], [ -122.051582, 37.730064 ], [ -122.051497, 37.730810 ], [ -122.051239, 37.731489 ], [ -122.051840, 37.732100 ], [ -122.052011, 37.732507 ], [ -122.051926, 37.733458 ], [ -122.052269, 37.733797 ], [ -122.052269, 37.734476 ], [ -122.052612, 37.734544 ], [ -122.052698, 37.734680 ], [ -122.052784, 37.735494 ], [ -122.053385, 37.735901 ], [ -122.053213, 37.736376 ], [ -122.053471, 37.736919 ], [ -122.053986, 37.737463 ], [ -122.053642, 37.738141 ], [ -122.053900, 37.738481 ], [ -122.053900, 37.739024 ], [ -122.053986, 37.739159 ], [ -122.054071, 37.739770 ], [ -122.053900, 37.740042 ], [ -122.054329, 37.740042 ], [ -122.054415, 37.740110 ], [ -122.054501, 37.740788 ], [ -122.054415, 37.741467 ], [ -122.054672, 37.742078 ], [ -122.055187, 37.742417 ], [ -122.055788, 37.743164 ], [ -122.055788, 37.744725 ], [ -122.055960, 37.745607 ], [ -122.056475, 37.746761 ], [ -122.056990, 37.747440 ], [ -122.056646, 37.747915 ], [ -122.056646, 37.748186 ], [ -122.057419, 37.748729 ], [ -122.057762, 37.749340 ], [ -122.058191, 37.749747 ], [ -122.058363, 37.750426 ], [ -122.057848, 37.750765 ], [ -122.057762, 37.750969 ], [ -122.058191, 37.751105 ], [ -122.058191, 37.751512 ], [ -122.058620, 37.751444 ], [ -122.058449, 37.752122 ], [ -122.058964, 37.752394 ], [ -122.059221, 37.752665 ], [ -122.062225, 37.748390 ], [ -122.062140, 37.746965 ], [ -122.061453, 37.743639 ], [ -122.059994, 37.739227 ], [ -122.059908, 37.738752 ], [ -122.061625, 37.729792 ], [ -122.065573, 37.720152 ], [ -122.068062, 37.720559 ], [ -122.075272, 37.720695 ], [ -122.075958, 37.721374 ], [ -122.078619, 37.723343 ], [ -122.079735, 37.724701 ], [ -122.079821, 37.725312 ], [ -122.079649, 37.727348 ], [ -122.080250, 37.729385 ], [ -122.081022, 37.732915 ], [ -122.081022, 37.733593 ], [ -122.079649, 37.735019 ], [ -122.078533, 37.735698 ], [ -122.076731, 37.736241 ], [ -122.075787, 37.737191 ], [ -122.075529, 37.737938 ], [ -122.095699, 37.728502 ], [ -122.095442, 37.728706 ], [ -122.095957, 37.728638 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.727959 ], [ -122.094584, 37.728095 ], [ -122.097759, 37.726737 ], [ -122.100935, 37.727823 ], [ -122.107286, 37.721442 ], [ -122.117243, 37.726873 ], [ -122.118101, 37.727688 ], [ -122.119818, 37.731625 ], [ -122.117929, 37.732575 ], [ -122.116470, 37.734340 ], [ -122.115612, 37.735901 ], [ -122.115355, 37.736716 ], [ -122.115526, 37.739227 ], [ -122.114668, 37.740313 ], [ -122.114582, 37.740721 ], [ -122.113895, 37.741196 ], [ -122.113380, 37.742146 ], [ -122.113209, 37.742960 ], [ -122.112436, 37.743707 ], [ -122.112265, 37.744861 ], [ -122.112179, 37.746082 ], [ -122.111664, 37.747033 ], [ -122.111664, 37.747575 ], [ -122.112007, 37.748118 ], [ -122.112780, 37.748933 ], [ -122.113123, 37.749883 ], [ -122.115955, 37.748390 ], [ -122.116127, 37.749883 ], [ -122.118444, 37.754158 ], [ -122.118530, 37.754498 ], [ -122.122307, 37.760537 ], [ -122.126169, 37.767594 ], [ -122.130375, 37.772139 ], [ -122.132778, 37.775667 ], [ -122.134237, 37.777092 ], [ -122.133636, 37.777499 ], [ -122.134323, 37.778313 ], [ -122.135096, 37.778042 ], [ -122.144022, 37.787674 ], [ -122.142220, 37.790116 ], [ -122.143335, 37.790930 ], [ -122.144022, 37.790388 ], [ -122.146254, 37.792355 ], [ -122.151146, 37.792422 ], [ -122.151489, 37.796356 ], [ -122.156811, 37.796424 ], [ -122.156811, 37.796831 ], [ -122.157841, 37.797374 ], [ -122.158527, 37.796967 ], [ -122.159214, 37.797441 ], [ -122.158527, 37.798120 ], [ -122.160072, 37.799747 ], [ -122.161875, 37.799951 ], [ -122.162218, 37.800697 ], [ -122.161875, 37.800900 ], [ -122.161875, 37.801307 ], [ -122.164278, 37.803206 ], [ -122.164707, 37.804359 ], [ -122.164450, 37.804427 ], [ -122.164793, 37.805105 ], [ -122.167025, 37.805647 ], [ -122.170544, 37.804698 ], [ -122.170200, 37.802324 ], [ -122.169342, 37.801036 ], [ -122.168570, 37.801172 ], [ -122.168484, 37.800629 ], [ -122.168655, 37.800358 ], [ -122.168655, 37.799001 ], [ -122.170801, 37.799679 ], [ -122.172260, 37.800561 ], [ -122.175694, 37.802189 ], [ -122.175264, 37.803138 ], [ -122.176552, 37.803681 ], [ -122.177324, 37.803274 ], [ -122.178183, 37.804020 ], [ -122.176466, 37.806800 ], [ -122.176123, 37.807207 ], [ -122.175779, 37.807343 ], [ -122.174492, 37.810394 ], [ -122.175093, 37.814327 ], [ -122.176981, 37.816226 ], [ -122.172775, 37.815819 ], [ -122.166853, 37.813378 ], [ -122.166681, 37.813581 ], [ -122.157412, 37.817921 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.157412, 37.817921 ], [ -122.156467, 37.817378 ], [ -122.155695, 37.816497 ], [ -122.154322, 37.816090 ], [ -122.153034, 37.815073 ], [ -122.148829, 37.813717 ], [ -122.145910, 37.810733 ], [ -122.144279, 37.807682 ], [ -122.140503, 37.804562 ], [ -122.140074, 37.804495 ], [ -122.138357, 37.804291 ], [ -122.134924, 37.804223 ], [ -122.132950, 37.804020 ], [ -122.113552, 37.802731 ], [ -122.094412, 37.801239 ], [ -122.071924, 37.799883 ], [ -122.045488, 37.798120 ], [ -122.037935, 37.793033 ], [ -122.030468, 37.787742 ], [ -122.021971, 37.784215 ], [ -122.017765, 37.781230 ], [ -122.014074, 37.780213 ], [ -122.004204, 37.770036 ], [ -122.007294, 37.768137 ], [ -122.011242, 37.767187 ], [ -122.012014, 37.767051 ], [ -122.013302, 37.766983 ], [ -122.014589, 37.766576 ], [ -122.016048, 37.766440 ], [ -122.017078, 37.765965 ], [ -122.018194, 37.765151 ], [ -122.019997, 37.764676 ], [ -122.021112, 37.763998 ], [ -122.022314, 37.763523 ], [ -122.023344, 37.763251 ], [ -122.024460, 37.762233 ], [ -122.025661, 37.761691 ], [ -122.027035, 37.760741 ], [ -122.028580, 37.758841 ], [ -122.029781, 37.753887 ], [ -122.029696, 37.753480 ], [ -122.029266, 37.752462 ], [ -122.029352, 37.751987 ], [ -122.029610, 37.751512 ], [ -122.030897, 37.750154 ], [ -122.031240, 37.749204 ], [ -122.031240, 37.745200 ], [ -122.031670, 37.743096 ], [ -122.031841, 37.740449 ], [ -122.032528, 37.735833 ], [ -122.032442, 37.733458 ], [ -122.032700, 37.732779 ], [ -122.033901, 37.731150 ], [ -122.033987, 37.730742 ], [ -122.033730, 37.729792 ], [ -122.033901, 37.729113 ], [ -122.037163, 37.722664 ], [ -122.037764, 37.720763 ], [ -122.038279, 37.719745 ], [ -122.038279, 37.719269 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718115 ], [ -122.038021, 37.717640 ], [ -122.038450, 37.716961 ], [ -122.038536, 37.717165 ], [ -122.038965, 37.716893 ], [ -122.039566, 37.715942 ], [ -122.039909, 37.714517 ], [ -122.039738, 37.714381 ], [ -122.039738, 37.714109 ], [ -122.040081, 37.713159 ], [ -122.055616, 37.713159 ], [ -122.055445, 37.713362 ], [ -122.055788, 37.713905 ], [ -122.055702, 37.714313 ], [ -122.055016, 37.714856 ], [ -122.054243, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054157, 37.716757 ], [ -122.054501, 37.717640 ], [ -122.054415, 37.718590 ], [ -122.054415, 37.719269 ], [ -122.054071, 37.720356 ], [ -122.054329, 37.721034 ], [ -122.054243, 37.721306 ], [ -122.052956, 37.722324 ], [ -122.052097, 37.723682 ], [ -122.052355, 37.724836 ], [ -122.052355, 37.725990 ], [ -122.052698, 37.727009 ], [ -122.052441, 37.727959 ], [ -122.052526, 37.728842 ], [ -122.052441, 37.729317 ], [ -122.051582, 37.730064 ], [ -122.051497, 37.730810 ], [ -122.051239, 37.731489 ], [ -122.051840, 37.732100 ], [ -122.052011, 37.732507 ], [ -122.051926, 37.733458 ], [ -122.052269, 37.733797 ], [ -122.052269, 37.734476 ], [ -122.052612, 37.734544 ], [ -122.052698, 37.734680 ], [ -122.052784, 37.735494 ], [ -122.053385, 37.735901 ], [ -122.053213, 37.736376 ], [ -122.053471, 37.736919 ], [ -122.053986, 37.737463 ], [ -122.053642, 37.738141 ], [ -122.053900, 37.738481 ], [ -122.053900, 37.739024 ], [ -122.053986, 37.739159 ], [ -122.054071, 37.739770 ], [ -122.053900, 37.740042 ], [ -122.054329, 37.740042 ], [ -122.054415, 37.740110 ], [ -122.054501, 37.740788 ], [ -122.054415, 37.741467 ], [ -122.054672, 37.742078 ], [ -122.055187, 37.742417 ], [ -122.055788, 37.743164 ], [ -122.055788, 37.744725 ], [ -122.055960, 37.745607 ], [ -122.056475, 37.746761 ], [ -122.056990, 37.747440 ], [ -122.056646, 37.747915 ], [ -122.056646, 37.748186 ], [ -122.057419, 37.748729 ], [ -122.057762, 37.749340 ], [ -122.058191, 37.749747 ], [ -122.058363, 37.750426 ], [ -122.057848, 37.750765 ], [ -122.057762, 37.750969 ], [ -122.058191, 37.751105 ], [ -122.058191, 37.751512 ], [ -122.058620, 37.751444 ], [ -122.058449, 37.752122 ], [ -122.058964, 37.752394 ], [ -122.059221, 37.752665 ], [ -122.062225, 37.748390 ], [ -122.062140, 37.746965 ], [ -122.061453, 37.743639 ], [ -122.059994, 37.739227 ], [ -122.059908, 37.738752 ], [ -122.061625, 37.729792 ], [ -122.065573, 37.720152 ], [ -122.068062, 37.720559 ], [ -122.075272, 37.720695 ], [ -122.075958, 37.721374 ], [ -122.078619, 37.723343 ], [ -122.079735, 37.724701 ], [ -122.079821, 37.725312 ], [ -122.079649, 37.727348 ], [ -122.080250, 37.729385 ], [ -122.081022, 37.732915 ], [ -122.081022, 37.733593 ], [ -122.079649, 37.735019 ], [ -122.078533, 37.735698 ], [ -122.077074, 37.736037 ], [ -122.076731, 37.736241 ], [ -122.075787, 37.737191 ], [ -122.075529, 37.737938 ], [ -122.095699, 37.728502 ], [ -122.095442, 37.728706 ], [ -122.095957, 37.728638 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.727959 ], [ -122.094584, 37.728095 ], [ -122.097759, 37.726737 ], [ -122.100935, 37.727823 ], [ -122.107286, 37.721442 ], [ -122.117243, 37.726873 ], [ -122.118101, 37.727688 ], [ -122.119818, 37.731625 ], [ -122.117929, 37.732575 ], [ -122.116470, 37.734340 ], [ -122.115612, 37.735901 ], [ -122.115355, 37.736716 ], [ -122.115526, 37.739227 ], [ -122.114668, 37.740313 ], [ -122.114582, 37.740721 ], [ -122.113895, 37.741196 ], [ -122.113380, 37.742146 ], [ -122.113209, 37.742960 ], [ -122.112436, 37.743707 ], [ -122.112265, 37.744861 ], [ -122.112179, 37.746082 ], [ -122.111664, 37.747033 ], [ -122.111664, 37.747575 ], [ -122.112007, 37.748118 ], [ -122.112780, 37.748933 ], [ -122.113123, 37.749883 ], [ -122.115955, 37.748390 ], [ -122.116127, 37.749883 ], [ -122.118444, 37.754158 ], [ -122.118530, 37.754498 ], [ -122.122307, 37.760537 ], [ -122.126169, 37.767594 ], [ -122.130375, 37.772139 ], [ -122.132778, 37.775667 ], [ -122.134237, 37.777092 ], [ -122.133636, 37.777499 ], [ -122.134323, 37.778313 ], [ -122.135096, 37.778042 ], [ -122.144022, 37.787674 ], [ -122.142220, 37.790116 ], [ -122.143335, 37.790930 ], [ -122.144022, 37.790388 ], [ -122.146254, 37.792355 ], [ -122.151146, 37.792422 ], [ -122.151489, 37.796356 ], [ -122.156811, 37.796424 ], [ -122.156811, 37.796831 ], [ -122.157841, 37.797374 ], [ -122.158527, 37.796967 ], [ -122.159214, 37.797441 ], [ -122.158527, 37.798120 ], [ -122.160072, 37.799747 ], [ -122.161875, 37.799951 ], [ -122.162218, 37.800697 ], [ -122.161875, 37.800900 ], [ -122.161875, 37.801307 ], [ -122.164278, 37.803206 ], [ -122.164707, 37.804359 ], [ -122.164450, 37.804427 ], [ -122.164793, 37.805105 ], [ -122.167025, 37.805647 ], [ -122.170544, 37.804698 ], [ -122.170200, 37.802324 ], [ -122.169342, 37.801036 ], [ -122.168570, 37.801172 ], [ -122.168484, 37.800629 ], [ -122.168655, 37.800358 ], [ -122.168655, 37.799001 ], [ -122.170801, 37.799679 ], [ -122.172260, 37.800561 ], [ -122.175694, 37.802189 ], [ -122.175264, 37.803138 ], [ -122.176552, 37.803681 ], [ -122.177324, 37.803274 ], [ -122.178183, 37.804020 ], [ -122.176466, 37.806800 ], [ -122.176123, 37.807207 ], [ -122.175779, 37.807343 ], [ -122.174492, 37.810394 ], [ -122.175093, 37.814327 ], [ -122.176981, 37.816226 ], [ -122.172775, 37.815819 ], [ -122.166853, 37.813378 ], [ -122.166681, 37.813581 ], [ -122.157412, 37.817921 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432400", "GEOID10": "06001432400", "NAME10": "4324", "NAMELSAD10": "Census Tract 4324", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6437229, "AWATER10": 1351272, "INTPTLAT10": "+37.7097451", "INTPTLON10": "-122.1898921" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.190199, 37.728774 ], [ -122.189684, 37.728570 ], [ -122.188482, 37.728366 ], [ -122.187538, 37.728027 ], [ -122.186594, 37.727484 ], [ -122.185564, 37.726534 ], [ -122.184191, 37.725923 ], [ -122.183676, 37.725447 ], [ -122.183161, 37.725379 ], [ -122.176981, 37.719269 ], [ -122.177153, 37.718998 ], [ -122.176723, 37.718590 ], [ -122.176037, 37.717776 ], [ -122.174749, 37.717097 ], [ -122.173119, 37.715399 ], [ -122.170630, 37.713159 ], [ -122.201700, 37.713159 ], [ -122.197065, 37.715399 ], [ -122.197065, 37.715603 ], [ -122.195005, 37.715603 ], [ -122.195606, 37.717776 ], [ -122.193632, 37.718590 ], [ -122.193546, 37.718590 ], [ -122.192688, 37.716757 ], [ -122.188997, 37.717843 ], [ -122.189856, 37.718590 ], [ -122.196379, 37.723818 ], [ -122.196894, 37.725176 ], [ -122.197409, 37.724972 ], [ -122.197924, 37.726466 ], [ -122.196808, 37.726941 ], [ -122.196293, 37.726058 ], [ -122.193117, 37.727755 ], [ -122.191744, 37.727077 ], [ -122.191143, 37.728027 ], [ -122.190800, 37.727891 ], [ -122.190199, 37.728774 ] ] ] } } , @@ -2388,11 +2388,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430600", "GEOID10": "06001430600", "NAME10": "4306", "NAMELSAD10": "Census Tract 4306", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2260551, "AWATER10": 0, "INTPTLAT10": "+37.7041735", "INTPTLON10": "-122.0969654" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.103338, 37.714720 ], [ -122.098532, 37.713159 ], [ -122.105398, 37.713159 ], [ -122.105141, 37.714449 ], [ -122.105055, 37.714449 ], [ -122.104454, 37.714177 ], [ -122.103338, 37.714720 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430300", "GEOID10": "06001430300", "NAME10": "4303", "NAMELSAD10": "Census Tract 4303", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2964586, "AWATER10": 233357, "INTPTLAT10": "+37.7229094", "INTPTLON10": "-122.0837445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.075529, 37.737938 ], [ -122.075787, 37.737191 ], [ -122.076731, 37.736241 ], [ -122.078533, 37.735698 ], [ -122.079649, 37.735019 ], [ -122.080851, 37.733797 ], [ -122.081022, 37.733186 ], [ -122.080250, 37.729385 ], [ -122.079649, 37.727348 ], [ -122.079821, 37.725312 ], [ -122.079735, 37.724701 ], [ -122.078619, 37.723343 ], [ -122.075701, 37.721170 ], [ -122.073984, 37.718998 ], [ -122.073812, 37.718590 ], [ -122.073727, 37.716282 ], [ -122.073898, 37.713159 ], [ -122.089262, 37.713159 ], [ -122.089262, 37.714245 ], [ -122.089520, 37.715060 ], [ -122.089520, 37.716010 ], [ -122.088747, 37.717232 ], [ -122.089005, 37.718590 ], [ -122.089005, 37.720288 ], [ -122.089520, 37.721442 ], [ -122.089434, 37.721849 ], [ -122.090206, 37.721374 ], [ -122.091064, 37.722664 ], [ -122.092266, 37.723343 ], [ -122.093468, 37.725176 ], [ -122.093983, 37.727212 ], [ -122.094584, 37.728095 ], [ -122.095957, 37.727959 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.728638 ], [ -122.095442, 37.728706 ], [ -122.095699, 37.728502 ], [ -122.075529, 37.737938 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430300", "GEOID10": "06001430300", "NAME10": "4303", "NAMELSAD10": "Census Tract 4303", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2964586, "AWATER10": 233357, "INTPTLAT10": "+37.7229094", "INTPTLON10": "-122.0837445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.075529, 37.737938 ], [ -122.075787, 37.737191 ], [ -122.076731, 37.736241 ], [ -122.077074, 37.736037 ], [ -122.078533, 37.735698 ], [ -122.079649, 37.735019 ], [ -122.080851, 37.733797 ], [ -122.081022, 37.733186 ], [ -122.080250, 37.729385 ], [ -122.079649, 37.727348 ], [ -122.079821, 37.725312 ], [ -122.079735, 37.724701 ], [ -122.078619, 37.723343 ], [ -122.075701, 37.721170 ], [ -122.073984, 37.718998 ], [ -122.073812, 37.718590 ], [ -122.073727, 37.716282 ], [ -122.073898, 37.713159 ], [ -122.089262, 37.713159 ], [ -122.089262, 37.714245 ], [ -122.089520, 37.715060 ], [ -122.089520, 37.716010 ], [ -122.088747, 37.717232 ], [ -122.089005, 37.718590 ], [ -122.089005, 37.720288 ], [ -122.089520, 37.721442 ], [ -122.089434, 37.721849 ], [ -122.090206, 37.721374 ], [ -122.091064, 37.722664 ], [ -122.092266, 37.723343 ], [ -122.093468, 37.725176 ], [ -122.093983, 37.727212 ], [ -122.094584, 37.728095 ], [ -122.095957, 37.727959 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.728638 ], [ -122.095442, 37.728706 ], [ -122.095699, 37.728502 ], [ -122.075529, 37.737938 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430200", "GEOID10": "06001430200", "NAME10": "4302", "NAMELSAD10": "Census Tract 4302", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5329284, "AWATER10": 0, "INTPTLAT10": "+37.7216743", "INTPTLON10": "-122.0615667" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.059221, 37.752665 ], [ -122.058964, 37.752394 ], [ -122.058449, 37.752122 ], [ -122.058620, 37.751444 ], [ -122.058191, 37.751512 ], [ -122.058191, 37.751105 ], [ -122.057762, 37.750969 ], [ -122.057848, 37.750765 ], [ -122.058363, 37.750426 ], [ -122.058191, 37.749747 ], [ -122.057762, 37.749340 ], [ -122.057419, 37.748729 ], [ -122.056646, 37.748186 ], [ -122.056646, 37.747915 ], [ -122.056990, 37.747440 ], [ -122.056475, 37.746761 ], [ -122.055960, 37.745607 ], [ -122.055788, 37.744725 ], [ -122.055788, 37.743164 ], [ -122.055187, 37.742417 ], [ -122.054672, 37.742078 ], [ -122.054415, 37.741467 ], [ -122.054501, 37.740788 ], [ -122.054415, 37.740110 ], [ -122.054329, 37.740042 ], [ -122.053900, 37.740042 ], [ -122.054071, 37.739770 ], [ -122.053986, 37.739159 ], [ -122.053900, 37.739024 ], [ -122.053900, 37.738481 ], [ -122.053642, 37.738141 ], [ -122.053986, 37.737463 ], [ -122.053471, 37.736919 ], [ -122.053213, 37.736376 ], [ -122.053385, 37.735901 ], [ -122.052784, 37.735494 ], [ -122.052698, 37.734680 ], [ -122.052612, 37.734544 ], [ -122.052269, 37.734476 ], [ -122.052269, 37.733797 ], [ -122.051926, 37.733458 ], [ -122.052011, 37.732507 ], [ -122.051840, 37.732100 ], [ -122.051239, 37.731489 ], [ -122.051497, 37.730810 ], [ -122.051582, 37.730064 ], [ -122.052441, 37.729317 ], [ -122.052526, 37.728842 ], [ -122.052441, 37.727959 ], [ -122.052698, 37.727009 ], [ -122.052355, 37.725990 ], [ -122.052355, 37.724836 ], [ -122.052097, 37.723682 ], [ -122.052956, 37.722324 ], [ -122.054243, 37.721306 ], [ -122.054329, 37.721034 ], [ -122.054071, 37.720356 ], [ -122.054415, 37.719269 ], [ -122.054415, 37.718590 ], [ -122.054501, 37.717640 ], [ -122.054157, 37.716757 ], [ -122.054071, 37.715331 ], [ -122.054243, 37.715128 ], [ -122.055016, 37.714856 ], [ -122.055702, 37.714313 ], [ -122.055788, 37.713905 ], [ -122.055445, 37.713362 ], [ -122.055616, 37.713159 ], [ -122.073898, 37.713159 ], [ -122.073727, 37.716282 ], [ -122.073812, 37.718590 ], [ -122.073727, 37.718726 ], [ -122.075272, 37.720695 ], [ -122.068062, 37.720559 ], [ -122.065573, 37.720152 ], [ -122.065058, 37.721306 ], [ -122.061625, 37.729792 ], [ -122.059908, 37.738752 ], [ -122.059994, 37.739227 ], [ -122.061453, 37.743639 ], [ -122.062140, 37.746965 ], [ -122.062225, 37.748390 ], [ -122.059221, 37.752665 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.004204, 37.770036 ], [ -121.997766, 37.763183 ], [ -122.010727, 37.755108 ], [ -122.011328, 37.754023 ], [ -122.011757, 37.747440 ], [ -122.001028, 37.739024 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736376 ], [ -121.989956, 37.733593 ], [ -121.985321, 37.731625 ], [ -121.985321, 37.717640 ], [ -121.990385, 37.713159 ], [ -122.040081, 37.713159 ], [ -122.039738, 37.714109 ], [ -122.039738, 37.714381 ], [ -122.039909, 37.714517 ], [ -122.039566, 37.715942 ], [ -122.038965, 37.716893 ], [ -122.038536, 37.717165 ], [ -122.038450, 37.716961 ], [ -122.038021, 37.717640 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719269 ], [ -122.038279, 37.719745 ], [ -122.037764, 37.720763 ], [ -122.037163, 37.722664 ], [ -122.033901, 37.729113 ], [ -122.033730, 37.729792 ], [ -122.033987, 37.730742 ], [ -122.033901, 37.731150 ], [ -122.032700, 37.732779 ], [ -122.032442, 37.733458 ], [ -122.032528, 37.735833 ], [ -122.031841, 37.740449 ], [ -122.031670, 37.743096 ], [ -122.031240, 37.745200 ], [ -122.031240, 37.749204 ], [ -122.030897, 37.750154 ], [ -122.029610, 37.751512 ], [ -122.029352, 37.751987 ], [ -122.029266, 37.752462 ], [ -122.029696, 37.753480 ], [ -122.029781, 37.753887 ], [ -122.028580, 37.758841 ], [ -122.027035, 37.760741 ], [ -122.025661, 37.761691 ], [ -122.024460, 37.762233 ], [ -122.023602, 37.763116 ], [ -122.021112, 37.763998 ], [ -122.019997, 37.764676 ], [ -122.018194, 37.765151 ], [ -122.017078, 37.765965 ], [ -122.016048, 37.766440 ], [ -122.014589, 37.766576 ], [ -122.013302, 37.766983 ], [ -122.012014, 37.767051 ], [ -122.011242, 37.767187 ], [ -122.007294, 37.768137 ], [ -122.004204, 37.770036 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.004204, 37.770036 ], [ -121.997766, 37.763183 ], [ -122.010727, 37.755108 ], [ -122.011328, 37.754023 ], [ -122.011757, 37.747440 ], [ -122.001028, 37.739024 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736376 ], [ -121.989956, 37.733593 ], [ -121.985321, 37.731625 ], [ -121.985321, 37.717640 ], [ -121.990385, 37.713159 ], [ -122.040081, 37.713159 ], [ -122.039738, 37.714109 ], [ -122.039738, 37.714381 ], [ -122.039909, 37.714517 ], [ -122.039566, 37.715942 ], [ -122.038965, 37.716893 ], [ -122.038536, 37.717165 ], [ -122.038450, 37.716961 ], [ -122.038021, 37.717640 ], [ -122.037935, 37.718115 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719269 ], [ -122.038279, 37.719745 ], [ -122.037764, 37.720763 ], [ -122.037163, 37.722664 ], [ -122.033901, 37.729113 ], [ -122.033730, 37.729792 ], [ -122.033987, 37.730742 ], [ -122.033901, 37.731150 ], [ -122.032700, 37.732779 ], [ -122.032442, 37.733458 ], [ -122.032528, 37.735833 ], [ -122.031841, 37.740449 ], [ -122.031670, 37.743096 ], [ -122.031240, 37.745200 ], [ -122.031240, 37.749204 ], [ -122.030897, 37.750154 ], [ -122.029610, 37.751512 ], [ -122.029352, 37.751987 ], [ -122.029266, 37.752462 ], [ -122.029696, 37.753480 ], [ -122.029781, 37.753887 ], [ -122.028580, 37.758841 ], [ -122.027035, 37.760741 ], [ -122.025661, 37.761691 ], [ -122.024460, 37.762233 ], [ -122.023602, 37.763116 ], [ -122.021112, 37.763998 ], [ -122.019997, 37.764676 ], [ -122.018194, 37.765151 ], [ -122.017078, 37.765965 ], [ -122.016048, 37.766440 ], [ -122.014589, 37.766576 ], [ -122.013302, 37.766983 ], [ -122.012014, 37.767051 ], [ -122.011242, 37.767187 ], [ -122.007294, 37.768137 ], [ -122.004204, 37.770036 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450502", "GEOID10": "06001450502", "NAME10": "4505.02", "NAMELSAD10": "Census Tract 4505.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11180474, "AWATER10": 3336, "INTPTLAT10": "+37.7144480", "INTPTLON10": "-121.9692968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.985321, 37.717640 ], [ -121.985321, 37.713159 ], [ -121.990385, 37.713159 ], [ -121.985321, 37.717640 ] ] ] } } ] } @@ -2426,7 +2426,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "444602", "GEOID10": "06001444602", "NAME10": "4446.02", "NAMELSAD10": "Census Tract 4446.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5386824, "AWATER10": 0, "INTPTLAT10": "+37.5122564", "INTPTLON10": "-122.0030673" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.999054, 37.527970 ], [ -121.992188, 37.524635 ], [ -121.987724, 37.522389 ], [ -121.988239, 37.521776 ], [ -121.989613, 37.520483 ], [ -121.992188, 37.517215 ], [ -121.994762, 37.514015 ], [ -121.995363, 37.510951 ], [ -121.998024, 37.503870 ], [ -121.993303, 37.499444 ], [ -121.994333, 37.499376 ], [ -121.997166, 37.500398 ], [ -121.998453, 37.499240 ], [ -121.999054, 37.498287 ], [ -121.999054, 37.527970 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450601", "GEOID10": "06001450601", "NAME10": "4506.01", "NAMELSAD10": "Census Tract 4506.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 50375074, "AWATER10": 0, "INTPTLAT10": "+37.6531630", "INTPTLON10": "-121.9307980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.999054, 37.703584 ], [ -121.996651, 37.703177 ], [ -121.995363, 37.702905 ], [ -121.992188, 37.701751 ], [ -121.989355, 37.700528 ], [ -121.987123, 37.699917 ], [ -121.982489, 37.699374 ], [ -121.973133, 37.697744 ], [ -121.970129, 37.697404 ], [ -121.967983, 37.697336 ], [ -121.965408, 37.697472 ], [ -121.962919, 37.697744 ], [ -121.958456, 37.698559 ], [ -121.957426, 37.698559 ], [ -121.938200, 37.698423 ], [ -121.934938, 37.698491 ], [ -121.934252, 37.695842 ], [ -121.932535, 37.692990 ], [ -121.929703, 37.687692 ], [ -121.929531, 37.685383 ], [ -121.929188, 37.684635 ], [ -121.928329, 37.683752 ], [ -121.927385, 37.683141 ], [ -121.927385, 37.683073 ], [ -121.925240, 37.682394 ], [ -121.924725, 37.682122 ], [ -121.923351, 37.680696 ], [ -121.921120, 37.675397 ], [ -121.920691, 37.673767 ], [ -121.920176, 37.673087 ], [ -121.919231, 37.669962 ], [ -121.919231, 37.668400 ], [ -121.919060, 37.667856 ], [ -121.917429, 37.665750 ], [ -121.916313, 37.664731 ], [ -121.915712, 37.663644 ], [ -121.914854, 37.663576 ], [ -121.913652, 37.662217 ], [ -121.911592, 37.660382 ], [ -121.910734, 37.659499 ], [ -121.906700, 37.652228 ], [ -121.903782, 37.647199 ], [ -121.900520, 37.644956 ], [ -121.899490, 37.643257 ], [ -121.898890, 37.642714 ], [ -121.897345, 37.641966 ], [ -121.895285, 37.640607 ], [ -121.891594, 37.638024 ], [ -121.891079, 37.637344 ], [ -121.886616, 37.638636 ], [ -121.884127, 37.640131 ], [ -121.883955, 37.639927 ], [ -121.883783, 37.638568 ], [ -121.884127, 37.636121 ], [ -121.883955, 37.634829 ], [ -121.883268, 37.633130 ], [ -121.880951, 37.630003 ], [ -121.880264, 37.628440 ], [ -121.880007, 37.626672 ], [ -121.879921, 37.623002 ], [ -121.879492, 37.621370 ], [ -121.878376, 37.618923 ], [ -121.875029, 37.612192 ], [ -121.871681, 37.603828 ], [ -121.871681, 37.602060 ], [ -121.872025, 37.601176 ], [ -121.873055, 37.599476 ], [ -121.873312, 37.597912 ], [ -121.872969, 37.596348 ], [ -121.872282, 37.595328 ], [ -121.871767, 37.592335 ], [ -121.870995, 37.591519 ], [ -121.870394, 37.591179 ], [ -121.869965, 37.590499 ], [ -121.870737, 37.588799 ], [ -121.874771, 37.589683 ], [ -121.882324, 37.592948 ], [ -121.882839, 37.592744 ], [ -121.885586, 37.592540 ], [ -121.886702, 37.592540 ], [ -121.890135, 37.593424 ], [ -121.896143, 37.593968 ], [ -121.898460, 37.595328 ], [ -121.897774, 37.595736 ], [ -121.896315, 37.597300 ], [ -121.897345, 37.597436 ], [ -121.896915, 37.597708 ], [ -121.902752, 37.600632 ], [ -121.902409, 37.601244 ], [ -121.904469, 37.602128 ], [ -121.904726, 37.603692 ], [ -121.908588, 37.606412 ], [ -121.909275, 37.607908 ], [ -121.911421, 37.608588 ], [ -121.916914, 37.614639 ], [ -121.922064, 37.618583 ], [ -121.923952, 37.618923 ], [ -121.925583, 37.623477 ], [ -121.925497, 37.624361 ], [ -121.926098, 37.624837 ], [ -121.926098, 37.626401 ], [ -121.926785, 37.627488 ], [ -121.927299, 37.628032 ], [ -121.927557, 37.628644 ], [ -121.927814, 37.628848 ], [ -121.929016, 37.628916 ], [ -121.929188, 37.629052 ], [ -121.929188, 37.629324 ], [ -121.929531, 37.629935 ], [ -121.930046, 37.630275 ], [ -121.931076, 37.630615 ], [ -121.931334, 37.631023 ], [ -121.931505, 37.632179 ], [ -121.932364, 37.632858 ], [ -121.932535, 37.633538 ], [ -121.932964, 37.634014 ], [ -121.934252, 37.635033 ], [ -121.934166, 37.635577 ], [ -121.934252, 37.636325 ], [ -121.934767, 37.636801 ], [ -121.935196, 37.637616 ], [ -121.935196, 37.638024 ], [ -121.935368, 37.638296 ], [ -121.936312, 37.639247 ], [ -121.937599, 37.639519 ], [ -121.938629, 37.640131 ], [ -121.938801, 37.640879 ], [ -121.939573, 37.641626 ], [ -121.939573, 37.641830 ], [ -121.939144, 37.642034 ], [ -121.939144, 37.642306 ], [ -121.940346, 37.642918 ], [ -121.941719, 37.643189 ], [ -121.941462, 37.643529 ], [ -121.941462, 37.643937 ], [ -121.941891, 37.644956 ], [ -121.943607, 37.646520 ], [ -121.944208, 37.646995 ], [ -121.944723, 37.647131 ], [ -121.945152, 37.647403 ], [ -121.945581, 37.647947 ], [ -121.945753, 37.648830 ], [ -121.945925, 37.649102 ], [ -121.946783, 37.649850 ], [ -121.947556, 37.650121 ], [ -121.948328, 37.650801 ], [ -121.948328, 37.651141 ], [ -121.948671, 37.651956 ], [ -121.949358, 37.652364 ], [ -121.949959, 37.653179 ], [ -121.950645, 37.653587 ], [ -121.951933, 37.652228 ], [ -121.955624, 37.654946 ], [ -121.956654, 37.656237 ], [ -121.957340, 37.656713 ], [ -121.959057, 37.657460 ], [ -121.959400, 37.657732 ], [ -121.959915, 37.658615 ], [ -121.960516, 37.659023 ], [ -121.962318, 37.660518 ], [ -121.963263, 37.661062 ], [ -121.963434, 37.661333 ], [ -121.963863, 37.661469 ], [ -121.964378, 37.662285 ], [ -121.964808, 37.662556 ], [ -121.966524, 37.662896 ], [ -121.967211, 37.663236 ], [ -121.967726, 37.663779 ], [ -121.967897, 37.664119 ], [ -121.967726, 37.664527 ], [ -121.967125, 37.665410 ], [ -121.967554, 37.666701 ], [ -121.966867, 37.667177 ], [ -121.966782, 37.667584 ], [ -121.966352, 37.668128 ], [ -121.964722, 37.669011 ], [ -121.964121, 37.669487 ], [ -121.963778, 37.669894 ], [ -121.963949, 37.670845 ], [ -121.963778, 37.671117 ], [ -121.963348, 37.671321 ], [ -121.963434, 37.672000 ], [ -121.963778, 37.671457 ], [ -121.965923, 37.671661 ], [ -121.967468, 37.671389 ], [ -121.967897, 37.671457 ], [ -121.969700, 37.672136 ], [ -121.970730, 37.672748 ], [ -121.971416, 37.673427 ], [ -121.972361, 37.673699 ], [ -121.972876, 37.674038 ], [ -121.973562, 37.674106 ], [ -121.974850, 37.674038 ], [ -121.975451, 37.674854 ], [ -121.976910, 37.675601 ], [ -121.976738, 37.676212 ], [ -121.976824, 37.676552 ], [ -121.978283, 37.677843 ], [ -121.978712, 37.678794 ], [ -121.978970, 37.678929 ], [ -121.979313, 37.678997 ], [ -121.981459, 37.684364 ], [ -121.983519, 37.689050 ], [ -121.984119, 37.689118 ], [ -121.984377, 37.688983 ], [ -121.985493, 37.687964 ], [ -121.986179, 37.687692 ], [ -121.986866, 37.687692 ], [ -121.987982, 37.687828 ], [ -121.989355, 37.688235 ], [ -121.990042, 37.688643 ], [ -121.991329, 37.688915 ], [ -121.992188, 37.689526 ], [ -121.992874, 37.689933 ], [ -121.993904, 37.690205 ], [ -121.996307, 37.690205 ], [ -121.997080, 37.690477 ], [ -121.999054, 37.690884 ], [ -121.999054, 37.703584 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450601", "GEOID10": "06001450601", "NAME10": "4506.01", "NAMELSAD10": "Census Tract 4506.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 50375074, "AWATER10": 0, "INTPTLAT10": "+37.6531630", "INTPTLON10": "-121.9307980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.999054, 37.703584 ], [ -121.996651, 37.703177 ], [ -121.995363, 37.702905 ], [ -121.992188, 37.701751 ], [ -121.989355, 37.700528 ], [ -121.987123, 37.699917 ], [ -121.982489, 37.699374 ], [ -121.973133, 37.697744 ], [ -121.970129, 37.697404 ], [ -121.967983, 37.697336 ], [ -121.965408, 37.697472 ], [ -121.962919, 37.697744 ], [ -121.958456, 37.698559 ], [ -121.957426, 37.698559 ], [ -121.938200, 37.698423 ], [ -121.934938, 37.698491 ], [ -121.934252, 37.695842 ], [ -121.932535, 37.692990 ], [ -121.929703, 37.687692 ], [ -121.929531, 37.685383 ], [ -121.929188, 37.684635 ], [ -121.928329, 37.683752 ], [ -121.927385, 37.683141 ], [ -121.927385, 37.683073 ], [ -121.925240, 37.682394 ], [ -121.924725, 37.682122 ], [ -121.923351, 37.680696 ], [ -121.921120, 37.675397 ], [ -121.920691, 37.673767 ], [ -121.920176, 37.673087 ], [ -121.919231, 37.669962 ], [ -121.919231, 37.668400 ], [ -121.919060, 37.667856 ], [ -121.917429, 37.665750 ], [ -121.916313, 37.664731 ], [ -121.915712, 37.663644 ], [ -121.914854, 37.663576 ], [ -121.913652, 37.662217 ], [ -121.911592, 37.660382 ], [ -121.910734, 37.659499 ], [ -121.906700, 37.652228 ], [ -121.903782, 37.647199 ], [ -121.900520, 37.644956 ], [ -121.899490, 37.643257 ], [ -121.898890, 37.642714 ], [ -121.897345, 37.641966 ], [ -121.895285, 37.640607 ], [ -121.891594, 37.638024 ], [ -121.891079, 37.637344 ], [ -121.886616, 37.638636 ], [ -121.884127, 37.640131 ], [ -121.883955, 37.639927 ], [ -121.883783, 37.638568 ], [ -121.884127, 37.636121 ], [ -121.883955, 37.634829 ], [ -121.883268, 37.633130 ], [ -121.880951, 37.630003 ], [ -121.880264, 37.628440 ], [ -121.880007, 37.626672 ], [ -121.879921, 37.623002 ], [ -121.879492, 37.621370 ], [ -121.878376, 37.618923 ], [ -121.875029, 37.612192 ], [ -121.871681, 37.603828 ], [ -121.871681, 37.602060 ], [ -121.872025, 37.601176 ], [ -121.873055, 37.599476 ], [ -121.873312, 37.597912 ], [ -121.873140, 37.596756 ], [ -121.872797, 37.595940 ], [ -121.872282, 37.595328 ], [ -121.871767, 37.592335 ], [ -121.870995, 37.591519 ], [ -121.870394, 37.591179 ], [ -121.869965, 37.590499 ], [ -121.870737, 37.588799 ], [ -121.874771, 37.589683 ], [ -121.882324, 37.592948 ], [ -121.882839, 37.592744 ], [ -121.885586, 37.592540 ], [ -121.886702, 37.592540 ], [ -121.890135, 37.593424 ], [ -121.896143, 37.593968 ], [ -121.898460, 37.595328 ], [ -121.897774, 37.595736 ], [ -121.896315, 37.597300 ], [ -121.897345, 37.597436 ], [ -121.896915, 37.597708 ], [ -121.902752, 37.600632 ], [ -121.902409, 37.601244 ], [ -121.904469, 37.602128 ], [ -121.904726, 37.603692 ], [ -121.908588, 37.606412 ], [ -121.909275, 37.607908 ], [ -121.911421, 37.608588 ], [ -121.916914, 37.614639 ], [ -121.922064, 37.618583 ], [ -121.923952, 37.618923 ], [ -121.925583, 37.623477 ], [ -121.925497, 37.624361 ], [ -121.926098, 37.624837 ], [ -121.926098, 37.626401 ], [ -121.926785, 37.627488 ], [ -121.927299, 37.628032 ], [ -121.927557, 37.628644 ], [ -121.927814, 37.628848 ], [ -121.929016, 37.628916 ], [ -121.929188, 37.629052 ], [ -121.929188, 37.629324 ], [ -121.929531, 37.629935 ], [ -121.930046, 37.630275 ], [ -121.931076, 37.630615 ], [ -121.931334, 37.631023 ], [ -121.931505, 37.632179 ], [ -121.932364, 37.632858 ], [ -121.932535, 37.633538 ], [ -121.932964, 37.634014 ], [ -121.934252, 37.635033 ], [ -121.934166, 37.635577 ], [ -121.934252, 37.636325 ], [ -121.934767, 37.636801 ], [ -121.935196, 37.637616 ], [ -121.935196, 37.638024 ], [ -121.935368, 37.638296 ], [ -121.936312, 37.639247 ], [ -121.937599, 37.639519 ], [ -121.938629, 37.640131 ], [ -121.938801, 37.640879 ], [ -121.939573, 37.641626 ], [ -121.939573, 37.641830 ], [ -121.939144, 37.642034 ], [ -121.939144, 37.642306 ], [ -121.940346, 37.642918 ], [ -121.941719, 37.643189 ], [ -121.941462, 37.643529 ], [ -121.941462, 37.643937 ], [ -121.941891, 37.644956 ], [ -121.943607, 37.646520 ], [ -121.944208, 37.646995 ], [ -121.944723, 37.647131 ], [ -121.945152, 37.647403 ], [ -121.945581, 37.647947 ], [ -121.945753, 37.648830 ], [ -121.945925, 37.649102 ], [ -121.946783, 37.649850 ], [ -121.947556, 37.650121 ], [ -121.948328, 37.650801 ], [ -121.948328, 37.651141 ], [ -121.948671, 37.651956 ], [ -121.949358, 37.652364 ], [ -121.949959, 37.653179 ], [ -121.950645, 37.653587 ], [ -121.951933, 37.652228 ], [ -121.955624, 37.654946 ], [ -121.956654, 37.656237 ], [ -121.957340, 37.656713 ], [ -121.959057, 37.657460 ], [ -121.959400, 37.657732 ], [ -121.959915, 37.658615 ], [ -121.961460, 37.659703 ], [ -121.962233, 37.660518 ], [ -121.963091, 37.660994 ], [ -121.963434, 37.661333 ], [ -121.963863, 37.661469 ], [ -121.964378, 37.662285 ], [ -121.964808, 37.662556 ], [ -121.966524, 37.662896 ], [ -121.967211, 37.663236 ], [ -121.967726, 37.663779 ], [ -121.967897, 37.664119 ], [ -121.967726, 37.664527 ], [ -121.967125, 37.665410 ], [ -121.967554, 37.666701 ], [ -121.966867, 37.667177 ], [ -121.966782, 37.667584 ], [ -121.966352, 37.668128 ], [ -121.964722, 37.669011 ], [ -121.964121, 37.669487 ], [ -121.963778, 37.669894 ], [ -121.963949, 37.670845 ], [ -121.963778, 37.671117 ], [ -121.963348, 37.671321 ], [ -121.963434, 37.672000 ], [ -121.963778, 37.671457 ], [ -121.965923, 37.671661 ], [ -121.967468, 37.671389 ], [ -121.967897, 37.671457 ], [ -121.969700, 37.672136 ], [ -121.970730, 37.672748 ], [ -121.971416, 37.673427 ], [ -121.972361, 37.673699 ], [ -121.972876, 37.674038 ], [ -121.973562, 37.674106 ], [ -121.974850, 37.674038 ], [ -121.975451, 37.674854 ], [ -121.976910, 37.675601 ], [ -121.976738, 37.676212 ], [ -121.976824, 37.676552 ], [ -121.978283, 37.677843 ], [ -121.978712, 37.678794 ], [ -121.978970, 37.678929 ], [ -121.979313, 37.678997 ], [ -121.981459, 37.684364 ], [ -121.983519, 37.689050 ], [ -121.984119, 37.689118 ], [ -121.984377, 37.688983 ], [ -121.985493, 37.687964 ], [ -121.986179, 37.687692 ], [ -121.986866, 37.687692 ], [ -121.987982, 37.687828 ], [ -121.989355, 37.688235 ], [ -121.990042, 37.688643 ], [ -121.991329, 37.688915 ], [ -121.992188, 37.689526 ], [ -121.992874, 37.689933 ], [ -121.993904, 37.690205 ], [ -121.996307, 37.690205 ], [ -121.997080, 37.690477 ], [ -121.999054, 37.690884 ], [ -121.999054, 37.703584 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450502", "GEOID10": "06001450502", "NAME10": "4505.02", "NAMELSAD10": "Census Tract 4505.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11180474, "AWATER10": 3336, "INTPTLAT10": "+37.7144480", "INTPTLON10": "-121.9692968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.967125, 37.724022 ], [ -121.960773, 37.718658 ], [ -121.950302, 37.720967 ], [ -121.943693, 37.722732 ], [ -121.942320, 37.722935 ], [ -121.940947, 37.718590 ], [ -121.939487, 37.713905 ], [ -121.940002, 37.713770 ], [ -121.941204, 37.713838 ], [ -121.942062, 37.713566 ], [ -121.942835, 37.713634 ], [ -121.942921, 37.713091 ], [ -121.944036, 37.713023 ], [ -121.945238, 37.713226 ], [ -121.945238, 37.712480 ], [ -121.946869, 37.712480 ], [ -121.947384, 37.711936 ], [ -121.947298, 37.711529 ], [ -121.946955, 37.710986 ], [ -121.948071, 37.710443 ], [ -121.947985, 37.709152 ], [ -121.947813, 37.708881 ], [ -121.946268, 37.707794 ], [ -121.946526, 37.707047 ], [ -121.946611, 37.706368 ], [ -121.945925, 37.704195 ], [ -121.946011, 37.703109 ], [ -121.945839, 37.702498 ], [ -121.944809, 37.700664 ], [ -121.943865, 37.699578 ], [ -121.941376, 37.700257 ], [ -121.935797, 37.702090 ], [ -121.934938, 37.698491 ], [ -121.938200, 37.698423 ], [ -121.957426, 37.698559 ], [ -121.958456, 37.698559 ], [ -121.962919, 37.697744 ], [ -121.965408, 37.697472 ], [ -121.967983, 37.697336 ], [ -121.970129, 37.697404 ], [ -121.973133, 37.697744 ], [ -121.982489, 37.699374 ], [ -121.987123, 37.699917 ], [ -121.989355, 37.700528 ], [ -121.992188, 37.701751 ], [ -121.995363, 37.702905 ], [ -121.996651, 37.703177 ], [ -121.999054, 37.703584 ], [ -121.999054, 37.705621 ], [ -121.992188, 37.711529 ], [ -121.984205, 37.718590 ], [ -121.977940, 37.724022 ], [ -121.967125, 37.724022 ] ] ] } } , @@ -2440,7 +2440,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450602", "GEOID10": "06001450602", "NAME10": "4506.02", "NAMELSAD10": "Census Tract 4506.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6195109, "AWATER10": 0, "INTPTLAT10": "+37.6706482", "INTPTLON10": "-121.9128234" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.922579, 37.701139 ], [ -121.910219, 37.669554 ], [ -121.908588, 37.665478 ], [ -121.907988, 37.664255 ], [ -121.906443, 37.661945 ], [ -121.905327, 37.660586 ], [ -121.885157, 37.641083 ], [ -121.884384, 37.639927 ], [ -121.885757, 37.639247 ], [ -121.886616, 37.638636 ], [ -121.891079, 37.637344 ], [ -121.891594, 37.638024 ], [ -121.895285, 37.640607 ], [ -121.897345, 37.641966 ], [ -121.898890, 37.642714 ], [ -121.899490, 37.643257 ], [ -121.900520, 37.644956 ], [ -121.903439, 37.646927 ], [ -121.904039, 37.647539 ], [ -121.910734, 37.659499 ], [ -121.911592, 37.660382 ], [ -121.913652, 37.662217 ], [ -121.914854, 37.663576 ], [ -121.915712, 37.663644 ], [ -121.916313, 37.664731 ], [ -121.917429, 37.665750 ], [ -121.919060, 37.667856 ], [ -121.919231, 37.668400 ], [ -121.919231, 37.669962 ], [ -121.920176, 37.673087 ], [ -121.920691, 37.673767 ], [ -121.921120, 37.675397 ], [ -121.923351, 37.680696 ], [ -121.924725, 37.682122 ], [ -121.925240, 37.682394 ], [ -121.927385, 37.683073 ], [ -121.927385, 37.683141 ], [ -121.928329, 37.683752 ], [ -121.929188, 37.684635 ], [ -121.929531, 37.685383 ], [ -121.929703, 37.687692 ], [ -121.932535, 37.692990 ], [ -121.934252, 37.695842 ], [ -121.934938, 37.698491 ], [ -121.932707, 37.698830 ], [ -121.922579, 37.701139 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435103", "GEOID10": "06001435103", "NAME10": "4351.03", "NAMELSAD10": "Census Tract 4351.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 51492700, "AWATER10": 0, "INTPTLAT10": "+37.6518042", "INTPTLON10": "-121.9830876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.999054, 37.690884 ], [ -121.997080, 37.690477 ], [ -121.996307, 37.690205 ], [ -121.993904, 37.690205 ], [ -121.992874, 37.689933 ], [ -121.992188, 37.689526 ], [ -121.991329, 37.688915 ], [ -121.990042, 37.688643 ], [ -121.989355, 37.688235 ], [ -121.987982, 37.687828 ], [ -121.986866, 37.687692 ], [ -121.986179, 37.687692 ], [ -121.985493, 37.687964 ], [ -121.984377, 37.688983 ], [ -121.984119, 37.689118 ], [ -121.983519, 37.689050 ], [ -121.981459, 37.684364 ], [ -121.979313, 37.678997 ], [ -121.978970, 37.678929 ], [ -121.978712, 37.678794 ], [ -121.978283, 37.677843 ], [ -121.976824, 37.676552 ], [ -121.976738, 37.676212 ], [ -121.976910, 37.675601 ], [ -121.975451, 37.674854 ], [ -121.974850, 37.674038 ], [ -121.973562, 37.674106 ], [ -121.972876, 37.674038 ], [ -121.972361, 37.673699 ], [ -121.971416, 37.673427 ], [ -121.970730, 37.672748 ], [ -121.969700, 37.672136 ], [ -121.967897, 37.671457 ], [ -121.967468, 37.671389 ], [ -121.965923, 37.671661 ], [ -121.963778, 37.671457 ], [ -121.963434, 37.672000 ], [ -121.963348, 37.671321 ], [ -121.963778, 37.671117 ], [ -121.963949, 37.670845 ], [ -121.963778, 37.669894 ], [ -121.964121, 37.669487 ], [ -121.964722, 37.669011 ], [ -121.966352, 37.668128 ], [ -121.966782, 37.667584 ], [ -121.966867, 37.667177 ], [ -121.967554, 37.666701 ], [ -121.967125, 37.665410 ], [ -121.967726, 37.664527 ], [ -121.967897, 37.664119 ], [ -121.967726, 37.663779 ], [ -121.967211, 37.663236 ], [ -121.966524, 37.662896 ], [ -121.964808, 37.662556 ], [ -121.964378, 37.662285 ], [ -121.963863, 37.661469 ], [ -121.963434, 37.661333 ], [ -121.963263, 37.661062 ], [ -121.962318, 37.660518 ], [ -121.960516, 37.659023 ], [ -121.959915, 37.658615 ], [ -121.959400, 37.657732 ], [ -121.959057, 37.657460 ], [ -121.957340, 37.656713 ], [ -121.956654, 37.656237 ], [ -121.955624, 37.654946 ], [ -121.951933, 37.652228 ], [ -121.950645, 37.653587 ], [ -121.949959, 37.653179 ], [ -121.949358, 37.652364 ], [ -121.948671, 37.651956 ], [ -121.948328, 37.651141 ], [ -121.948328, 37.650801 ], [ -121.947556, 37.650121 ], [ -121.946783, 37.649850 ], [ -121.945925, 37.649102 ], [ -121.945753, 37.648830 ], [ -121.945581, 37.647947 ], [ -121.945152, 37.647403 ], [ -121.944723, 37.647131 ], [ -121.944208, 37.646995 ], [ -121.943607, 37.646520 ], [ -121.941891, 37.644956 ], [ -121.941462, 37.643937 ], [ -121.941462, 37.643529 ], [ -121.941719, 37.643189 ], [ -121.940346, 37.642918 ], [ -121.939144, 37.642306 ], [ -121.939144, 37.642034 ], [ -121.939573, 37.641830 ], [ -121.939573, 37.641626 ], [ -121.938801, 37.640879 ], [ -121.938629, 37.640131 ], [ -121.937599, 37.639519 ], [ -121.936312, 37.639247 ], [ -121.935368, 37.638296 ], [ -121.935196, 37.638024 ], [ -121.935196, 37.637616 ], [ -121.934767, 37.636801 ], [ -121.934252, 37.636325 ], [ -121.934166, 37.635577 ], [ -121.934252, 37.635033 ], [ -121.932964, 37.634014 ], [ -121.932535, 37.633538 ], [ -121.932364, 37.632858 ], [ -121.931505, 37.632179 ], [ -121.931334, 37.631023 ], [ -121.931076, 37.630615 ], [ -121.930046, 37.630275 ], [ -121.929531, 37.629935 ], [ -121.929188, 37.629324 ], [ -121.929188, 37.629052 ], [ -121.929016, 37.628916 ], [ -121.927814, 37.628848 ], [ -121.927557, 37.628644 ], [ -121.927299, 37.628032 ], [ -121.926785, 37.627488 ], [ -121.926098, 37.626401 ], [ -121.926098, 37.624837 ], [ -121.925497, 37.624361 ], [ -121.925583, 37.623477 ], [ -121.923952, 37.618923 ], [ -121.922064, 37.618583 ], [ -121.916914, 37.614639 ], [ -121.911421, 37.608588 ], [ -121.909275, 37.607908 ], [ -121.908588, 37.606412 ], [ -121.904726, 37.603692 ], [ -121.904469, 37.602128 ], [ -121.902409, 37.601244 ], [ -121.902752, 37.600632 ], [ -121.896915, 37.597708 ], [ -121.897345, 37.597436 ], [ -121.896315, 37.597300 ], [ -121.897774, 37.595736 ], [ -121.898460, 37.595328 ], [ -121.896143, 37.593968 ], [ -121.897774, 37.594172 ], [ -121.902666, 37.595464 ], [ -121.904125, 37.595668 ], [ -121.905155, 37.595668 ], [ -121.906013, 37.595532 ], [ -121.909533, 37.594308 ], [ -121.911936, 37.593628 ], [ -121.914082, 37.593832 ], [ -121.917429, 37.595056 ], [ -121.920691, 37.597368 ], [ -121.921034, 37.597980 ], [ -121.921291, 37.598116 ], [ -121.922407, 37.598592 ], [ -121.923695, 37.598864 ], [ -121.924467, 37.599000 ], [ -121.925240, 37.599000 ], [ -121.926527, 37.598592 ], [ -121.928158, 37.596960 ], [ -121.929960, 37.596076 ], [ -121.930475, 37.595396 ], [ -121.931419, 37.593016 ], [ -121.932535, 37.591859 ], [ -121.934338, 37.591111 ], [ -121.935883, 37.590975 ], [ -121.936312, 37.591111 ], [ -121.936741, 37.591587 ], [ -121.937256, 37.592199 ], [ -121.937513, 37.592812 ], [ -121.938114, 37.594920 ], [ -121.938114, 37.595940 ], [ -121.937943, 37.597436 ], [ -121.938028, 37.597776 ], [ -121.938372, 37.598116 ], [ -121.939659, 37.598864 ], [ -121.940174, 37.598864 ], [ -121.941376, 37.598456 ], [ -121.942663, 37.597912 ], [ -121.943607, 37.597640 ], [ -121.945667, 37.597436 ], [ -121.946526, 37.597640 ], [ -121.946955, 37.597844 ], [ -121.946955, 37.597912 ], [ -121.946011, 37.597912 ], [ -121.945839, 37.597980 ], [ -121.945839, 37.598184 ], [ -121.947813, 37.601176 ], [ -121.948242, 37.603080 ], [ -121.948242, 37.603624 ], [ -121.947641, 37.604576 ], [ -121.945496, 37.606684 ], [ -121.945496, 37.607568 ], [ -121.945152, 37.608384 ], [ -121.945410, 37.609064 ], [ -121.945324, 37.609336 ], [ -121.943951, 37.610084 ], [ -121.942749, 37.610152 ], [ -121.942320, 37.610356 ], [ -121.942234, 37.610492 ], [ -121.942406, 37.610968 ], [ -121.942234, 37.611240 ], [ -121.941376, 37.611240 ], [ -121.941462, 37.611648 ], [ -121.941204, 37.611988 ], [ -121.940947, 37.613484 ], [ -121.940947, 37.613823 ], [ -121.942148, 37.614775 ], [ -121.943521, 37.614707 ], [ -121.943865, 37.614843 ], [ -121.944208, 37.615183 ], [ -121.945066, 37.616611 ], [ -121.944895, 37.617087 ], [ -121.944208, 37.617495 ], [ -121.943436, 37.618311 ], [ -121.943521, 37.618719 ], [ -121.943693, 37.618991 ], [ -121.943779, 37.619670 ], [ -121.943779, 37.620486 ], [ -121.943693, 37.620758 ], [ -121.943436, 37.620962 ], [ -121.943436, 37.621234 ], [ -121.943693, 37.621370 ], [ -121.943693, 37.621778 ], [ -121.943521, 37.623409 ], [ -121.943264, 37.623817 ], [ -121.943264, 37.624293 ], [ -121.943951, 37.625585 ], [ -121.943951, 37.625857 ], [ -121.943779, 37.626129 ], [ -121.943865, 37.626401 ], [ -121.944466, 37.627216 ], [ -121.945839, 37.628440 ], [ -121.945925, 37.628848 ], [ -121.946096, 37.629052 ], [ -121.947298, 37.629867 ], [ -121.948671, 37.630071 ], [ -121.949015, 37.630343 ], [ -121.949100, 37.630819 ], [ -121.949701, 37.631431 ], [ -121.951246, 37.632247 ], [ -121.951675, 37.633062 ], [ -121.952534, 37.633266 ], [ -121.952877, 37.633538 ], [ -121.953650, 37.634761 ], [ -121.954336, 37.635169 ], [ -121.954679, 37.635917 ], [ -121.958885, 37.636121 ], [ -121.960173, 37.636801 ], [ -121.961031, 37.637752 ], [ -121.961975, 37.638432 ], [ -121.962576, 37.639723 ], [ -121.963177, 37.640471 ], [ -121.964550, 37.641626 ], [ -121.965666, 37.642238 ], [ -121.966181, 37.642850 ], [ -121.966524, 37.643121 ], [ -121.967039, 37.643189 ], [ -121.968842, 37.643053 ], [ -121.978283, 37.639383 ], [ -121.981115, 37.635781 ], [ -121.983175, 37.634558 ], [ -121.984549, 37.634694 ], [ -121.987381, 37.633946 ], [ -121.989870, 37.633810 ], [ -121.990385, 37.633402 ], [ -121.991072, 37.631703 ], [ -121.991243, 37.631567 ], [ -121.991415, 37.630547 ], [ -121.991758, 37.630343 ], [ -121.992188, 37.630411 ], [ -121.993732, 37.630683 ], [ -121.994505, 37.631159 ], [ -121.995792, 37.631499 ], [ -121.996393, 37.631499 ], [ -121.998625, 37.630683 ], [ -121.999054, 37.630071 ], [ -121.999054, 37.690884 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435103", "GEOID10": "06001435103", "NAME10": "4351.03", "NAMELSAD10": "Census Tract 4351.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 51492700, "AWATER10": 0, "INTPTLAT10": "+37.6518042", "INTPTLON10": "-121.9830876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.999054, 37.690884 ], [ -121.997080, 37.690477 ], [ -121.996307, 37.690205 ], [ -121.993904, 37.690205 ], [ -121.992874, 37.689933 ], [ -121.992188, 37.689526 ], [ -121.991329, 37.688915 ], [ -121.990042, 37.688643 ], [ -121.989355, 37.688235 ], [ -121.987982, 37.687828 ], [ -121.986866, 37.687692 ], [ -121.986179, 37.687692 ], [ -121.985493, 37.687964 ], [ -121.984377, 37.688983 ], [ -121.984119, 37.689118 ], [ -121.983519, 37.689050 ], [ -121.981459, 37.684364 ], [ -121.979313, 37.678997 ], [ -121.978970, 37.678929 ], [ -121.978712, 37.678794 ], [ -121.978283, 37.677843 ], [ -121.976824, 37.676552 ], [ -121.976738, 37.676212 ], [ -121.976910, 37.675601 ], [ -121.975451, 37.674854 ], [ -121.974850, 37.674038 ], [ -121.973562, 37.674106 ], [ -121.972876, 37.674038 ], [ -121.972361, 37.673699 ], [ -121.971416, 37.673427 ], [ -121.970730, 37.672748 ], [ -121.969700, 37.672136 ], [ -121.967897, 37.671457 ], [ -121.967468, 37.671389 ], [ -121.965923, 37.671661 ], [ -121.963778, 37.671457 ], [ -121.963434, 37.672000 ], [ -121.963348, 37.671321 ], [ -121.963778, 37.671117 ], [ -121.963949, 37.670845 ], [ -121.963778, 37.669894 ], [ -121.964121, 37.669487 ], [ -121.964722, 37.669011 ], [ -121.966352, 37.668128 ], [ -121.966782, 37.667584 ], [ -121.966867, 37.667177 ], [ -121.967554, 37.666701 ], [ -121.967125, 37.665410 ], [ -121.967726, 37.664527 ], [ -121.967897, 37.664119 ], [ -121.967726, 37.663779 ], [ -121.967211, 37.663236 ], [ -121.966524, 37.662896 ], [ -121.964808, 37.662556 ], [ -121.964378, 37.662285 ], [ -121.963863, 37.661469 ], [ -121.963434, 37.661333 ], [ -121.963091, 37.660994 ], [ -121.962233, 37.660518 ], [ -121.961460, 37.659703 ], [ -121.959915, 37.658615 ], [ -121.959400, 37.657732 ], [ -121.959057, 37.657460 ], [ -121.957340, 37.656713 ], [ -121.956654, 37.656237 ], [ -121.955624, 37.654946 ], [ -121.951933, 37.652228 ], [ -121.950645, 37.653587 ], [ -121.949959, 37.653179 ], [ -121.949358, 37.652364 ], [ -121.948671, 37.651956 ], [ -121.948328, 37.651141 ], [ -121.948328, 37.650801 ], [ -121.947556, 37.650121 ], [ -121.946783, 37.649850 ], [ -121.945925, 37.649102 ], [ -121.945753, 37.648830 ], [ -121.945581, 37.647947 ], [ -121.945152, 37.647403 ], [ -121.944723, 37.647131 ], [ -121.944208, 37.646995 ], [ -121.943607, 37.646520 ], [ -121.941891, 37.644956 ], [ -121.941462, 37.643937 ], [ -121.941462, 37.643529 ], [ -121.941719, 37.643189 ], [ -121.940346, 37.642918 ], [ -121.939144, 37.642306 ], [ -121.939144, 37.642034 ], [ -121.939573, 37.641830 ], [ -121.939573, 37.641626 ], [ -121.938801, 37.640879 ], [ -121.938629, 37.640131 ], [ -121.937599, 37.639519 ], [ -121.936312, 37.639247 ], [ -121.935368, 37.638296 ], [ -121.935196, 37.638024 ], [ -121.935196, 37.637616 ], [ -121.934767, 37.636801 ], [ -121.934252, 37.636325 ], [ -121.934166, 37.635577 ], [ -121.934252, 37.635033 ], [ -121.932964, 37.634014 ], [ -121.932535, 37.633538 ], [ -121.932364, 37.632858 ], [ -121.931505, 37.632179 ], [ -121.931334, 37.631023 ], [ -121.931076, 37.630615 ], [ -121.930046, 37.630275 ], [ -121.929531, 37.629935 ], [ -121.929188, 37.629324 ], [ -121.929188, 37.629052 ], [ -121.929016, 37.628916 ], [ -121.927814, 37.628848 ], [ -121.927557, 37.628644 ], [ -121.927299, 37.628032 ], [ -121.926785, 37.627488 ], [ -121.926098, 37.626401 ], [ -121.926098, 37.624837 ], [ -121.925497, 37.624361 ], [ -121.925583, 37.623477 ], [ -121.923952, 37.618923 ], [ -121.922064, 37.618583 ], [ -121.916914, 37.614639 ], [ -121.911421, 37.608588 ], [ -121.909275, 37.607908 ], [ -121.908588, 37.606412 ], [ -121.904726, 37.603692 ], [ -121.904469, 37.602128 ], [ -121.902409, 37.601244 ], [ -121.902752, 37.600632 ], [ -121.896915, 37.597708 ], [ -121.897345, 37.597436 ], [ -121.896315, 37.597300 ], [ -121.897774, 37.595736 ], [ -121.898460, 37.595328 ], [ -121.896143, 37.593968 ], [ -121.897774, 37.594172 ], [ -121.902666, 37.595464 ], [ -121.904125, 37.595668 ], [ -121.905155, 37.595668 ], [ -121.906013, 37.595532 ], [ -121.909533, 37.594308 ], [ -121.911936, 37.593628 ], [ -121.914082, 37.593832 ], [ -121.917429, 37.595056 ], [ -121.920691, 37.597368 ], [ -121.921034, 37.597980 ], [ -121.921291, 37.598116 ], [ -121.922407, 37.598592 ], [ -121.923695, 37.598864 ], [ -121.924467, 37.599000 ], [ -121.925240, 37.599000 ], [ -121.926527, 37.598592 ], [ -121.928158, 37.596960 ], [ -121.929960, 37.596076 ], [ -121.930475, 37.595396 ], [ -121.931419, 37.593016 ], [ -121.932535, 37.591859 ], [ -121.934338, 37.591111 ], [ -121.935883, 37.590975 ], [ -121.936312, 37.591111 ], [ -121.936741, 37.591587 ], [ -121.937256, 37.592199 ], [ -121.937513, 37.592812 ], [ -121.938114, 37.594920 ], [ -121.938114, 37.595940 ], [ -121.937943, 37.597436 ], [ -121.938028, 37.597776 ], [ -121.938372, 37.598116 ], [ -121.939659, 37.598864 ], [ -121.940174, 37.598864 ], [ -121.941376, 37.598456 ], [ -121.942663, 37.597912 ], [ -121.943607, 37.597640 ], [ -121.945667, 37.597436 ], [ -121.946526, 37.597640 ], [ -121.946955, 37.597844 ], [ -121.946955, 37.597912 ], [ -121.946011, 37.597912 ], [ -121.945839, 37.597980 ], [ -121.945839, 37.598184 ], [ -121.947813, 37.601176 ], [ -121.948242, 37.603080 ], [ -121.948242, 37.603624 ], [ -121.947641, 37.604576 ], [ -121.945496, 37.606684 ], [ -121.945496, 37.607568 ], [ -121.945152, 37.608384 ], [ -121.945410, 37.609064 ], [ -121.945324, 37.609336 ], [ -121.943951, 37.610084 ], [ -121.942749, 37.610152 ], [ -121.942320, 37.610356 ], [ -121.942234, 37.610492 ], [ -121.942406, 37.610968 ], [ -121.942234, 37.611240 ], [ -121.941376, 37.611240 ], [ -121.941462, 37.611648 ], [ -121.941204, 37.611988 ], [ -121.940947, 37.613484 ], [ -121.940947, 37.613823 ], [ -121.942148, 37.614775 ], [ -121.943521, 37.614707 ], [ -121.943865, 37.614843 ], [ -121.944208, 37.615183 ], [ -121.945066, 37.616611 ], [ -121.944895, 37.617087 ], [ -121.944208, 37.617495 ], [ -121.943436, 37.618311 ], [ -121.943521, 37.618719 ], [ -121.943693, 37.618991 ], [ -121.943779, 37.619670 ], [ -121.943779, 37.620486 ], [ -121.943693, 37.620758 ], [ -121.943436, 37.620962 ], [ -121.943436, 37.621234 ], [ -121.943693, 37.621370 ], [ -121.943693, 37.621778 ], [ -121.943521, 37.623409 ], [ -121.943264, 37.623817 ], [ -121.943264, 37.624293 ], [ -121.943951, 37.625585 ], [ -121.943951, 37.625857 ], [ -121.943779, 37.626129 ], [ -121.943865, 37.626401 ], [ -121.944466, 37.627216 ], [ -121.945839, 37.628440 ], [ -121.945925, 37.628848 ], [ -121.946096, 37.629052 ], [ -121.947298, 37.629867 ], [ -121.948671, 37.630071 ], [ -121.949015, 37.630343 ], [ -121.949100, 37.630819 ], [ -121.949701, 37.631431 ], [ -121.951246, 37.632247 ], [ -121.951675, 37.633062 ], [ -121.952534, 37.633266 ], [ -121.952877, 37.633538 ], [ -121.953650, 37.634761 ], [ -121.954336, 37.635169 ], [ -121.954679, 37.635917 ], [ -121.958885, 37.636121 ], [ -121.960173, 37.636801 ], [ -121.961031, 37.637752 ], [ -121.961975, 37.638432 ], [ -121.962576, 37.639723 ], [ -121.963177, 37.640471 ], [ -121.964550, 37.641626 ], [ -121.965666, 37.642238 ], [ -121.966181, 37.642850 ], [ -121.966524, 37.643121 ], [ -121.967039, 37.643189 ], [ -121.968842, 37.643053 ], [ -121.978283, 37.639383 ], [ -121.981115, 37.635781 ], [ -121.983175, 37.634558 ], [ -121.984549, 37.634694 ], [ -121.987381, 37.633946 ], [ -121.989870, 37.633810 ], [ -121.990385, 37.633402 ], [ -121.991072, 37.631703 ], [ -121.991243, 37.631567 ], [ -121.991415, 37.630547 ], [ -121.991758, 37.630343 ], [ -121.992188, 37.630411 ], [ -121.993732, 37.630683 ], [ -121.994505, 37.631159 ], [ -121.995792, 37.631499 ], [ -121.996393, 37.631499 ], [ -121.998625, 37.630683 ], [ -121.999054, 37.630071 ], [ -121.999054, 37.690884 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.923265, 37.724022 ], [ -121.918459, 37.718590 ], [ -121.914425, 37.714177 ], [ -121.910391, 37.710578 ], [ -121.898632, 37.701886 ], [ -121.906443, 37.701886 ], [ -121.907043, 37.701683 ], [ -121.907215, 37.701886 ], [ -121.911592, 37.701954 ], [ -121.916399, 37.702022 ], [ -121.919918, 37.701886 ], [ -121.922579, 37.701139 ], [ -121.923695, 37.703584 ], [ -121.925068, 37.705486 ], [ -121.923523, 37.705893 ], [ -121.923952, 37.706233 ], [ -121.926699, 37.709560 ], [ -121.927299, 37.710918 ], [ -121.927557, 37.712615 ], [ -121.927042, 37.714313 ], [ -121.926699, 37.718590 ], [ -121.926527, 37.721713 ], [ -121.926785, 37.722528 ], [ -121.927900, 37.724022 ], [ -121.923265, 37.724022 ] ] ] } } , @@ -2450,7 +2450,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450750", "GEOID10": "06001450750", "NAME10": "4507.50", "NAMELSAD10": "Census Tract 4507.50", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1693291, "AWATER10": 0, "INTPTLAT10": "+37.7053403", "INTPTLON10": "-121.8611155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.852798, 37.710103 ], [ -121.851854, 37.710035 ], [ -121.851683, 37.709764 ], [ -121.850481, 37.708473 ], [ -121.850395, 37.708270 ], [ -121.850481, 37.702701 ], [ -121.849794, 37.702701 ], [ -121.849365, 37.702633 ], [ -121.848164, 37.701954 ], [ -121.847219, 37.701547 ], [ -121.844988, 37.701275 ], [ -121.872196, 37.701547 ], [ -121.872025, 37.710035 ], [ -121.866703, 37.709696 ], [ -121.862755, 37.708813 ], [ -121.861124, 37.708541 ], [ -121.859837, 37.708473 ], [ -121.859493, 37.708338 ], [ -121.857262, 37.708609 ], [ -121.853828, 37.709967 ], [ -121.852798, 37.710103 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450604", "GEOID10": "06001450604", "NAME10": "4506.04", "NAMELSAD10": "Census Tract 4506.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2112934, "AWATER10": 0, "INTPTLAT10": "+37.6811899", "INTPTLON10": "-121.8865529" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.878119, 37.688847 ], [ -121.877003, 37.685315 ], [ -121.873999, 37.676688 ], [ -121.894941, 37.676756 ], [ -121.895800, 37.676688 ], [ -121.896315, 37.676552 ], [ -121.897001, 37.676008 ], [ -121.902752, 37.679609 ], [ -121.903353, 37.680288 ], [ -121.895885, 37.682598 ], [ -121.885843, 37.686605 ], [ -121.878119, 37.688847 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450604", "GEOID10": "06001450604", "NAME10": "4506.04", "NAMELSAD10": "Census Tract 4506.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2112934, "AWATER10": 0, "INTPTLAT10": "+37.6811899", "INTPTLON10": "-121.8865529" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.878119, 37.688847 ], [ -121.877003, 37.685315 ], [ -121.873999, 37.676688 ], [ -121.894941, 37.676756 ], [ -121.895800, 37.676688 ], [ -121.896315, 37.676552 ], [ -121.897001, 37.676008 ], [ -121.902409, 37.679405 ], [ -121.903095, 37.679881 ], [ -121.903353, 37.680288 ], [ -121.895885, 37.682598 ], [ -121.885843, 37.686605 ], [ -121.878119, 37.688847 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450743", "GEOID10": "06001450743", "NAME10": "4507.43", "NAMELSAD10": "Census Tract 4507.43", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4292033, "AWATER10": 0, "INTPTLAT10": "+37.6930366", "INTPTLON10": "-121.8923831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.898031, 37.701886 ], [ -121.891680, 37.701751 ], [ -121.878805, 37.701683 ], [ -121.878633, 37.697268 ], [ -121.878719, 37.694891 ], [ -121.878633, 37.694620 ], [ -121.878119, 37.694416 ], [ -121.878376, 37.693601 ], [ -121.878376, 37.692990 ], [ -121.878290, 37.690137 ], [ -121.877947, 37.688915 ], [ -121.885843, 37.686605 ], [ -121.895885, 37.682598 ], [ -121.903353, 37.680288 ], [ -121.903696, 37.680696 ], [ -121.903782, 37.681307 ], [ -121.903610, 37.682937 ], [ -121.903439, 37.697404 ], [ -121.903954, 37.698287 ], [ -121.906357, 37.701207 ], [ -121.906700, 37.701547 ], [ -121.907043, 37.701683 ], [ -121.906443, 37.701886 ], [ -121.898031, 37.701886 ] ] ] } } , @@ -2510,7 +2510,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443102", "GEOID10": "06001443102", "NAME10": "4431.02", "NAMELSAD10": "Census Tract 4431.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2383411, "AWATER10": 0, "INTPTLAT10": "+37.5071611", "INTPTLON10": "-121.9271478" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.938028, 37.515104 ], [ -121.937342, 37.515036 ], [ -121.936140, 37.514696 ], [ -121.934595, 37.513947 ], [ -121.933565, 37.513879 ], [ -121.926785, 37.515036 ], [ -121.925840, 37.515036 ], [ -121.924982, 37.514900 ], [ -121.923351, 37.514355 ], [ -121.923351, 37.514083 ], [ -121.921034, 37.513879 ], [ -121.919231, 37.513607 ], [ -121.919746, 37.510407 ], [ -121.919746, 37.507343 ], [ -121.919403, 37.499376 ], [ -121.920519, 37.497333 ], [ -121.923008, 37.495563 ], [ -121.926527, 37.498150 ], [ -121.930561, 37.502236 ], [ -121.933823, 37.505232 ], [ -121.934595, 37.506117 ], [ -121.935282, 37.507207 ], [ -121.939487, 37.514764 ], [ -121.938028, 37.515104 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443103", "GEOID10": "06001443103", "NAME10": "4431.03", "NAMELSAD10": "Census Tract 4431.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15518521, "AWATER10": 0, "INTPTLAT10": "+37.5273674", "INTPTLON10": "-121.9027992" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915712, 37.555397 ], [ -121.909618, 37.554240 ], [ -121.908159, 37.551723 ], [ -121.907129, 37.549341 ], [ -121.906443, 37.549341 ], [ -121.906357, 37.549137 ], [ -121.905241, 37.549137 ], [ -121.901035, 37.545870 ], [ -121.891336, 37.549749 ], [ -121.887560, 37.544033 ], [ -121.886787, 37.535662 ], [ -121.880608, 37.528243 ], [ -121.879320, 37.526337 ], [ -121.879492, 37.525656 ], [ -121.879835, 37.525248 ], [ -121.881380, 37.521504 ], [ -121.883612, 37.517215 ], [ -121.884813, 37.513743 ], [ -121.884985, 37.512041 ], [ -121.884212, 37.507956 ], [ -121.883011, 37.503257 ], [ -121.883783, 37.503257 ], [ -121.885242, 37.503598 ], [ -121.885586, 37.503802 ], [ -121.887131, 37.505845 ], [ -121.889448, 37.507343 ], [ -121.890993, 37.507956 ], [ -121.891422, 37.508024 ], [ -121.892023, 37.508296 ], [ -121.893568, 37.508568 ], [ -121.894083, 37.508364 ], [ -121.895714, 37.508228 ], [ -121.896915, 37.507888 ], [ -121.897516, 37.507479 ], [ -121.898718, 37.507275 ], [ -121.899233, 37.506730 ], [ -121.900263, 37.506594 ], [ -121.900949, 37.506049 ], [ -121.901207, 37.505504 ], [ -121.901894, 37.505028 ], [ -121.903181, 37.505096 ], [ -121.903782, 37.504824 ], [ -121.904383, 37.504755 ], [ -121.905499, 37.504211 ], [ -121.912193, 37.503189 ], [ -121.912279, 37.503394 ], [ -121.914854, 37.502849 ], [ -121.915283, 37.502304 ], [ -121.916227, 37.502032 ], [ -121.919403, 37.502032 ], [ -121.919746, 37.507343 ], [ -121.919746, 37.510407 ], [ -121.919231, 37.513539 ], [ -121.917858, 37.518304 ], [ -121.917858, 37.525792 ], [ -121.919489, 37.531170 ], [ -121.920519, 37.535253 ], [ -121.922150, 37.537636 ], [ -121.924381, 37.540562 ], [ -121.921806, 37.542740 ], [ -121.920948, 37.543693 ], [ -121.920433, 37.544509 ], [ -121.919832, 37.545870 ], [ -121.919661, 37.548048 ], [ -121.919317, 37.549205 ], [ -121.918116, 37.551178 ], [ -121.916656, 37.554172 ], [ -121.915712, 37.555397 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443103", "GEOID10": "06001443103", "NAME10": "4431.03", "NAMELSAD10": "Census Tract 4431.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15518521, "AWATER10": 0, "INTPTLAT10": "+37.5273674", "INTPTLON10": "-121.9027992" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915712, 37.555397 ], [ -121.909618, 37.554240 ], [ -121.908159, 37.551723 ], [ -121.907129, 37.549341 ], [ -121.906443, 37.549341 ], [ -121.906357, 37.549137 ], [ -121.905241, 37.549137 ], [ -121.901035, 37.545870 ], [ -121.891336, 37.549749 ], [ -121.887560, 37.544033 ], [ -121.886787, 37.535662 ], [ -121.880608, 37.528243 ], [ -121.879320, 37.526337 ], [ -121.879492, 37.525656 ], [ -121.879835, 37.525248 ], [ -121.881380, 37.521504 ], [ -121.883612, 37.517215 ], [ -121.884813, 37.513743 ], [ -121.884985, 37.512041 ], [ -121.884212, 37.507956 ], [ -121.883011, 37.503257 ], [ -121.883783, 37.503257 ], [ -121.885242, 37.503598 ], [ -121.885586, 37.503802 ], [ -121.887131, 37.505845 ], [ -121.889448, 37.507343 ], [ -121.890993, 37.507956 ], [ -121.891422, 37.508024 ], [ -121.892023, 37.508296 ], [ -121.893568, 37.508568 ], [ -121.894083, 37.508364 ], [ -121.895800, 37.508228 ], [ -121.896915, 37.507888 ], [ -121.897516, 37.507479 ], [ -121.898718, 37.507275 ], [ -121.899233, 37.506730 ], [ -121.900263, 37.506594 ], [ -121.900949, 37.506049 ], [ -121.901207, 37.505504 ], [ -121.901894, 37.505028 ], [ -121.903181, 37.505096 ], [ -121.903782, 37.504824 ], [ -121.904383, 37.504755 ], [ -121.905499, 37.504211 ], [ -121.912193, 37.503189 ], [ -121.912279, 37.503394 ], [ -121.914854, 37.502849 ], [ -121.915283, 37.502304 ], [ -121.916227, 37.502032 ], [ -121.919403, 37.502032 ], [ -121.919746, 37.507343 ], [ -121.919746, 37.510407 ], [ -121.919231, 37.513539 ], [ -121.917858, 37.518304 ], [ -121.917858, 37.525792 ], [ -121.919489, 37.531170 ], [ -121.920519, 37.535253 ], [ -121.922150, 37.537636 ], [ -121.924381, 37.540562 ], [ -121.921806, 37.542740 ], [ -121.920948, 37.543693 ], [ -121.920433, 37.544509 ], [ -121.919832, 37.545870 ], [ -121.919661, 37.548048 ], [ -121.919317, 37.549205 ], [ -121.918116, 37.551178 ], [ -121.916656, 37.554172 ], [ -121.915712, 37.555397 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443105", "GEOID10": "06001443105", "NAME10": "4431.05", "NAMELSAD10": "Census Tract 4431.05", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3290366, "AWATER10": 0, "INTPTLAT10": "+37.5218333", "INTPTLON10": "-121.9322534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.933994, 37.531646 ], [ -121.933651, 37.530829 ], [ -121.929274, 37.526065 ], [ -121.928759, 37.525248 ], [ -121.928415, 37.523546 ], [ -121.927471, 37.523682 ], [ -121.926785, 37.523614 ], [ -121.925154, 37.522933 ], [ -121.924381, 37.522933 ], [ -121.923609, 37.523205 ], [ -121.922150, 37.524295 ], [ -121.921463, 37.525316 ], [ -121.917944, 37.526133 ], [ -121.917772, 37.523818 ], [ -121.917858, 37.518304 ], [ -121.919231, 37.513607 ], [ -121.921034, 37.513879 ], [ -121.923351, 37.514083 ], [ -121.923351, 37.514355 ], [ -121.924982, 37.514900 ], [ -121.925840, 37.515036 ], [ -121.926785, 37.515036 ], [ -121.933565, 37.513879 ], [ -121.934595, 37.513947 ], [ -121.936140, 37.514696 ], [ -121.937342, 37.515036 ], [ -121.938028, 37.515104 ], [ -121.939487, 37.514764 ], [ -121.941891, 37.518713 ], [ -121.945581, 37.524090 ], [ -121.945925, 37.525112 ], [ -121.945839, 37.526609 ], [ -121.945066, 37.528243 ], [ -121.944551, 37.528855 ], [ -121.941462, 37.530965 ], [ -121.939487, 37.530965 ], [ -121.935968, 37.531306 ], [ -121.933994, 37.531646 ] ] ] } } , @@ -2520,7 +2520,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443301", "GEOID10": "06001443301", "NAME10": "4433.01", "NAMELSAD10": "Census Tract 4433.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1602359, "AWATER10": 0, "INTPTLAT10": "+37.4707218", "INTPTLON10": "-121.9128679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915455, 37.483032 ], [ -121.914511, 37.482895 ], [ -121.913309, 37.482895 ], [ -121.910477, 37.473700 ], [ -121.909876, 37.472338 ], [ -121.908760, 37.470567 ], [ -121.906185, 37.470022 ], [ -121.905413, 37.466411 ], [ -121.903868, 37.464504 ], [ -121.906786, 37.463686 ], [ -121.907129, 37.463550 ], [ -121.907043, 37.463345 ], [ -121.907301, 37.463277 ], [ -121.907387, 37.463482 ], [ -121.908588, 37.463005 ], [ -121.909103, 37.463005 ], [ -121.911077, 37.461778 ], [ -121.911163, 37.461574 ], [ -121.912451, 37.460893 ], [ -121.912794, 37.460893 ], [ -121.914425, 37.463482 ], [ -121.921034, 37.474994 ], [ -121.919146, 37.475607 ], [ -121.919403, 37.476016 ], [ -121.916142, 37.477174 ], [ -121.916056, 37.477242 ], [ -121.916485, 37.477991 ], [ -121.914167, 37.478877 ], [ -121.915026, 37.480920 ], [ -121.915197, 37.481056 ], [ -121.915884, 37.480784 ], [ -121.916828, 37.482487 ], [ -121.916656, 37.482623 ], [ -121.915455, 37.483032 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443200", "GEOID10": "06001443200", "NAME10": "4432", "NAMELSAD10": "Census Tract 4432", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13642449, "AWATER10": 0, "INTPTLAT10": "+37.4871497", "INTPTLON10": "-121.8964116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.893568, 37.508568 ], [ -121.892023, 37.508296 ], [ -121.891422, 37.508024 ], [ -121.890993, 37.507956 ], [ -121.889448, 37.507343 ], [ -121.887131, 37.505845 ], [ -121.885586, 37.503802 ], [ -121.885242, 37.503598 ], [ -121.883783, 37.503257 ], [ -121.883011, 37.503257 ], [ -121.882668, 37.501623 ], [ -121.884041, 37.499444 ], [ -121.882324, 37.493520 ], [ -121.876144, 37.489161 ], [ -121.867733, 37.483032 ], [ -121.869879, 37.481669 ], [ -121.870050, 37.481261 ], [ -121.870136, 37.480648 ], [ -121.870565, 37.480171 ], [ -121.870651, 37.479626 ], [ -121.870823, 37.479354 ], [ -121.872969, 37.478128 ], [ -121.873655, 37.477855 ], [ -121.873999, 37.477378 ], [ -121.874599, 37.475744 ], [ -121.875200, 37.475199 ], [ -121.876230, 37.474926 ], [ -121.876488, 37.475131 ], [ -121.877432, 37.475199 ], [ -121.877689, 37.474858 ], [ -121.878119, 37.474041 ], [ -121.878891, 37.473291 ], [ -121.879406, 37.472133 ], [ -121.880522, 37.471384 ], [ -121.881981, 37.470703 ], [ -121.882582, 37.470567 ], [ -121.883869, 37.470771 ], [ -121.884556, 37.471248 ], [ -121.885157, 37.471384 ], [ -121.885929, 37.471384 ], [ -121.887732, 37.470907 ], [ -121.889191, 37.470226 ], [ -121.889706, 37.469613 ], [ -121.890392, 37.468319 ], [ -121.890821, 37.467978 ], [ -121.892195, 37.467705 ], [ -121.894941, 37.467501 ], [ -121.896315, 37.467297 ], [ -121.896830, 37.467024 ], [ -121.897602, 37.466956 ], [ -121.898289, 37.466615 ], [ -121.898975, 37.465798 ], [ -121.899576, 37.465730 ], [ -121.901550, 37.464844 ], [ -121.902580, 37.464640 ], [ -121.903353, 37.464640 ], [ -121.903868, 37.464504 ], [ -121.905413, 37.466411 ], [ -121.906185, 37.470022 ], [ -121.908760, 37.470567 ], [ -121.909876, 37.472338 ], [ -121.910477, 37.473700 ], [ -121.913309, 37.482964 ], [ -121.913996, 37.484462 ], [ -121.919403, 37.492158 ], [ -121.923008, 37.495563 ], [ -121.921120, 37.496857 ], [ -121.920519, 37.497333 ], [ -121.920176, 37.497742 ], [ -121.919403, 37.499376 ], [ -121.919403, 37.502032 ], [ -121.916227, 37.502032 ], [ -121.915283, 37.502304 ], [ -121.914854, 37.502849 ], [ -121.912279, 37.503394 ], [ -121.912193, 37.503189 ], [ -121.905499, 37.504211 ], [ -121.904383, 37.504755 ], [ -121.903782, 37.504824 ], [ -121.903181, 37.505096 ], [ -121.901894, 37.505028 ], [ -121.901207, 37.505504 ], [ -121.900949, 37.506049 ], [ -121.900263, 37.506594 ], [ -121.899233, 37.506730 ], [ -121.898718, 37.507275 ], [ -121.897516, 37.507479 ], [ -121.896572, 37.507956 ], [ -121.895714, 37.508228 ], [ -121.894083, 37.508364 ], [ -121.893568, 37.508568 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443200", "GEOID10": "06001443200", "NAME10": "4432", "NAMELSAD10": "Census Tract 4432", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13642449, "AWATER10": 0, "INTPTLAT10": "+37.4871497", "INTPTLON10": "-121.8964116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.893568, 37.508568 ], [ -121.892023, 37.508296 ], [ -121.891422, 37.508024 ], [ -121.890993, 37.507956 ], [ -121.889448, 37.507343 ], [ -121.887131, 37.505845 ], [ -121.885586, 37.503802 ], [ -121.885242, 37.503598 ], [ -121.883783, 37.503257 ], [ -121.883011, 37.503257 ], [ -121.882668, 37.501623 ], [ -121.884041, 37.499444 ], [ -121.882324, 37.493520 ], [ -121.876144, 37.489161 ], [ -121.867733, 37.483032 ], [ -121.869879, 37.481669 ], [ -121.870050, 37.481261 ], [ -121.870136, 37.480648 ], [ -121.870565, 37.480171 ], [ -121.870651, 37.479626 ], [ -121.870823, 37.479354 ], [ -121.872969, 37.478128 ], [ -121.873655, 37.477855 ], [ -121.873999, 37.477378 ], [ -121.874599, 37.475744 ], [ -121.875200, 37.475199 ], [ -121.876230, 37.474926 ], [ -121.876488, 37.475131 ], [ -121.877432, 37.475199 ], [ -121.877689, 37.474858 ], [ -121.878119, 37.474041 ], [ -121.878891, 37.473291 ], [ -121.879406, 37.472133 ], [ -121.880522, 37.471384 ], [ -121.881981, 37.470703 ], [ -121.882582, 37.470567 ], [ -121.883869, 37.470771 ], [ -121.884556, 37.471248 ], [ -121.885157, 37.471384 ], [ -121.885929, 37.471384 ], [ -121.887732, 37.470907 ], [ -121.889191, 37.470226 ], [ -121.889706, 37.469613 ], [ -121.890392, 37.468319 ], [ -121.890821, 37.467978 ], [ -121.892195, 37.467705 ], [ -121.894941, 37.467501 ], [ -121.896315, 37.467297 ], [ -121.896830, 37.467024 ], [ -121.897602, 37.466956 ], [ -121.898289, 37.466615 ], [ -121.898975, 37.465798 ], [ -121.899576, 37.465730 ], [ -121.901550, 37.464844 ], [ -121.902580, 37.464640 ], [ -121.903353, 37.464640 ], [ -121.903868, 37.464504 ], [ -121.905413, 37.466411 ], [ -121.906185, 37.470022 ], [ -121.908760, 37.470567 ], [ -121.909876, 37.472338 ], [ -121.910477, 37.473700 ], [ -121.913309, 37.482964 ], [ -121.913996, 37.484462 ], [ -121.919403, 37.492158 ], [ -121.923008, 37.495563 ], [ -121.921120, 37.496857 ], [ -121.920519, 37.497333 ], [ -121.920176, 37.497742 ], [ -121.919403, 37.499376 ], [ -121.919403, 37.502032 ], [ -121.916227, 37.502032 ], [ -121.915283, 37.502304 ], [ -121.914854, 37.502849 ], [ -121.912279, 37.503394 ], [ -121.912193, 37.503189 ], [ -121.905499, 37.504211 ], [ -121.904383, 37.504755 ], [ -121.903782, 37.504824 ], [ -121.903181, 37.505096 ], [ -121.901894, 37.505028 ], [ -121.901207, 37.505504 ], [ -121.900949, 37.506049 ], [ -121.900263, 37.506594 ], [ -121.899233, 37.506730 ], [ -121.898718, 37.507275 ], [ -121.897516, 37.507479 ], [ -121.896572, 37.507956 ], [ -121.895800, 37.508228 ], [ -121.894083, 37.508364 ], [ -121.893568, 37.508568 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451300", "GEOID10": "06001451300", "NAME10": "4513", "NAMELSAD10": "Census Tract 4513", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 12688729, "AWATER10": 0, "INTPTLAT10": "+37.6896396", "INTPTLON10": "-121.8156491" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.849451, 37.701343 ], [ -121.794777, 37.700868 ], [ -121.788769, 37.699849 ], [ -121.787567, 37.699985 ], [ -121.786451, 37.699849 ], [ -121.785936, 37.699645 ], [ -121.785336, 37.699034 ], [ -121.784735, 37.696318 ], [ -121.784906, 37.696318 ], [ -121.784649, 37.695910 ], [ -121.784048, 37.695503 ], [ -121.784992, 37.694484 ], [ -121.785765, 37.693941 ], [ -121.787138, 37.693873 ], [ -121.789455, 37.693058 ], [ -121.790485, 37.692175 ], [ -121.790743, 37.691292 ], [ -121.790829, 37.681171 ], [ -121.790400, 37.680560 ], [ -121.788769, 37.679541 ], [ -121.787996, 37.678862 ], [ -121.787481, 37.678114 ], [ -121.826706, 37.673835 ], [ -121.826792, 37.676280 ], [ -121.828337, 37.677367 ], [ -121.833143, 37.681035 ], [ -121.834345, 37.682530 ], [ -121.842928, 37.690952 ], [ -121.843100, 37.691088 ], [ -121.847048, 37.691496 ], [ -121.847820, 37.691767 ], [ -121.848164, 37.692107 ], [ -121.848335, 37.692379 ], [ -121.848421, 37.693805 ], [ -121.848679, 37.693873 ], [ -121.848679, 37.694552 ], [ -121.848249, 37.694891 ], [ -121.848249, 37.699510 ], [ -121.848507, 37.700053 ], [ -121.849451, 37.701343 ] ] ] } } , @@ -2556,7 +2556,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451505", "GEOID10": "06001451505", "NAME10": "4515.05", "NAMELSAD10": "Census Tract 4515.05", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1373459, "AWATER10": 0, "INTPTLAT10": "+37.6894445", "INTPTLON10": "-121.7246715" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.723967, 37.695231 ], [ -121.720533, 37.694484 ], [ -121.718559, 37.694416 ], [ -121.718645, 37.681103 ], [ -121.721048, 37.682462 ], [ -121.725082, 37.683617 ], [ -121.725082, 37.684092 ], [ -121.725254, 37.684432 ], [ -121.726542, 37.685315 ], [ -121.729460, 37.686401 ], [ -121.732292, 37.687828 ], [ -121.732121, 37.688032 ], [ -121.732206, 37.694009 ], [ -121.731777, 37.694212 ], [ -121.726456, 37.695231 ], [ -121.723967, 37.695231 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.839495, 37.664867 ], [ -121.838465, 37.664663 ], [ -121.838036, 37.664391 ], [ -121.838980, 37.664663 ], [ -121.834688, 37.662488 ], [ -121.830997, 37.659567 ], [ -121.826792, 37.655490 ], [ -121.814089, 37.655422 ], [ -121.805677, 37.652160 ], [ -121.805506, 37.648830 ], [ -121.804647, 37.647199 ], [ -121.803446, 37.645976 ], [ -121.800699, 37.643869 ], [ -121.799841, 37.642782 ], [ -121.798983, 37.640607 ], [ -121.798725, 37.638432 ], [ -121.798897, 37.636733 ], [ -121.800613, 37.635713 ], [ -121.801558, 37.634694 ], [ -121.801901, 37.633538 ], [ -121.801987, 37.630139 ], [ -121.802244, 37.629528 ], [ -121.803102, 37.628644 ], [ -121.802931, 37.628508 ], [ -121.796150, 37.626333 ], [ -121.785851, 37.625993 ], [ -121.785336, 37.624905 ], [ -121.785078, 37.623138 ], [ -121.784048, 37.621982 ], [ -121.783533, 37.621030 ], [ -121.782675, 37.620554 ], [ -121.780958, 37.618039 ], [ -121.780615, 37.617767 ], [ -121.779928, 37.616815 ], [ -121.779671, 37.615387 ], [ -121.779842, 37.614367 ], [ -121.779499, 37.614163 ], [ -121.779585, 37.613755 ], [ -121.779156, 37.612600 ], [ -121.777782, 37.610492 ], [ -121.776924, 37.610152 ], [ -121.776838, 37.609812 ], [ -121.774693, 37.608384 ], [ -121.773405, 37.607840 ], [ -121.773233, 37.607568 ], [ -121.772375, 37.606956 ], [ -121.771088, 37.606412 ], [ -121.769886, 37.606072 ], [ -121.769028, 37.606072 ], [ -121.768427, 37.605528 ], [ -121.766882, 37.604984 ], [ -121.765509, 37.604712 ], [ -121.764822, 37.604304 ], [ -121.761045, 37.603488 ], [ -121.760702, 37.603624 ], [ -121.760359, 37.603624 ], [ -121.759930, 37.603352 ], [ -121.759071, 37.603352 ], [ -121.758642, 37.602944 ], [ -121.757441, 37.602468 ], [ -121.752548, 37.601652 ], [ -121.751862, 37.601312 ], [ -121.751175, 37.601176 ], [ -121.752119, 37.600972 ], [ -121.753235, 37.600972 ], [ -121.753664, 37.600768 ], [ -121.755896, 37.600768 ], [ -121.756411, 37.600632 ], [ -121.756582, 37.600360 ], [ -121.755295, 37.599476 ], [ -121.754265, 37.599068 ], [ -121.752634, 37.598660 ], [ -121.752119, 37.598388 ], [ -121.751690, 37.597980 ], [ -121.751432, 37.597028 ], [ -121.750832, 37.596552 ], [ -121.750488, 37.595940 ], [ -121.748514, 37.594648 ], [ -121.748514, 37.594240 ], [ -121.749115, 37.593424 ], [ -121.748943, 37.592744 ], [ -121.749115, 37.592540 ], [ -121.749201, 37.592131 ], [ -121.749973, 37.591587 ], [ -121.750059, 37.591111 ], [ -121.749544, 37.590975 ], [ -121.748686, 37.590295 ], [ -121.746626, 37.590431 ], [ -121.746111, 37.589751 ], [ -121.745768, 37.589547 ], [ -121.745424, 37.589479 ], [ -121.744909, 37.589003 ], [ -121.742935, 37.588255 ], [ -121.742334, 37.587507 ], [ -121.742334, 37.587235 ], [ -121.742506, 37.586895 ], [ -121.742420, 37.586622 ], [ -121.741304, 37.586418 ], [ -121.740103, 37.587099 ], [ -121.739416, 37.587099 ], [ -121.737785, 37.585806 ], [ -121.737528, 37.585534 ], [ -121.737442, 37.584922 ], [ -121.737185, 37.584786 ], [ -121.736841, 37.584718 ], [ -121.736069, 37.585058 ], [ -121.735125, 37.585126 ], [ -121.734266, 37.584854 ], [ -121.732893, 37.584854 ], [ -121.732464, 37.584718 ], [ -121.732292, 37.584446 ], [ -121.732206, 37.583766 ], [ -121.731091, 37.581521 ], [ -121.730061, 37.580977 ], [ -121.729374, 37.580909 ], [ -121.728258, 37.580501 ], [ -121.727743, 37.579889 ], [ -121.727657, 37.579072 ], [ -121.726284, 37.577916 ], [ -121.725426, 37.577372 ], [ -121.724567, 37.577236 ], [ -121.723881, 37.577304 ], [ -121.722679, 37.577644 ], [ -121.721992, 37.577644 ], [ -121.720963, 37.576760 ], [ -121.721134, 37.575671 ], [ -121.720705, 37.575127 ], [ -121.720705, 37.574447 ], [ -121.720362, 37.573971 ], [ -121.719589, 37.573630 ], [ -121.719418, 37.573426 ], [ -121.719589, 37.572678 ], [ -121.719503, 37.572270 ], [ -121.719847, 37.571930 ], [ -121.719675, 37.570909 ], [ -121.720018, 37.570229 ], [ -121.720104, 37.569481 ], [ -121.719933, 37.569277 ], [ -121.719418, 37.568936 ], [ -121.719074, 37.568868 ], [ -121.717958, 37.567780 ], [ -121.716757, 37.567304 ], [ -121.716413, 37.567032 ], [ -121.715469, 37.566759 ], [ -121.715212, 37.566555 ], [ -121.714869, 37.565807 ], [ -121.713581, 37.564514 ], [ -121.713066, 37.564446 ], [ -121.711864, 37.564923 ], [ -121.711521, 37.564923 ], [ -121.711092, 37.564174 ], [ -121.711349, 37.563766 ], [ -121.711178, 37.563630 ], [ -121.710577, 37.563562 ], [ -121.710062, 37.563086 ], [ -121.709890, 37.562677 ], [ -121.709461, 37.562337 ], [ -121.709375, 37.561997 ], [ -121.708860, 37.561317 ], [ -121.708174, 37.560772 ], [ -121.708088, 37.560296 ], [ -121.707745, 37.560092 ], [ -121.707401, 37.559616 ], [ -121.706800, 37.559275 ], [ -121.705427, 37.559003 ], [ -121.704655, 37.558527 ], [ -121.703796, 37.558459 ], [ -121.703110, 37.558187 ], [ -121.701651, 37.557302 ], [ -121.700706, 37.556077 ], [ -121.700621, 37.555057 ], [ -121.700792, 37.554376 ], [ -121.700277, 37.553628 ], [ -121.700878, 37.553152 ], [ -121.700621, 37.552947 ], [ -121.699848, 37.552947 ], [ -121.699848, 37.552743 ], [ -121.699419, 37.552539 ], [ -121.699076, 37.552607 ], [ -121.698389, 37.552471 ], [ -121.698046, 37.552335 ], [ -121.697960, 37.551586 ], [ -121.697273, 37.551246 ], [ -121.696672, 37.550702 ], [ -121.695728, 37.550157 ], [ -121.695299, 37.549001 ], [ -121.694956, 37.548660 ], [ -121.694870, 37.548048 ], [ -121.694527, 37.547844 ], [ -121.694441, 37.547436 ], [ -121.694269, 37.547095 ], [ -121.693668, 37.546551 ], [ -121.693497, 37.545190 ], [ -121.693153, 37.544645 ], [ -121.693153, 37.544101 ], [ -121.692209, 37.542808 ], [ -121.692038, 37.542059 ], [ -121.691780, 37.541651 ], [ -121.691780, 37.541038 ], [ -121.691179, 37.540494 ], [ -121.690493, 37.539473 ], [ -121.690149, 37.539269 ], [ -121.690063, 37.538997 ], [ -121.689377, 37.538452 ], [ -121.688604, 37.536887 ], [ -121.688690, 37.536070 ], [ -121.687918, 37.535798 ], [ -121.687746, 37.535253 ], [ -121.686888, 37.533892 ], [ -121.686373, 37.533348 ], [ -121.685772, 37.533007 ], [ -121.685171, 37.532259 ], [ -121.684914, 37.530897 ], [ -121.684656, 37.530625 ], [ -121.684828, 37.530285 ], [ -121.684484, 37.530012 ], [ -121.683626, 37.529740 ], [ -121.683197, 37.529264 ], [ -121.682682, 37.528991 ], [ -121.682596, 37.528583 ], [ -121.681652, 37.527494 ], [ -121.681223, 37.526813 ], [ -121.681223, 37.526609 ], [ -121.681395, 37.526337 ], [ -121.681738, 37.526269 ], [ -121.682682, 37.526473 ], [ -121.682854, 37.526677 ], [ -121.683712, 37.526541 ], [ -121.684313, 37.527086 ], [ -121.684656, 37.526949 ], [ -121.684656, 37.526609 ], [ -121.684828, 37.526473 ], [ -121.685429, 37.526677 ], [ -121.686287, 37.526609 ], [ -121.686802, 37.526405 ], [ -121.687231, 37.525520 ], [ -121.687746, 37.524975 ], [ -121.689377, 37.525452 ], [ -121.689806, 37.525724 ], [ -121.690836, 37.525860 ], [ -121.691523, 37.526337 ], [ -121.691866, 37.526201 ], [ -121.692123, 37.526201 ], [ -121.692896, 37.526745 ], [ -121.693153, 37.527494 ], [ -121.693411, 37.527766 ], [ -121.694698, 37.528719 ], [ -121.695900, 37.529332 ], [ -121.696243, 37.529808 ], [ -121.696672, 37.529876 ], [ -121.697187, 37.529808 ], [ -121.698389, 37.529264 ], [ -121.699419, 37.528447 ], [ -121.699505, 37.527902 ], [ -121.700277, 37.527290 ], [ -121.701565, 37.526881 ], [ -121.702166, 37.526813 ], [ -121.702595, 37.526133 ], [ -121.702509, 37.525928 ], [ -121.701479, 37.525043 ], [ -121.701393, 37.524839 ], [ -121.701136, 37.522184 ], [ -121.702080, 37.520142 ], [ -121.702080, 37.519870 ], [ -121.701908, 37.519666 ], [ -121.701908, 37.519053 ], [ -121.702509, 37.517419 ], [ -121.702337, 37.516534 ], [ -121.702423, 37.515036 ], [ -121.701651, 37.514900 ], [ -121.701393, 37.514560 ], [ -121.701651, 37.514151 ], [ -121.700878, 37.514219 ], [ -121.700706, 37.514083 ], [ -121.700535, 37.513675 ], [ -121.700277, 37.513539 ], [ -121.700449, 37.513130 ], [ -121.700277, 37.512858 ], [ -121.699934, 37.512790 ], [ -121.699762, 37.512517 ], [ -121.698904, 37.512313 ], [ -121.698132, 37.511905 ], [ -121.697702, 37.511428 ], [ -121.697016, 37.511019 ], [ -121.696243, 37.510202 ], [ -121.695557, 37.509930 ], [ -121.694956, 37.509181 ], [ -121.694355, 37.509045 ], [ -121.693153, 37.508364 ], [ -121.692295, 37.508160 ], [ -121.691780, 37.508636 ], [ -121.690836, 37.508977 ], [ -121.690235, 37.508568 ], [ -121.689634, 37.508364 ], [ -121.689291, 37.508024 ], [ -121.688604, 37.508024 ], [ -121.688175, 37.508160 ], [ -121.686888, 37.507751 ], [ -121.686716, 37.507002 ], [ -121.687403, 37.505913 ], [ -121.687918, 37.505368 ], [ -121.688519, 37.504211 ], [ -121.689119, 37.503802 ], [ -121.689978, 37.503530 ], [ -121.690407, 37.502236 ], [ -121.690664, 37.502372 ], [ -121.690836, 37.502917 ], [ -121.691008, 37.502917 ], [ -121.691179, 37.502236 ], [ -121.691093, 37.501623 ], [ -121.689720, 37.500670 ], [ -121.689291, 37.500261 ], [ -121.689034, 37.498559 ], [ -121.688175, 37.497061 ], [ -121.688690, 37.496244 ], [ -121.688690, 37.496039 ], [ -121.688004, 37.494814 ], [ -121.687832, 37.493997 ], [ -121.687918, 37.493928 ], [ -121.688347, 37.493928 ], [ -121.687918, 37.493452 ], [ -121.687660, 37.492771 ], [ -121.687145, 37.492226 ], [ -121.686888, 37.492430 ], [ -121.685429, 37.491885 ], [ -121.683884, 37.491817 ], [ -121.682768, 37.490455 ], [ -121.681309, 37.489842 ], [ -121.680450, 37.489774 ], [ -121.679163, 37.489979 ], [ -121.678820, 37.489979 ], [ -121.678305, 37.489570 ], [ -121.676674, 37.489638 ], [ -121.675386, 37.489093 ], [ -121.674013, 37.488276 ], [ -121.672382, 37.487322 ], [ -121.671610, 37.486369 ], [ -121.671267, 37.484871 ], [ -121.671267, 37.483849 ], [ -121.670408, 37.482691 ], [ -121.690149, 37.482827 ], [ -121.714954, 37.483645 ], [ -121.741133, 37.483917 ], [ -121.765423, 37.483985 ], [ -121.786280, 37.484190 ], [ -121.786366, 37.484326 ], [ -121.795378, 37.483985 ], [ -121.800699, 37.483985 ], [ -121.831341, 37.484190 ], [ -121.832714, 37.484326 ], [ -121.850653, 37.484394 ], [ -121.863356, 37.484598 ], [ -121.865244, 37.484598 ], [ -121.867733, 37.483032 ], [ -121.876144, 37.489161 ], [ -121.882324, 37.493520 ], [ -121.884041, 37.499104 ], [ -121.884041, 37.499444 ], [ -121.882668, 37.501623 ], [ -121.883011, 37.503257 ], [ -121.884212, 37.507956 ], [ -121.884985, 37.512041 ], [ -121.884813, 37.513743 ], [ -121.883612, 37.517215 ], [ -121.881380, 37.521504 ], [ -121.879835, 37.525248 ], [ -121.879492, 37.525656 ], [ -121.879320, 37.526337 ], [ -121.880608, 37.528243 ], [ -121.886787, 37.535662 ], [ -121.887560, 37.544033 ], [ -121.891336, 37.549749 ], [ -121.901035, 37.545870 ], [ -121.905241, 37.549137 ], [ -121.906357, 37.549137 ], [ -121.906443, 37.549341 ], [ -121.907129, 37.549341 ], [ -121.908159, 37.551723 ], [ -121.909618, 37.554240 ], [ -121.915712, 37.555397 ], [ -121.915970, 37.560840 ], [ -121.917858, 37.560568 ], [ -121.917944, 37.561249 ], [ -121.920004, 37.560908 ], [ -121.919918, 37.560160 ], [ -121.922922, 37.559616 ], [ -121.923695, 37.557438 ], [ -121.924810, 37.557234 ], [ -121.923609, 37.559888 ], [ -121.919146, 37.561453 ], [ -121.918974, 37.565943 ], [ -121.919403, 37.567644 ], [ -121.923094, 37.568188 ], [ -121.923523, 37.569685 ], [ -121.925240, 37.571181 ], [ -121.932106, 37.573290 ], [ -121.932707, 37.574107 ], [ -121.932364, 37.574787 ], [ -121.933136, 37.576011 ], [ -121.932364, 37.576351 ], [ -121.931162, 37.576011 ], [ -121.929874, 37.577644 ], [ -121.929703, 37.578732 ], [ -121.927557, 37.579617 ], [ -121.928587, 37.580705 ], [ -121.926956, 37.581861 ], [ -121.929960, 37.584786 ], [ -121.929188, 37.585738 ], [ -121.930475, 37.585874 ], [ -121.932707, 37.591723 ], [ -121.932278, 37.591995 ], [ -121.931591, 37.592812 ], [ -121.930475, 37.595396 ], [ -121.929960, 37.596076 ], [ -121.928158, 37.596960 ], [ -121.926527, 37.598592 ], [ -121.925240, 37.599000 ], [ -121.924467, 37.599000 ], [ -121.923695, 37.598864 ], [ -121.922407, 37.598592 ], [ -121.921291, 37.598116 ], [ -121.921034, 37.597980 ], [ -121.920691, 37.597368 ], [ -121.917429, 37.595056 ], [ -121.914082, 37.593832 ], [ -121.911936, 37.593628 ], [ -121.909533, 37.594308 ], [ -121.906013, 37.595532 ], [ -121.905155, 37.595668 ], [ -121.903782, 37.595600 ], [ -121.902666, 37.595464 ], [ -121.897774, 37.594172 ], [ -121.890135, 37.593424 ], [ -121.886702, 37.592540 ], [ -121.885586, 37.592540 ], [ -121.882839, 37.592744 ], [ -121.882324, 37.592948 ], [ -121.874771, 37.589683 ], [ -121.870737, 37.588799 ], [ -121.869965, 37.590499 ], [ -121.870394, 37.591179 ], [ -121.870995, 37.591519 ], [ -121.871767, 37.592335 ], [ -121.872282, 37.595328 ], [ -121.872969, 37.596348 ], [ -121.873312, 37.597912 ], [ -121.873055, 37.599476 ], [ -121.872025, 37.601176 ], [ -121.871681, 37.602060 ], [ -121.871595, 37.602944 ], [ -121.871853, 37.604304 ], [ -121.873398, 37.607840 ], [ -121.875029, 37.612192 ], [ -121.878376, 37.618923 ], [ -121.879492, 37.621370 ], [ -121.879921, 37.623002 ], [ -121.880007, 37.626672 ], [ -121.880522, 37.629052 ], [ -121.881208, 37.630343 ], [ -121.883268, 37.633130 ], [ -121.883698, 37.633946 ], [ -121.884127, 37.635441 ], [ -121.884127, 37.636801 ], [ -121.883783, 37.638976 ], [ -121.883869, 37.639587 ], [ -121.884127, 37.640131 ], [ -121.882496, 37.641015 ], [ -121.881895, 37.641558 ], [ -121.881638, 37.642034 ], [ -121.881208, 37.647675 ], [ -121.880522, 37.649646 ], [ -121.879749, 37.654403 ], [ -121.879492, 37.654878 ], [ -121.878719, 37.655626 ], [ -121.877604, 37.656305 ], [ -121.876230, 37.655490 ], [ -121.873741, 37.654606 ], [ -121.872454, 37.653723 ], [ -121.868849, 37.652228 ], [ -121.866703, 37.652160 ], [ -121.865158, 37.651752 ], [ -121.864471, 37.651752 ], [ -121.863785, 37.652092 ], [ -121.863012, 37.652908 ], [ -121.862240, 37.653519 ], [ -121.860867, 37.654063 ], [ -121.860180, 37.654538 ], [ -121.859922, 37.654810 ], [ -121.858892, 37.654267 ], [ -121.857605, 37.653995 ], [ -121.855803, 37.652500 ], [ -121.855459, 37.652296 ], [ -121.854773, 37.652228 ], [ -121.853571, 37.652568 ], [ -121.853571, 37.653519 ], [ -121.852198, 37.653451 ], [ -121.851854, 37.653519 ], [ -121.851597, 37.653791 ], [ -121.850996, 37.654878 ], [ -121.851425, 37.656577 ], [ -121.851168, 37.657121 ], [ -121.849966, 37.656917 ], [ -121.848249, 37.657121 ], [ -121.846018, 37.656781 ], [ -121.844730, 37.656849 ], [ -121.844301, 37.656713 ], [ -121.843786, 37.657324 ], [ -121.843185, 37.657868 ], [ -121.843100, 37.658004 ], [ -121.844816, 37.658412 ], [ -121.844645, 37.658751 ], [ -121.845160, 37.659635 ], [ -121.846189, 37.660450 ], [ -121.845331, 37.661062 ], [ -121.844902, 37.662081 ], [ -121.844988, 37.662488 ], [ -121.845675, 37.663644 ], [ -121.845760, 37.664867 ], [ -121.839495, 37.664867 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.839495, 37.664867 ], [ -121.838465, 37.664663 ], [ -121.838036, 37.664391 ], [ -121.838980, 37.664663 ], [ -121.834688, 37.662488 ], [ -121.830997, 37.659567 ], [ -121.826792, 37.655490 ], [ -121.814089, 37.655422 ], [ -121.805677, 37.652160 ], [ -121.805506, 37.648830 ], [ -121.804647, 37.647199 ], [ -121.803446, 37.645976 ], [ -121.800699, 37.643869 ], [ -121.799841, 37.642782 ], [ -121.798983, 37.640607 ], [ -121.798725, 37.638432 ], [ -121.798897, 37.636733 ], [ -121.800613, 37.635713 ], [ -121.801558, 37.634694 ], [ -121.801901, 37.633538 ], [ -121.801987, 37.630139 ], [ -121.802244, 37.629528 ], [ -121.803102, 37.628644 ], [ -121.802931, 37.628508 ], [ -121.796150, 37.626333 ], [ -121.785851, 37.625993 ], [ -121.785336, 37.624905 ], [ -121.785078, 37.623138 ], [ -121.784048, 37.621982 ], [ -121.783533, 37.621030 ], [ -121.782675, 37.620554 ], [ -121.780958, 37.618039 ], [ -121.780615, 37.617767 ], [ -121.779928, 37.616815 ], [ -121.779671, 37.615387 ], [ -121.779842, 37.614367 ], [ -121.779499, 37.614163 ], [ -121.779585, 37.613755 ], [ -121.779156, 37.612600 ], [ -121.777782, 37.610492 ], [ -121.776924, 37.610152 ], [ -121.776838, 37.609812 ], [ -121.774693, 37.608384 ], [ -121.773405, 37.607840 ], [ -121.773233, 37.607568 ], [ -121.772375, 37.606956 ], [ -121.771088, 37.606412 ], [ -121.769886, 37.606072 ], [ -121.769028, 37.606072 ], [ -121.768427, 37.605528 ], [ -121.766882, 37.604984 ], [ -121.765509, 37.604712 ], [ -121.764822, 37.604304 ], [ -121.761045, 37.603488 ], [ -121.760702, 37.603624 ], [ -121.760359, 37.603624 ], [ -121.759930, 37.603352 ], [ -121.759071, 37.603352 ], [ -121.758642, 37.602944 ], [ -121.757441, 37.602468 ], [ -121.752548, 37.601652 ], [ -121.751862, 37.601312 ], [ -121.751175, 37.601176 ], [ -121.752119, 37.600972 ], [ -121.753235, 37.600972 ], [ -121.753664, 37.600768 ], [ -121.755896, 37.600768 ], [ -121.756411, 37.600632 ], [ -121.756582, 37.600360 ], [ -121.755295, 37.599476 ], [ -121.754265, 37.599068 ], [ -121.752634, 37.598660 ], [ -121.752119, 37.598388 ], [ -121.751690, 37.597980 ], [ -121.751432, 37.597028 ], [ -121.750832, 37.596552 ], [ -121.750488, 37.595940 ], [ -121.748514, 37.594648 ], [ -121.748514, 37.594240 ], [ -121.749115, 37.593424 ], [ -121.748943, 37.592744 ], [ -121.749115, 37.592540 ], [ -121.749201, 37.592131 ], [ -121.749973, 37.591587 ], [ -121.750059, 37.591111 ], [ -121.749544, 37.590975 ], [ -121.748686, 37.590295 ], [ -121.746626, 37.590431 ], [ -121.746111, 37.589751 ], [ -121.745768, 37.589547 ], [ -121.745424, 37.589479 ], [ -121.744909, 37.589003 ], [ -121.742935, 37.588255 ], [ -121.742334, 37.587507 ], [ -121.742334, 37.587235 ], [ -121.742506, 37.586895 ], [ -121.742420, 37.586622 ], [ -121.741304, 37.586418 ], [ -121.740103, 37.587099 ], [ -121.739416, 37.587099 ], [ -121.737785, 37.585806 ], [ -121.737528, 37.585534 ], [ -121.737442, 37.584922 ], [ -121.737185, 37.584786 ], [ -121.736841, 37.584718 ], [ -121.736069, 37.585058 ], [ -121.735125, 37.585126 ], [ -121.734266, 37.584854 ], [ -121.732893, 37.584854 ], [ -121.732464, 37.584718 ], [ -121.732292, 37.584446 ], [ -121.732206, 37.583766 ], [ -121.731091, 37.581521 ], [ -121.730061, 37.580977 ], [ -121.729374, 37.580909 ], [ -121.728258, 37.580501 ], [ -121.727743, 37.579889 ], [ -121.727657, 37.579072 ], [ -121.726284, 37.577916 ], [ -121.725426, 37.577372 ], [ -121.724567, 37.577236 ], [ -121.723881, 37.577304 ], [ -121.722679, 37.577644 ], [ -121.721992, 37.577644 ], [ -121.720963, 37.576760 ], [ -121.721134, 37.575671 ], [ -121.720705, 37.575127 ], [ -121.720705, 37.574447 ], [ -121.720362, 37.573971 ], [ -121.719589, 37.573630 ], [ -121.719418, 37.573426 ], [ -121.719589, 37.572678 ], [ -121.719503, 37.572270 ], [ -121.719847, 37.571930 ], [ -121.719675, 37.570909 ], [ -121.720018, 37.570229 ], [ -121.720104, 37.569481 ], [ -121.719933, 37.569277 ], [ -121.719418, 37.568936 ], [ -121.719074, 37.568868 ], [ -121.717958, 37.567780 ], [ -121.716757, 37.567304 ], [ -121.716413, 37.567032 ], [ -121.715469, 37.566759 ], [ -121.715212, 37.566555 ], [ -121.714869, 37.565807 ], [ -121.713581, 37.564514 ], [ -121.713066, 37.564446 ], [ -121.711864, 37.564923 ], [ -121.711521, 37.564923 ], [ -121.711092, 37.564174 ], [ -121.711349, 37.563766 ], [ -121.711178, 37.563630 ], [ -121.710577, 37.563562 ], [ -121.710062, 37.563086 ], [ -121.709890, 37.562677 ], [ -121.709461, 37.562337 ], [ -121.709375, 37.561997 ], [ -121.708860, 37.561317 ], [ -121.708174, 37.560772 ], [ -121.708088, 37.560296 ], [ -121.707745, 37.560092 ], [ -121.707401, 37.559616 ], [ -121.706800, 37.559275 ], [ -121.705427, 37.559003 ], [ -121.704655, 37.558527 ], [ -121.703796, 37.558459 ], [ -121.703110, 37.558187 ], [ -121.701651, 37.557302 ], [ -121.700706, 37.556077 ], [ -121.700621, 37.555057 ], [ -121.700792, 37.554376 ], [ -121.700277, 37.553628 ], [ -121.700878, 37.553152 ], [ -121.700621, 37.552947 ], [ -121.699848, 37.552947 ], [ -121.699848, 37.552743 ], [ -121.699419, 37.552539 ], [ -121.699076, 37.552607 ], [ -121.698389, 37.552471 ], [ -121.698046, 37.552335 ], [ -121.697960, 37.551586 ], [ -121.697273, 37.551246 ], [ -121.696672, 37.550702 ], [ -121.695728, 37.550157 ], [ -121.695299, 37.549001 ], [ -121.694956, 37.548660 ], [ -121.694870, 37.548048 ], [ -121.694527, 37.547844 ], [ -121.694441, 37.547436 ], [ -121.694269, 37.547095 ], [ -121.693668, 37.546551 ], [ -121.693497, 37.545190 ], [ -121.693153, 37.544645 ], [ -121.693153, 37.544101 ], [ -121.692209, 37.542808 ], [ -121.692038, 37.542059 ], [ -121.691780, 37.541651 ], [ -121.691780, 37.541038 ], [ -121.691179, 37.540494 ], [ -121.690493, 37.539473 ], [ -121.690149, 37.539269 ], [ -121.690063, 37.538997 ], [ -121.689377, 37.538452 ], [ -121.688604, 37.536887 ], [ -121.688690, 37.536070 ], [ -121.687918, 37.535798 ], [ -121.687746, 37.535253 ], [ -121.686888, 37.533892 ], [ -121.686373, 37.533348 ], [ -121.685772, 37.533007 ], [ -121.685171, 37.532259 ], [ -121.684914, 37.530897 ], [ -121.684656, 37.530625 ], [ -121.684828, 37.530285 ], [ -121.684484, 37.530012 ], [ -121.683626, 37.529740 ], [ -121.683197, 37.529264 ], [ -121.682682, 37.528991 ], [ -121.682596, 37.528583 ], [ -121.681652, 37.527494 ], [ -121.681223, 37.526813 ], [ -121.681223, 37.526609 ], [ -121.681395, 37.526337 ], [ -121.681738, 37.526269 ], [ -121.682682, 37.526473 ], [ -121.682854, 37.526677 ], [ -121.683712, 37.526541 ], [ -121.684313, 37.527086 ], [ -121.684656, 37.526949 ], [ -121.684656, 37.526609 ], [ -121.684828, 37.526473 ], [ -121.685429, 37.526677 ], [ -121.686287, 37.526609 ], [ -121.686802, 37.526405 ], [ -121.687231, 37.525520 ], [ -121.687746, 37.524975 ], [ -121.689377, 37.525452 ], [ -121.689806, 37.525724 ], [ -121.690836, 37.525860 ], [ -121.691523, 37.526337 ], [ -121.691866, 37.526201 ], [ -121.692123, 37.526201 ], [ -121.692896, 37.526745 ], [ -121.693153, 37.527494 ], [ -121.693411, 37.527766 ], [ -121.694698, 37.528719 ], [ -121.695900, 37.529332 ], [ -121.696243, 37.529808 ], [ -121.696672, 37.529876 ], [ -121.697187, 37.529808 ], [ -121.698389, 37.529264 ], [ -121.699419, 37.528447 ], [ -121.699505, 37.527902 ], [ -121.700277, 37.527290 ], [ -121.701565, 37.526881 ], [ -121.702166, 37.526813 ], [ -121.702595, 37.526133 ], [ -121.702509, 37.525928 ], [ -121.701479, 37.525043 ], [ -121.701393, 37.524839 ], [ -121.701136, 37.522184 ], [ -121.702080, 37.520142 ], [ -121.702080, 37.519870 ], [ -121.701908, 37.519666 ], [ -121.701908, 37.519053 ], [ -121.702509, 37.517419 ], [ -121.702337, 37.516534 ], [ -121.702423, 37.515036 ], [ -121.701651, 37.514900 ], [ -121.701393, 37.514560 ], [ -121.701651, 37.514151 ], [ -121.700878, 37.514219 ], [ -121.700706, 37.514083 ], [ -121.700535, 37.513675 ], [ -121.700277, 37.513539 ], [ -121.700449, 37.513130 ], [ -121.700277, 37.512858 ], [ -121.699934, 37.512790 ], [ -121.699762, 37.512517 ], [ -121.698904, 37.512313 ], [ -121.698132, 37.511905 ], [ -121.697702, 37.511428 ], [ -121.697016, 37.511019 ], [ -121.696243, 37.510202 ], [ -121.695557, 37.509930 ], [ -121.694956, 37.509181 ], [ -121.694355, 37.509045 ], [ -121.693153, 37.508364 ], [ -121.692295, 37.508160 ], [ -121.691780, 37.508636 ], [ -121.690836, 37.508977 ], [ -121.690235, 37.508568 ], [ -121.689634, 37.508364 ], [ -121.689291, 37.508024 ], [ -121.688604, 37.508024 ], [ -121.688175, 37.508160 ], [ -121.686888, 37.507751 ], [ -121.686716, 37.507002 ], [ -121.687403, 37.505913 ], [ -121.687918, 37.505368 ], [ -121.688519, 37.504211 ], [ -121.689119, 37.503802 ], [ -121.689978, 37.503530 ], [ -121.690407, 37.502236 ], [ -121.690664, 37.502372 ], [ -121.690836, 37.502917 ], [ -121.691008, 37.502917 ], [ -121.691179, 37.502236 ], [ -121.691093, 37.501623 ], [ -121.689720, 37.500670 ], [ -121.689291, 37.500261 ], [ -121.689034, 37.498559 ], [ -121.688175, 37.497061 ], [ -121.688690, 37.496244 ], [ -121.688690, 37.496039 ], [ -121.688004, 37.494814 ], [ -121.687832, 37.493997 ], [ -121.687918, 37.493928 ], [ -121.688347, 37.493928 ], [ -121.687918, 37.493452 ], [ -121.687660, 37.492771 ], [ -121.687145, 37.492226 ], [ -121.686888, 37.492430 ], [ -121.685429, 37.491885 ], [ -121.683884, 37.491817 ], [ -121.682768, 37.490455 ], [ -121.681309, 37.489842 ], [ -121.680450, 37.489774 ], [ -121.679163, 37.489979 ], [ -121.678820, 37.489979 ], [ -121.678305, 37.489570 ], [ -121.676674, 37.489638 ], [ -121.675386, 37.489093 ], [ -121.674013, 37.488276 ], [ -121.672382, 37.487322 ], [ -121.671610, 37.486369 ], [ -121.671267, 37.484871 ], [ -121.671267, 37.483849 ], [ -121.670408, 37.482691 ], [ -121.690149, 37.482827 ], [ -121.714954, 37.483645 ], [ -121.741133, 37.483917 ], [ -121.765423, 37.483985 ], [ -121.786280, 37.484190 ], [ -121.786366, 37.484326 ], [ -121.795378, 37.483985 ], [ -121.800699, 37.483985 ], [ -121.831341, 37.484190 ], [ -121.832714, 37.484326 ], [ -121.850653, 37.484394 ], [ -121.863356, 37.484598 ], [ -121.865244, 37.484598 ], [ -121.867733, 37.483032 ], [ -121.876144, 37.489161 ], [ -121.882324, 37.493520 ], [ -121.884041, 37.499104 ], [ -121.884041, 37.499444 ], [ -121.882668, 37.501623 ], [ -121.883011, 37.503257 ], [ -121.884212, 37.507956 ], [ -121.884985, 37.512041 ], [ -121.884813, 37.513743 ], [ -121.883612, 37.517215 ], [ -121.881380, 37.521504 ], [ -121.879835, 37.525248 ], [ -121.879492, 37.525656 ], [ -121.879320, 37.526337 ], [ -121.880608, 37.528243 ], [ -121.886787, 37.535662 ], [ -121.887560, 37.544033 ], [ -121.891336, 37.549749 ], [ -121.901035, 37.545870 ], [ -121.905241, 37.549137 ], [ -121.906357, 37.549137 ], [ -121.906443, 37.549341 ], [ -121.907129, 37.549341 ], [ -121.908159, 37.551723 ], [ -121.909618, 37.554240 ], [ -121.915712, 37.555397 ], [ -121.915970, 37.560840 ], [ -121.917858, 37.560568 ], [ -121.917944, 37.561249 ], [ -121.920004, 37.560908 ], [ -121.919918, 37.560160 ], [ -121.922922, 37.559616 ], [ -121.923695, 37.557438 ], [ -121.924810, 37.557234 ], [ -121.923609, 37.559888 ], [ -121.919146, 37.561453 ], [ -121.918974, 37.565943 ], [ -121.919403, 37.567644 ], [ -121.923094, 37.568188 ], [ -121.923523, 37.569685 ], [ -121.925240, 37.571181 ], [ -121.932106, 37.573290 ], [ -121.932707, 37.574107 ], [ -121.932364, 37.574787 ], [ -121.933136, 37.576011 ], [ -121.932364, 37.576351 ], [ -121.931162, 37.576011 ], [ -121.929874, 37.577644 ], [ -121.929703, 37.578732 ], [ -121.927557, 37.579617 ], [ -121.928587, 37.580705 ], [ -121.926956, 37.581861 ], [ -121.929960, 37.584786 ], [ -121.929188, 37.585738 ], [ -121.930475, 37.585874 ], [ -121.932707, 37.591723 ], [ -121.932278, 37.591995 ], [ -121.931591, 37.592812 ], [ -121.930475, 37.595396 ], [ -121.929960, 37.596076 ], [ -121.928158, 37.596960 ], [ -121.926527, 37.598592 ], [ -121.925240, 37.599000 ], [ -121.924467, 37.599000 ], [ -121.923695, 37.598864 ], [ -121.922407, 37.598592 ], [ -121.921291, 37.598116 ], [ -121.921034, 37.597980 ], [ -121.920691, 37.597368 ], [ -121.917429, 37.595056 ], [ -121.914082, 37.593832 ], [ -121.911936, 37.593628 ], [ -121.909533, 37.594308 ], [ -121.906013, 37.595532 ], [ -121.905155, 37.595668 ], [ -121.903782, 37.595600 ], [ -121.902666, 37.595464 ], [ -121.897774, 37.594172 ], [ -121.890135, 37.593424 ], [ -121.886702, 37.592540 ], [ -121.885586, 37.592540 ], [ -121.882839, 37.592744 ], [ -121.882324, 37.592948 ], [ -121.874771, 37.589683 ], [ -121.870737, 37.588799 ], [ -121.869965, 37.590499 ], [ -121.870394, 37.591179 ], [ -121.870995, 37.591519 ], [ -121.871767, 37.592335 ], [ -121.872282, 37.595328 ], [ -121.872797, 37.595940 ], [ -121.873140, 37.596756 ], [ -121.873312, 37.597912 ], [ -121.873055, 37.599476 ], [ -121.872025, 37.601176 ], [ -121.871681, 37.602060 ], [ -121.871595, 37.602944 ], [ -121.871853, 37.604304 ], [ -121.873398, 37.607840 ], [ -121.875029, 37.612192 ], [ -121.878376, 37.618923 ], [ -121.879492, 37.621370 ], [ -121.879921, 37.623002 ], [ -121.880007, 37.626672 ], [ -121.880522, 37.629052 ], [ -121.881208, 37.630343 ], [ -121.883268, 37.633130 ], [ -121.883698, 37.633946 ], [ -121.884127, 37.635441 ], [ -121.884127, 37.636801 ], [ -121.883783, 37.638976 ], [ -121.883869, 37.639587 ], [ -121.884127, 37.640131 ], [ -121.882496, 37.641015 ], [ -121.881895, 37.641558 ], [ -121.881638, 37.642034 ], [ -121.881208, 37.647675 ], [ -121.880522, 37.649646 ], [ -121.879749, 37.654403 ], [ -121.879492, 37.654878 ], [ -121.878719, 37.655626 ], [ -121.877604, 37.656305 ], [ -121.876230, 37.655490 ], [ -121.873741, 37.654606 ], [ -121.872454, 37.653723 ], [ -121.868849, 37.652228 ], [ -121.866703, 37.652160 ], [ -121.865158, 37.651752 ], [ -121.864471, 37.651752 ], [ -121.863785, 37.652092 ], [ -121.863012, 37.652908 ], [ -121.862240, 37.653519 ], [ -121.860867, 37.654063 ], [ -121.860180, 37.654538 ], [ -121.859922, 37.654810 ], [ -121.858892, 37.654267 ], [ -121.857605, 37.653995 ], [ -121.855803, 37.652500 ], [ -121.855459, 37.652296 ], [ -121.854773, 37.652228 ], [ -121.853571, 37.652568 ], [ -121.853571, 37.653519 ], [ -121.852198, 37.653451 ], [ -121.851854, 37.653519 ], [ -121.851597, 37.653791 ], [ -121.850996, 37.654878 ], [ -121.851425, 37.656577 ], [ -121.851168, 37.657121 ], [ -121.849966, 37.656917 ], [ -121.848249, 37.657121 ], [ -121.846018, 37.656781 ], [ -121.844730, 37.656849 ], [ -121.844301, 37.656713 ], [ -121.843786, 37.657324 ], [ -121.843185, 37.657868 ], [ -121.843100, 37.658004 ], [ -121.844816, 37.658412 ], [ -121.844645, 37.658751 ], [ -121.845160, 37.659635 ], [ -121.846189, 37.660450 ], [ -121.845331, 37.661062 ], [ -121.844902, 37.662081 ], [ -121.844988, 37.662488 ], [ -121.845675, 37.663644 ], [ -121.845760, 37.664867 ], [ -121.839495, 37.664867 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451101", "GEOID10": "06001451101", "NAME10": "4511.01", "NAMELSAD10": "Census Tract 4511.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 552877327, "AWATER10": 5613633, "INTPTLAT10": "+37.6396925", "INTPTLON10": "-121.6633595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.633759, 37.724022 ], [ -121.633759, 37.482691 ], [ -121.640625, 37.482759 ], [ -121.655903, 37.482827 ], [ -121.661739, 37.482827 ], [ -121.670408, 37.482691 ], [ -121.671267, 37.483849 ], [ -121.671267, 37.484871 ], [ -121.671610, 37.486369 ], [ -121.672382, 37.487322 ], [ -121.674013, 37.488276 ], [ -121.675386, 37.489093 ], [ -121.676674, 37.489638 ], [ -121.678305, 37.489570 ], [ -121.678820, 37.489979 ], [ -121.679163, 37.489979 ], [ -121.680450, 37.489774 ], [ -121.681309, 37.489842 ], [ -121.682768, 37.490455 ], [ -121.683884, 37.491817 ], [ -121.685429, 37.491885 ], [ -121.686888, 37.492430 ], [ -121.687145, 37.492226 ], [ -121.687660, 37.492771 ], [ -121.687918, 37.493452 ], [ -121.688347, 37.493928 ], [ -121.687918, 37.493928 ], [ -121.687832, 37.493997 ], [ -121.688004, 37.494814 ], [ -121.688690, 37.496039 ], [ -121.688690, 37.496244 ], [ -121.688175, 37.497061 ], [ -121.689034, 37.498559 ], [ -121.689291, 37.500261 ], [ -121.689720, 37.500670 ], [ -121.691093, 37.501623 ], [ -121.691179, 37.502236 ], [ -121.691008, 37.502917 ], [ -121.690836, 37.502917 ], [ -121.690664, 37.502372 ], [ -121.690407, 37.502236 ], [ -121.689978, 37.503530 ], [ -121.689119, 37.503802 ], [ -121.688519, 37.504211 ], [ -121.687918, 37.505368 ], [ -121.687403, 37.505913 ], [ -121.686716, 37.507002 ], [ -121.686888, 37.507751 ], [ -121.688175, 37.508160 ], [ -121.688604, 37.508024 ], [ -121.689291, 37.508024 ], [ -121.689634, 37.508364 ], [ -121.690235, 37.508568 ], [ -121.690836, 37.508977 ], [ -121.691780, 37.508636 ], [ -121.692295, 37.508160 ], [ -121.693153, 37.508364 ], [ -121.694355, 37.509045 ], [ -121.694956, 37.509181 ], [ -121.695557, 37.509930 ], [ -121.696243, 37.510202 ], [ -121.697016, 37.511019 ], [ -121.697702, 37.511428 ], [ -121.698132, 37.511905 ], [ -121.698904, 37.512313 ], [ -121.699762, 37.512517 ], [ -121.699934, 37.512790 ], [ -121.700277, 37.512858 ], [ -121.700449, 37.513130 ], [ -121.700277, 37.513539 ], [ -121.700535, 37.513675 ], [ -121.700706, 37.514083 ], [ -121.700878, 37.514219 ], [ -121.701651, 37.514151 ], [ -121.701393, 37.514560 ], [ -121.701651, 37.514900 ], [ -121.702423, 37.515036 ], [ -121.702337, 37.516534 ], [ -121.702509, 37.517419 ], [ -121.701908, 37.519053 ], [ -121.701908, 37.519666 ], [ -121.702080, 37.519870 ], [ -121.702080, 37.520142 ], [ -121.701136, 37.522184 ], [ -121.701393, 37.524839 ], [ -121.701479, 37.525043 ], [ -121.702509, 37.525928 ], [ -121.702595, 37.526133 ], [ -121.702166, 37.526813 ], [ -121.701565, 37.526881 ], [ -121.700277, 37.527290 ], [ -121.699505, 37.527902 ], [ -121.699419, 37.528447 ], [ -121.698389, 37.529264 ], [ -121.697187, 37.529808 ], [ -121.696672, 37.529876 ], [ -121.696243, 37.529808 ], [ -121.695900, 37.529332 ], [ -121.694698, 37.528719 ], [ -121.693411, 37.527766 ], [ -121.693153, 37.527494 ], [ -121.692896, 37.526745 ], [ -121.692123, 37.526201 ], [ -121.691866, 37.526201 ], [ -121.691523, 37.526337 ], [ -121.690836, 37.525860 ], [ -121.689806, 37.525724 ], [ -121.689377, 37.525452 ], [ -121.687746, 37.524975 ], [ -121.687231, 37.525520 ], [ -121.686802, 37.526405 ], [ -121.686287, 37.526609 ], [ -121.685429, 37.526677 ], [ -121.684828, 37.526473 ], [ -121.684656, 37.526609 ], [ -121.684656, 37.526949 ], [ -121.684313, 37.527086 ], [ -121.683712, 37.526541 ], [ -121.682854, 37.526677 ], [ -121.682682, 37.526473 ], [ -121.681738, 37.526269 ], [ -121.681395, 37.526337 ], [ -121.681223, 37.526609 ], [ -121.681223, 37.526813 ], [ -121.681652, 37.527494 ], [ -121.682596, 37.528583 ], [ -121.682682, 37.528991 ], [ -121.683197, 37.529264 ], [ -121.683626, 37.529740 ], [ -121.684484, 37.530012 ], [ -121.684828, 37.530285 ], [ -121.684656, 37.530625 ], [ -121.684914, 37.530897 ], [ -121.685171, 37.532259 ], [ -121.685772, 37.533007 ], [ -121.686373, 37.533348 ], [ -121.686888, 37.533892 ], [ -121.687746, 37.535253 ], [ -121.687918, 37.535798 ], [ -121.688690, 37.536070 ], [ -121.688604, 37.536887 ], [ -121.689377, 37.538452 ], [ -121.690063, 37.538997 ], [ -121.690149, 37.539269 ], [ -121.690493, 37.539473 ], [ -121.691179, 37.540494 ], [ -121.691780, 37.541038 ], [ -121.691780, 37.541651 ], [ -121.692038, 37.542059 ], [ -121.692209, 37.542808 ], [ -121.693153, 37.544101 ], [ -121.693153, 37.544645 ], [ -121.693497, 37.545190 ], [ -121.693668, 37.546551 ], [ -121.694269, 37.547095 ], [ -121.694441, 37.547436 ], [ -121.694527, 37.547844 ], [ -121.694870, 37.548048 ], [ -121.694956, 37.548660 ], [ -121.695299, 37.549001 ], [ -121.695728, 37.550157 ], [ -121.696672, 37.550702 ], [ -121.697273, 37.551246 ], [ -121.697960, 37.551586 ], [ -121.698046, 37.552335 ], [ -121.698389, 37.552471 ], [ -121.699076, 37.552607 ], [ -121.699419, 37.552539 ], [ -121.699848, 37.552743 ], [ -121.699848, 37.552947 ], [ -121.700621, 37.552947 ], [ -121.700878, 37.553152 ], [ -121.700277, 37.553628 ], [ -121.700792, 37.554376 ], [ -121.700621, 37.555057 ], [ -121.700706, 37.556077 ], [ -121.701651, 37.557302 ], [ -121.703110, 37.558187 ], [ -121.703796, 37.558459 ], [ -121.704655, 37.558527 ], [ -121.705427, 37.559003 ], [ -121.706800, 37.559275 ], [ -121.707401, 37.559616 ], [ -121.707745, 37.560092 ], [ -121.708088, 37.560296 ], [ -121.708174, 37.560772 ], [ -121.708860, 37.561317 ], [ -121.709375, 37.561997 ], [ -121.709461, 37.562337 ], [ -121.709890, 37.562677 ], [ -121.710062, 37.563086 ], [ -121.710577, 37.563562 ], [ -121.711178, 37.563630 ], [ -121.711349, 37.563766 ], [ -121.711092, 37.564174 ], [ -121.711521, 37.564923 ], [ -121.711864, 37.564923 ], [ -121.713066, 37.564446 ], [ -121.713581, 37.564514 ], [ -121.714869, 37.565807 ], [ -121.715212, 37.566555 ], [ -121.715469, 37.566759 ], [ -121.716413, 37.567032 ], [ -121.716757, 37.567304 ], [ -121.717958, 37.567780 ], [ -121.719074, 37.568868 ], [ -121.719418, 37.568936 ], [ -121.719933, 37.569277 ], [ -121.720104, 37.569481 ], [ -121.720018, 37.570229 ], [ -121.719675, 37.570909 ], [ -121.719847, 37.571930 ], [ -121.719503, 37.572270 ], [ -121.719589, 37.572678 ], [ -121.719418, 37.573426 ], [ -121.719589, 37.573630 ], [ -121.720362, 37.573971 ], [ -121.720705, 37.574447 ], [ -121.720705, 37.575127 ], [ -121.721134, 37.575671 ], [ -121.720963, 37.576760 ], [ -121.721992, 37.577644 ], [ -121.722679, 37.577644 ], [ -121.723881, 37.577304 ], [ -121.724567, 37.577236 ], [ -121.725426, 37.577372 ], [ -121.726284, 37.577916 ], [ -121.727657, 37.579072 ], [ -121.727743, 37.579889 ], [ -121.728258, 37.580501 ], [ -121.729374, 37.580909 ], [ -121.730061, 37.580977 ], [ -121.731091, 37.581521 ], [ -121.732206, 37.583766 ], [ -121.732292, 37.584446 ], [ -121.732464, 37.584718 ], [ -121.732893, 37.584854 ], [ -121.734266, 37.584854 ], [ -121.735125, 37.585126 ], [ -121.736069, 37.585058 ], [ -121.736841, 37.584718 ], [ -121.737185, 37.584786 ], [ -121.737442, 37.584922 ], [ -121.737528, 37.585534 ], [ -121.737785, 37.585806 ], [ -121.739416, 37.587099 ], [ -121.740103, 37.587099 ], [ -121.741304, 37.586418 ], [ -121.742420, 37.586622 ], [ -121.742506, 37.586895 ], [ -121.742334, 37.587235 ], [ -121.742334, 37.587507 ], [ -121.742935, 37.588255 ], [ -121.744909, 37.589003 ], [ -121.745424, 37.589479 ], [ -121.745768, 37.589547 ], [ -121.746111, 37.589751 ], [ -121.746626, 37.590431 ], [ -121.748686, 37.590295 ], [ -121.749544, 37.590975 ], [ -121.750059, 37.591111 ], [ -121.749973, 37.591587 ], [ -121.749201, 37.592131 ], [ -121.749115, 37.592540 ], [ -121.748943, 37.592744 ], [ -121.749115, 37.593424 ], [ -121.748514, 37.594240 ], [ -121.748514, 37.594648 ], [ -121.750488, 37.595940 ], [ -121.750832, 37.596552 ], [ -121.751432, 37.597028 ], [ -121.751690, 37.597980 ], [ -121.752119, 37.598388 ], [ -121.752634, 37.598660 ], [ -121.754265, 37.599068 ], [ -121.755295, 37.599476 ], [ -121.756582, 37.600360 ], [ -121.756411, 37.600632 ], [ -121.755896, 37.600768 ], [ -121.753664, 37.600768 ], [ -121.753235, 37.600972 ], [ -121.752119, 37.600972 ], [ -121.751175, 37.601176 ], [ -121.751862, 37.601312 ], [ -121.752548, 37.601652 ], [ -121.757441, 37.602468 ], [ -121.758642, 37.602944 ], [ -121.759071, 37.603352 ], [ -121.759930, 37.603352 ], [ -121.760359, 37.603624 ], [ -121.760702, 37.603624 ], [ -121.761045, 37.603488 ], [ -121.764822, 37.604304 ], [ -121.765509, 37.604712 ], [ -121.766882, 37.604984 ], [ -121.768427, 37.605528 ], [ -121.769028, 37.606072 ], [ -121.769886, 37.606072 ], [ -121.771088, 37.606412 ], [ -121.772375, 37.606956 ], [ -121.773233, 37.607568 ], [ -121.773405, 37.607840 ], [ -121.774693, 37.608384 ], [ -121.776838, 37.609812 ], [ -121.776924, 37.610152 ], [ -121.777782, 37.610492 ], [ -121.779156, 37.612600 ], [ -121.779585, 37.613755 ], [ -121.779499, 37.614163 ], [ -121.779842, 37.614367 ], [ -121.779671, 37.615387 ], [ -121.779928, 37.616815 ], [ -121.780615, 37.617767 ], [ -121.780958, 37.618039 ], [ -121.782675, 37.620554 ], [ -121.783533, 37.621030 ], [ -121.784048, 37.621982 ], [ -121.785078, 37.623138 ], [ -121.785336, 37.624905 ], [ -121.785851, 37.625993 ], [ -121.796150, 37.626333 ], [ -121.802931, 37.628508 ], [ -121.803102, 37.628644 ], [ -121.802244, 37.629528 ], [ -121.801987, 37.630139 ], [ -121.801815, 37.634082 ], [ -121.801558, 37.634694 ], [ -121.800785, 37.635577 ], [ -121.797438, 37.637616 ], [ -121.796923, 37.638160 ], [ -121.796322, 37.639451 ], [ -121.795635, 37.640131 ], [ -121.789455, 37.644481 ], [ -121.783705, 37.647811 ], [ -121.783190, 37.648219 ], [ -121.783018, 37.648626 ], [ -121.783018, 37.645296 ], [ -121.782846, 37.645160 ], [ -121.768084, 37.645160 ], [ -121.768084, 37.656645 ], [ -121.749716, 37.656645 ], [ -121.749716, 37.670030 ], [ -121.743793, 37.666157 ], [ -121.741991, 37.665138 ], [ -121.741133, 37.665138 ], [ -121.741133, 37.665002 ], [ -121.735210, 37.665138 ], [ -121.718903, 37.665002 ], [ -121.718903, 37.677978 ], [ -121.718645, 37.680628 ], [ -121.718645, 37.694076 ], [ -121.718044, 37.697065 ], [ -121.718130, 37.698083 ], [ -121.718731, 37.700189 ], [ -121.723108, 37.706776 ], [ -121.724310, 37.710375 ], [ -121.724396, 37.711868 ], [ -121.724224, 37.718590 ], [ -121.724138, 37.721578 ], [ -121.724224, 37.724022 ], [ -121.633759, 37.724022 ] ] ] } } ] } @@ -2564,11 +2564,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 165, "y": 395 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730403 ], [ -121.910391, 37.730335 ], [ -121.910563, 37.729045 ], [ -121.910477, 37.728434 ], [ -121.909447, 37.724904 ], [ -121.909533, 37.723954 ], [ -121.910219, 37.721781 ], [ -121.910133, 37.718590 ], [ -121.910219, 37.715807 ], [ -121.910219, 37.713159 ], [ -121.913309, 37.713159 ], [ -121.915112, 37.714924 ], [ -121.918459, 37.718590 ], [ -121.925926, 37.726941 ], [ -121.914253, 37.729656 ], [ -121.910477, 37.730403 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730403 ], [ -121.910391, 37.730335 ], [ -121.910563, 37.729520 ], [ -121.910477, 37.728434 ], [ -121.909447, 37.724904 ], [ -121.909533, 37.723954 ], [ -121.910219, 37.721781 ], [ -121.910133, 37.718590 ], [ -121.910219, 37.715807 ], [ -121.910219, 37.713159 ], [ -121.913309, 37.713159 ], [ -121.915112, 37.714924 ], [ -121.918459, 37.718590 ], [ -121.925926, 37.726941 ], [ -121.914253, 37.729656 ], [ -121.910477, 37.730403 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.739244, 37.772072 ], [ -121.738729, 37.771800 ], [ -121.736412, 37.771325 ], [ -121.735554, 37.770783 ], [ -121.735125, 37.770240 ], [ -121.734781, 37.768951 ], [ -121.734095, 37.768069 ], [ -121.733923, 37.767594 ], [ -121.733923, 37.767051 ], [ -121.734266, 37.766372 ], [ -121.735554, 37.765287 ], [ -121.736584, 37.762912 ], [ -121.736584, 37.761962 ], [ -121.736155, 37.760537 ], [ -121.735897, 37.760334 ], [ -121.734867, 37.759926 ], [ -121.734180, 37.758841 ], [ -121.732979, 37.758230 ], [ -121.732550, 37.757687 ], [ -121.732721, 37.757144 ], [ -121.734352, 37.755855 ], [ -121.734438, 37.755448 ], [ -121.734266, 37.755108 ], [ -121.732035, 37.752530 ], [ -121.730404, 37.749340 ], [ -121.727829, 37.747915 ], [ -121.726542, 37.747372 ], [ -121.726027, 37.746965 ], [ -121.725597, 37.746354 ], [ -121.725426, 37.744657 ], [ -121.724052, 37.743096 ], [ -121.723108, 37.741603 ], [ -121.723022, 37.741196 ], [ -121.723194, 37.740178 ], [ -121.723709, 37.739431 ], [ -121.723967, 37.738820 ], [ -121.724224, 37.726194 ], [ -121.724224, 37.724225 ], [ -121.724138, 37.723343 ], [ -121.724224, 37.718590 ], [ -121.724224, 37.716961 ], [ -121.738815, 37.717029 ], [ -121.741133, 37.716486 ], [ -121.741476, 37.717300 ], [ -121.742077, 37.717979 ], [ -121.743107, 37.718455 ], [ -121.743536, 37.717708 ], [ -121.744223, 37.717232 ], [ -121.744995, 37.716893 ], [ -121.747227, 37.716621 ], [ -121.750574, 37.715807 ], [ -121.751003, 37.715128 ], [ -121.751518, 37.714924 ], [ -121.751862, 37.714652 ], [ -121.751947, 37.713770 ], [ -121.752205, 37.713159 ], [ -121.806192, 37.713159 ], [ -121.806364, 37.713770 ], [ -121.807137, 37.715060 ], [ -121.808510, 37.718590 ], [ -121.808681, 37.719473 ], [ -121.808510, 37.720695 ], [ -121.808939, 37.722392 ], [ -121.808939, 37.723003 ], [ -121.808424, 37.724701 ], [ -121.808424, 37.725244 ], [ -121.808596, 37.726601 ], [ -121.809111, 37.727823 ], [ -121.809282, 37.728842 ], [ -121.808939, 37.729588 ], [ -121.808596, 37.731285 ], [ -121.808596, 37.733593 ], [ -121.808252, 37.735494 ], [ -121.808510, 37.736444 ], [ -121.809282, 37.738209 ], [ -121.809368, 37.741331 ], [ -121.809797, 37.742010 ], [ -121.811943, 37.743843 ], [ -121.813660, 37.744929 ], [ -121.813831, 37.745336 ], [ -121.813660, 37.746693 ], [ -121.811857, 37.751647 ], [ -121.811857, 37.752258 ], [ -121.812544, 37.754226 ], [ -121.792202, 37.758976 ], [ -121.781130, 37.761691 ], [ -121.780357, 37.761826 ], [ -121.739244, 37.772072 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812544, 37.754226 ], [ -121.811857, 37.752258 ], [ -121.811857, 37.751647 ], [ -121.813660, 37.746693 ], [ -121.813831, 37.745336 ], [ -121.813660, 37.744929 ], [ -121.811943, 37.743843 ], [ -121.809797, 37.742010 ], [ -121.809368, 37.741331 ], [ -121.809282, 37.738209 ], [ -121.808510, 37.736444 ], [ -121.808252, 37.735494 ], [ -121.808596, 37.733593 ], [ -121.808596, 37.731285 ], [ -121.808939, 37.729588 ], [ -121.809282, 37.728842 ], [ -121.809111, 37.727823 ], [ -121.808596, 37.726601 ], [ -121.808424, 37.725244 ], [ -121.808424, 37.724701 ], [ -121.808939, 37.723003 ], [ -121.808939, 37.722392 ], [ -121.808510, 37.720695 ], [ -121.808681, 37.719473 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.715060 ], [ -121.806364, 37.713770 ], [ -121.806192, 37.713159 ], [ -121.823702, 37.713159 ], [ -121.824389, 37.715875 ], [ -121.824560, 37.718590 ], [ -121.824560, 37.719201 ], [ -121.825590, 37.721985 ], [ -121.826534, 37.723682 ], [ -121.827049, 37.724225 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726126 ], [ -121.829882, 37.727280 ], [ -121.830912, 37.728095 ], [ -121.834774, 37.729792 ], [ -121.835718, 37.730878 ], [ -121.836405, 37.731082 ], [ -121.836576, 37.731285 ], [ -121.837263, 37.733186 ], [ -121.837606, 37.733593 ], [ -121.838465, 37.733526 ], [ -121.840353, 37.733661 ], [ -121.841469, 37.733458 ], [ -121.842413, 37.733390 ], [ -121.842670, 37.733322 ], [ -121.842842, 37.732983 ], [ -121.843271, 37.732575 ], [ -121.844044, 37.732236 ], [ -121.844473, 37.732236 ], [ -121.845503, 37.732372 ], [ -121.846275, 37.733050 ], [ -121.846876, 37.733322 ], [ -121.847134, 37.733254 ], [ -121.847563, 37.732711 ], [ -121.848164, 37.732779 ], [ -121.849194, 37.733390 ], [ -121.849623, 37.733390 ], [ -121.850224, 37.733933 ], [ -121.851168, 37.734272 ], [ -121.851854, 37.734272 ], [ -121.852541, 37.733933 ], [ -121.852798, 37.733593 ], [ -121.853142, 37.733390 ], [ -121.854258, 37.733050 ], [ -121.854687, 37.732439 ], [ -121.855116, 37.732372 ], [ -121.855631, 37.732032 ], [ -121.856146, 37.731353 ], [ -121.856833, 37.731218 ], [ -121.856918, 37.730878 ], [ -121.857262, 37.730403 ], [ -121.859922, 37.730607 ], [ -121.859064, 37.729656 ], [ -121.858635, 37.728774 ], [ -121.858377, 37.727688 ], [ -121.858206, 37.726126 ], [ -121.857176, 37.725990 ], [ -121.856489, 37.725651 ], [ -121.855974, 37.725108 ], [ -121.855631, 37.724497 ], [ -121.855288, 37.724633 ], [ -121.855288, 37.724972 ], [ -121.854601, 37.725040 ], [ -121.854000, 37.725312 ], [ -121.852713, 37.725176 ], [ -121.852369, 37.724836 ], [ -121.852026, 37.723818 ], [ -121.852026, 37.722732 ], [ -121.851683, 37.721781 ], [ -121.851683, 37.721238 ], [ -121.851940, 37.721170 ], [ -121.852369, 37.721306 ], [ -121.854000, 37.720288 ], [ -121.853313, 37.719473 ], [ -121.853056, 37.718590 ], [ -121.853056, 37.718387 ], [ -121.852026, 37.718319 ], [ -121.851940, 37.718251 ], [ -121.851254, 37.716757 ], [ -121.850824, 37.716282 ], [ -121.850910, 37.715875 ], [ -121.851683, 37.714245 ], [ -121.854086, 37.715399 ], [ -121.857090, 37.716486 ], [ -121.858292, 37.717436 ], [ -121.859064, 37.718522 ], [ -121.862669, 37.717776 ], [ -121.864042, 37.717843 ], [ -121.865501, 37.718251 ], [ -121.865845, 37.717708 ], [ -121.866703, 37.717097 ], [ -121.867561, 37.716961 ], [ -121.869020, 37.716961 ], [ -121.870136, 37.716621 ], [ -121.871080, 37.716621 ], [ -121.872025, 37.716689 ], [ -121.871939, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872110, 37.723207 ], [ -121.871939, 37.724565 ], [ -121.872454, 37.725244 ], [ -121.872454, 37.726058 ], [ -121.872969, 37.726466 ], [ -121.872883, 37.727009 ], [ -121.872969, 37.727620 ], [ -121.873655, 37.728163 ], [ -121.873226, 37.728570 ], [ -121.873569, 37.729317 ], [ -121.872883, 37.729385 ], [ -121.874342, 37.731421 ], [ -121.881723, 37.736444 ], [ -121.881552, 37.737327 ], [ -121.874342, 37.739092 ], [ -121.870995, 37.740042 ], [ -121.812544, 37.754226 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812544, 37.754226 ], [ -121.811857, 37.752258 ], [ -121.811857, 37.751647 ], [ -121.813660, 37.746693 ], [ -121.813831, 37.745336 ], [ -121.813660, 37.744929 ], [ -121.811943, 37.743843 ], [ -121.809797, 37.742010 ], [ -121.809368, 37.741331 ], [ -121.809282, 37.738209 ], [ -121.808510, 37.736444 ], [ -121.808252, 37.735494 ], [ -121.808596, 37.733593 ], [ -121.808596, 37.731285 ], [ -121.808939, 37.729588 ], [ -121.809282, 37.728842 ], [ -121.809111, 37.727823 ], [ -121.808596, 37.726601 ], [ -121.808424, 37.725244 ], [ -121.808424, 37.724701 ], [ -121.808939, 37.723003 ], [ -121.808939, 37.722392 ], [ -121.808510, 37.720695 ], [ -121.808681, 37.719473 ], [ -121.808510, 37.718590 ], [ -121.807137, 37.715060 ], [ -121.806364, 37.713770 ], [ -121.806192, 37.713159 ], [ -121.823702, 37.713159 ], [ -121.824389, 37.715875 ], [ -121.824560, 37.718590 ], [ -121.824560, 37.719201 ], [ -121.825590, 37.721985 ], [ -121.826534, 37.723682 ], [ -121.827049, 37.724225 ], [ -121.827564, 37.725108 ], [ -121.828938, 37.726126 ], [ -121.829882, 37.727280 ], [ -121.830912, 37.728095 ], [ -121.834774, 37.729792 ], [ -121.835718, 37.730878 ], [ -121.836405, 37.731082 ], [ -121.836576, 37.731285 ], [ -121.837263, 37.733186 ], [ -121.837521, 37.733593 ], [ -121.838465, 37.733526 ], [ -121.840353, 37.733661 ], [ -121.841469, 37.733458 ], [ -121.842413, 37.733390 ], [ -121.842670, 37.733322 ], [ -121.842842, 37.732983 ], [ -121.843271, 37.732575 ], [ -121.844044, 37.732236 ], [ -121.844473, 37.732236 ], [ -121.845503, 37.732372 ], [ -121.846275, 37.733050 ], [ -121.846876, 37.733322 ], [ -121.847134, 37.733254 ], [ -121.847563, 37.732711 ], [ -121.848164, 37.732779 ], [ -121.849194, 37.733390 ], [ -121.849623, 37.733390 ], [ -121.850224, 37.733933 ], [ -121.851168, 37.734272 ], [ -121.851854, 37.734272 ], [ -121.852541, 37.733933 ], [ -121.852798, 37.733593 ], [ -121.853142, 37.733390 ], [ -121.854258, 37.733050 ], [ -121.854687, 37.732439 ], [ -121.855116, 37.732372 ], [ -121.855631, 37.732032 ], [ -121.856146, 37.731353 ], [ -121.856833, 37.731218 ], [ -121.856918, 37.730878 ], [ -121.857262, 37.730403 ], [ -121.859922, 37.730607 ], [ -121.859064, 37.729656 ], [ -121.858635, 37.728774 ], [ -121.858377, 37.727688 ], [ -121.858206, 37.726126 ], [ -121.857176, 37.725990 ], [ -121.856489, 37.725651 ], [ -121.855974, 37.725108 ], [ -121.855631, 37.724497 ], [ -121.855288, 37.724633 ], [ -121.855288, 37.724972 ], [ -121.854601, 37.725040 ], [ -121.854000, 37.725312 ], [ -121.852713, 37.725176 ], [ -121.852369, 37.724836 ], [ -121.852026, 37.723818 ], [ -121.852026, 37.722732 ], [ -121.851683, 37.721781 ], [ -121.851683, 37.721238 ], [ -121.851940, 37.721170 ], [ -121.852369, 37.721306 ], [ -121.854000, 37.720288 ], [ -121.853313, 37.719473 ], [ -121.853056, 37.718590 ], [ -121.853056, 37.718387 ], [ -121.852026, 37.718319 ], [ -121.851940, 37.718251 ], [ -121.851254, 37.716757 ], [ -121.850824, 37.716282 ], [ -121.850910, 37.715875 ], [ -121.851683, 37.714245 ], [ -121.854086, 37.715399 ], [ -121.857090, 37.716486 ], [ -121.858292, 37.717436 ], [ -121.859064, 37.718522 ], [ -121.862669, 37.717776 ], [ -121.864042, 37.717843 ], [ -121.865501, 37.718251 ], [ -121.865845, 37.717708 ], [ -121.866703, 37.717097 ], [ -121.867561, 37.716961 ], [ -121.869020, 37.716961 ], [ -121.870136, 37.716621 ], [ -121.871080, 37.716621 ], [ -121.872025, 37.716689 ], [ -121.871939, 37.718590 ], [ -121.871510, 37.723207 ], [ -121.872110, 37.723207 ], [ -121.871939, 37.724565 ], [ -121.872454, 37.725244 ], [ -121.872454, 37.726058 ], [ -121.872969, 37.726466 ], [ -121.872883, 37.727009 ], [ -121.872969, 37.727620 ], [ -121.873655, 37.728163 ], [ -121.873226, 37.728570 ], [ -121.873569, 37.729317 ], [ -121.872883, 37.729385 ], [ -121.874342, 37.731421 ], [ -121.881723, 37.736444 ], [ -121.881552, 37.737327 ], [ -121.874342, 37.739092 ], [ -121.870995, 37.740042 ], [ -121.812544, 37.754226 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.999054, 37.762437 ], [ -121.999054, 37.764540 ], [ -121.997766, 37.763183 ], [ -121.999054, 37.762437 ] ] ], [ [ [ -121.999054, 37.738752 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736376 ], [ -121.989956, 37.733593 ], [ -121.983433, 37.730878 ], [ -121.982231, 37.730675 ], [ -121.977596, 37.729453 ], [ -121.975193, 37.729520 ], [ -121.974077, 37.729385 ], [ -121.972446, 37.728502 ], [ -121.975365, 37.726194 ], [ -121.984205, 37.718590 ], [ -121.988497, 37.714788 ], [ -121.990385, 37.713159 ], [ -121.999054, 37.713159 ], [ -121.999054, 37.738752 ] ] ] ] } } , @@ -2578,11 +2578,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450501", "GEOID10": "06001450501", "NAME10": "4505.01", "NAMELSAD10": "Census Tract 4505.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1163206, "AWATER10": 0, "INTPTLAT10": "+37.7068544", "INTPTLON10": "-121.9419571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.939487, 37.713905 ], [ -121.939230, 37.713159 ], [ -121.942921, 37.713159 ], [ -121.942835, 37.713634 ], [ -121.942062, 37.713566 ], [ -121.941204, 37.713838 ], [ -121.940002, 37.713770 ], [ -121.939487, 37.713905 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881552, 37.737327 ], [ -121.881723, 37.736444 ], [ -121.874342, 37.731421 ], [ -121.872883, 37.729385 ], [ -121.873569, 37.729317 ], [ -121.873226, 37.728570 ], [ -121.873655, 37.728163 ], [ -121.872969, 37.727620 ], [ -121.872883, 37.727009 ], [ -121.872969, 37.726466 ], [ -121.872454, 37.726058 ], [ -121.872454, 37.725244 ], [ -121.871939, 37.724565 ], [ -121.872110, 37.723207 ], [ -121.871510, 37.723207 ], [ -121.871939, 37.718590 ], [ -121.872025, 37.715331 ], [ -121.872025, 37.713159 ], [ -121.910219, 37.713159 ], [ -121.910133, 37.718590 ], [ -121.910219, 37.721781 ], [ -121.909533, 37.723954 ], [ -121.909447, 37.724904 ], [ -121.910477, 37.728434 ], [ -121.910563, 37.729045 ], [ -121.910391, 37.730335 ], [ -121.910477, 37.730403 ], [ -121.895285, 37.734136 ], [ -121.881552, 37.737327 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881552, 37.737327 ], [ -121.881723, 37.736444 ], [ -121.874342, 37.731421 ], [ -121.872883, 37.729385 ], [ -121.873569, 37.729317 ], [ -121.873226, 37.728570 ], [ -121.873655, 37.728163 ], [ -121.872969, 37.727620 ], [ -121.872883, 37.727009 ], [ -121.872969, 37.726466 ], [ -121.872454, 37.726058 ], [ -121.872454, 37.725244 ], [ -121.871939, 37.724565 ], [ -121.872110, 37.723207 ], [ -121.871510, 37.723207 ], [ -121.871939, 37.718590 ], [ -121.872025, 37.715331 ], [ -121.872025, 37.713159 ], [ -121.910219, 37.713159 ], [ -121.910133, 37.718590 ], [ -121.910219, 37.721781 ], [ -121.909533, 37.723954 ], [ -121.909447, 37.724904 ], [ -121.910477, 37.728434 ], [ -121.910563, 37.729520 ], [ -121.910391, 37.730335 ], [ -121.910477, 37.730403 ], [ -121.895285, 37.734136 ], [ -121.881552, 37.737327 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.925926, 37.726941 ], [ -121.918459, 37.718590 ], [ -121.915112, 37.714924 ], [ -121.913309, 37.713159 ], [ -121.927471, 37.713159 ], [ -121.927042, 37.714313 ], [ -121.926699, 37.718590 ], [ -121.926527, 37.720831 ], [ -121.926613, 37.722121 ], [ -121.926956, 37.722732 ], [ -121.929359, 37.726194 ], [ -121.925926, 37.726941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450751", "GEOID10": "06001450751", "NAME10": "4507.51", "NAMELSAD10": "Census Tract 4507.51", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9789945, "AWATER10": 0, "INTPTLAT10": "+37.7163164", "INTPTLON10": "-121.8430342" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.851168, 37.734272 ], [ -121.850224, 37.733933 ], [ -121.849623, 37.733390 ], [ -121.849194, 37.733390 ], [ -121.848164, 37.732779 ], [ -121.847563, 37.732711 ], [ -121.847134, 37.733254 ], [ -121.846876, 37.733322 ], [ -121.846275, 37.733050 ], [ -121.845503, 37.732372 ], [ -121.844473, 37.732236 ], [ -121.844044, 37.732236 ], [ -121.843271, 37.732575 ], [ -121.842842, 37.732983 ], [ -121.842670, 37.733322 ], [ -121.842413, 37.733390 ], [ -121.841469, 37.733458 ], [ -121.840353, 37.733661 ], [ -121.838465, 37.733526 ], [ -121.837606, 37.733593 ], [ -121.837263, 37.733186 ], [ -121.836576, 37.731285 ], [ -121.836405, 37.731082 ], [ -121.835718, 37.730878 ], [ -121.834774, 37.729792 ], [ -121.830912, 37.728095 ], [ -121.829882, 37.727280 ], [ -121.828938, 37.726126 ], [ -121.827564, 37.725108 ], [ -121.827049, 37.724225 ], [ -121.826534, 37.723682 ], [ -121.825590, 37.721985 ], [ -121.824560, 37.719201 ], [ -121.824560, 37.718590 ], [ -121.824389, 37.715875 ], [ -121.823702, 37.713159 ], [ -121.872025, 37.713159 ], [ -121.872025, 37.716689 ], [ -121.870136, 37.716621 ], [ -121.869020, 37.716961 ], [ -121.867561, 37.716961 ], [ -121.866961, 37.717029 ], [ -121.866188, 37.717436 ], [ -121.865501, 37.718251 ], [ -121.864042, 37.717843 ], [ -121.862669, 37.717776 ], [ -121.859064, 37.718522 ], [ -121.858292, 37.717436 ], [ -121.857090, 37.716486 ], [ -121.854086, 37.715399 ], [ -121.851683, 37.714245 ], [ -121.850910, 37.715875 ], [ -121.850824, 37.716282 ], [ -121.851254, 37.716757 ], [ -121.851940, 37.718251 ], [ -121.852026, 37.718319 ], [ -121.853056, 37.718387 ], [ -121.853056, 37.718590 ], [ -121.853313, 37.719473 ], [ -121.854000, 37.720288 ], [ -121.852369, 37.721306 ], [ -121.851940, 37.721170 ], [ -121.851683, 37.721238 ], [ -121.851683, 37.721781 ], [ -121.852026, 37.722732 ], [ -121.852026, 37.723818 ], [ -121.852369, 37.724836 ], [ -121.852713, 37.725176 ], [ -121.854000, 37.725312 ], [ -121.854601, 37.725040 ], [ -121.855288, 37.724972 ], [ -121.855288, 37.724633 ], [ -121.855631, 37.724497 ], [ -121.855974, 37.725108 ], [ -121.856489, 37.725651 ], [ -121.857176, 37.725990 ], [ -121.858206, 37.726126 ], [ -121.858377, 37.727688 ], [ -121.858635, 37.728774 ], [ -121.859064, 37.729656 ], [ -121.859922, 37.730607 ], [ -121.857262, 37.730403 ], [ -121.856918, 37.730878 ], [ -121.856833, 37.731218 ], [ -121.856146, 37.731353 ], [ -121.855631, 37.732032 ], [ -121.855116, 37.732372 ], [ -121.854687, 37.732439 ], [ -121.854258, 37.733050 ], [ -121.853142, 37.733390 ], [ -121.852798, 37.733593 ], [ -121.852541, 37.733933 ], [ -121.851854, 37.734272 ], [ -121.851168, 37.734272 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450751", "GEOID10": "06001450751", "NAME10": "4507.51", "NAMELSAD10": "Census Tract 4507.51", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9789945, "AWATER10": 0, "INTPTLAT10": "+37.7163164", "INTPTLON10": "-121.8430342" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.851168, 37.734272 ], [ -121.850224, 37.733933 ], [ -121.849623, 37.733390 ], [ -121.849194, 37.733390 ], [ -121.848164, 37.732779 ], [ -121.847563, 37.732711 ], [ -121.847134, 37.733254 ], [ -121.846876, 37.733322 ], [ -121.846275, 37.733050 ], [ -121.845503, 37.732372 ], [ -121.844473, 37.732236 ], [ -121.844044, 37.732236 ], [ -121.843271, 37.732575 ], [ -121.842842, 37.732983 ], [ -121.842670, 37.733322 ], [ -121.842413, 37.733390 ], [ -121.841469, 37.733458 ], [ -121.840353, 37.733661 ], [ -121.838465, 37.733526 ], [ -121.837521, 37.733593 ], [ -121.837263, 37.733186 ], [ -121.836576, 37.731285 ], [ -121.836405, 37.731082 ], [ -121.835718, 37.730878 ], [ -121.834774, 37.729792 ], [ -121.830912, 37.728095 ], [ -121.829882, 37.727280 ], [ -121.828938, 37.726126 ], [ -121.827564, 37.725108 ], [ -121.827049, 37.724225 ], [ -121.826534, 37.723682 ], [ -121.825590, 37.721985 ], [ -121.824560, 37.719201 ], [ -121.824560, 37.718590 ], [ -121.824389, 37.715875 ], [ -121.823702, 37.713159 ], [ -121.872025, 37.713159 ], [ -121.872025, 37.716689 ], [ -121.870136, 37.716621 ], [ -121.869020, 37.716961 ], [ -121.867561, 37.716961 ], [ -121.866961, 37.717029 ], [ -121.866188, 37.717436 ], [ -121.865501, 37.718251 ], [ -121.864042, 37.717843 ], [ -121.862669, 37.717776 ], [ -121.859064, 37.718522 ], [ -121.858292, 37.717436 ], [ -121.857090, 37.716486 ], [ -121.854086, 37.715399 ], [ -121.851683, 37.714245 ], [ -121.850910, 37.715875 ], [ -121.850824, 37.716282 ], [ -121.851254, 37.716757 ], [ -121.851940, 37.718251 ], [ -121.852026, 37.718319 ], [ -121.853056, 37.718387 ], [ -121.853056, 37.718590 ], [ -121.853313, 37.719473 ], [ -121.854000, 37.720288 ], [ -121.852369, 37.721306 ], [ -121.851940, 37.721170 ], [ -121.851683, 37.721238 ], [ -121.851683, 37.721781 ], [ -121.852026, 37.722732 ], [ -121.852026, 37.723818 ], [ -121.852369, 37.724836 ], [ -121.852713, 37.725176 ], [ -121.854000, 37.725312 ], [ -121.854601, 37.725040 ], [ -121.855288, 37.724972 ], [ -121.855288, 37.724633 ], [ -121.855631, 37.724497 ], [ -121.855974, 37.725108 ], [ -121.856489, 37.725651 ], [ -121.857176, 37.725990 ], [ -121.858206, 37.726126 ], [ -121.858377, 37.727688 ], [ -121.858635, 37.728774 ], [ -121.859064, 37.729656 ], [ -121.859922, 37.730607 ], [ -121.857262, 37.730403 ], [ -121.856918, 37.730878 ], [ -121.856833, 37.731218 ], [ -121.856146, 37.731353 ], [ -121.855631, 37.732032 ], [ -121.855116, 37.732372 ], [ -121.854687, 37.732439 ], [ -121.854258, 37.733050 ], [ -121.853142, 37.733390 ], [ -121.852798, 37.733593 ], [ -121.852541, 37.733933 ], [ -121.851854, 37.734272 ], [ -121.851168, 37.734272 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451201", "GEOID10": "06001451201", "NAME10": "4512.01", "NAMELSAD10": "Census Tract 4512.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3675247, "AWATER10": 6919, "INTPTLAT10": "+37.7129066", "INTPTLON10": "-121.7418149" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.743107, 37.718455 ], [ -121.742077, 37.717979 ], [ -121.741476, 37.717300 ], [ -121.741133, 37.716486 ], [ -121.738815, 37.717029 ], [ -121.724224, 37.716961 ], [ -121.724310, 37.713159 ], [ -121.752205, 37.713159 ], [ -121.751947, 37.713770 ], [ -121.751862, 37.714652 ], [ -121.751518, 37.714924 ], [ -121.751003, 37.715128 ], [ -121.750574, 37.715807 ], [ -121.747227, 37.716621 ], [ -121.744995, 37.716893 ], [ -121.744223, 37.717232 ], [ -121.743536, 37.717708 ], [ -121.743107, 37.718455 ] ] ] } } , @@ -2626,7 +2626,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256589, 37.721306 ], [ -122.252383, 37.718590 ], [ -122.216163, 37.695537 ], [ -122.213330, 37.695401 ], [ -122.209082, 37.696148 ], [ -122.207408, 37.699204 ], [ -122.205992, 37.702022 ], [ -122.204361, 37.703822 ], [ -122.200413, 37.700834 ], [ -122.197967, 37.698525 ], [ -122.197194, 37.692446 ], [ -122.192388, 37.687930 ], [ -122.185993, 37.684364 ], [ -122.178183, 37.677129 ], [ -122.172174, 37.673189 ], [ -122.170887, 37.671117 ], [ -122.167969, 37.668162 ], [ -122.167068, 37.667245 ], [ -122.164536, 37.657834 ], [ -122.164536, 37.576692 ], [ -122.173719, 37.576692 ], [ -122.175908, 37.579413 ], [ -122.186809, 37.592914 ], [ -122.246675, 37.665716 ], [ -122.251997, 37.672442 ], [ -122.254701, 37.675737 ], [ -122.278519, 37.704399 ], [ -122.281780, 37.708236 ], [ -122.288346, 37.718590 ], [ -122.290063, 37.721306 ], [ -122.256589, 37.721306 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256589, 37.721306 ], [ -122.252383, 37.718590 ], [ -122.216163, 37.695537 ], [ -122.213330, 37.695401 ], [ -122.209082, 37.696148 ], [ -122.207408, 37.699204 ], [ -122.205992, 37.702022 ], [ -122.204361, 37.703822 ], [ -122.200413, 37.700834 ], [ -122.197967, 37.698525 ], [ -122.197194, 37.692446 ], [ -122.192388, 37.687930 ], [ -122.185993, 37.684364 ], [ -122.178183, 37.677129 ], [ -122.172132, 37.673189 ], [ -122.170887, 37.671117 ], [ -122.167969, 37.668162 ], [ -122.167068, 37.667245 ], [ -122.164536, 37.657834 ], [ -122.164536, 37.576692 ], [ -122.173719, 37.576692 ], [ -122.175908, 37.579413 ], [ -122.186809, 37.592914 ], [ -122.246675, 37.665716 ], [ -122.251997, 37.672442 ], [ -122.254701, 37.675737 ], [ -122.278519, 37.704399 ], [ -122.281780, 37.708236 ], [ -122.288346, 37.718590 ], [ -122.290063, 37.721306 ], [ -122.256589, 37.721306 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.233500, 37.721306 ], [ -122.236118, 37.718624 ], [ -122.236891, 37.719032 ], [ -122.240067, 37.721306 ], [ -122.233500, 37.721306 ] ] ], [ [ [ -122.256460, 37.721306 ], [ -122.256546, 37.721238 ], [ -122.256589, 37.721306 ], [ -122.256460, 37.721306 ] ] ] ] } } , @@ -2642,7 +2642,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433200", "GEOID10": "06001433200", "NAME10": "4332", "NAMELSAD10": "Census Tract 4332", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3174900, "AWATER10": 0, "INTPTLAT10": "+37.7017500", "INTPTLON10": "-122.1470769" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164536, 37.711257 ], [ -122.164536, 37.708949 ], [ -122.166681, 37.710409 ], [ -122.165866, 37.710782 ], [ -122.164536, 37.711257 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703686 ], [ -122.165866, 37.701207 ], [ -122.165694, 37.700698 ], [ -122.165694, 37.700087 ], [ -122.164536, 37.698151 ], [ -122.164536, 37.666973 ], [ -122.165523, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167068, 37.667245 ], [ -122.167969, 37.668162 ], [ -122.170887, 37.671117 ], [ -122.172174, 37.673189 ], [ -122.178183, 37.677129 ], [ -122.185993, 37.684364 ], [ -122.192388, 37.687930 ], [ -122.197194, 37.692446 ], [ -122.191658, 37.695367 ], [ -122.191787, 37.695435 ], [ -122.191958, 37.695401 ], [ -122.191701, 37.695571 ], [ -122.191529, 37.695537 ], [ -122.191358, 37.695706 ], [ -122.191186, 37.695774 ], [ -122.187495, 37.696793 ], [ -122.186465, 37.695639 ], [ -122.184148, 37.696623 ], [ -122.183719, 37.696895 ], [ -122.182860, 37.697268 ], [ -122.167969, 37.703516 ], [ -122.167540, 37.703686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703686 ], [ -122.165866, 37.701207 ], [ -122.165694, 37.700698 ], [ -122.165694, 37.700087 ], [ -122.164536, 37.698151 ], [ -122.164536, 37.666973 ], [ -122.165523, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167068, 37.667245 ], [ -122.167969, 37.668162 ], [ -122.170887, 37.671117 ], [ -122.172132, 37.673189 ], [ -122.178183, 37.677129 ], [ -122.185993, 37.684364 ], [ -122.192388, 37.687930 ], [ -122.197194, 37.692446 ], [ -122.191658, 37.695367 ], [ -122.191787, 37.695435 ], [ -122.191958, 37.695401 ], [ -122.191701, 37.695571 ], [ -122.191529, 37.695537 ], [ -122.191358, 37.695706 ], [ -122.191186, 37.695774 ], [ -122.187495, 37.696793 ], [ -122.186465, 37.695639 ], [ -122.184148, 37.696623 ], [ -122.183719, 37.696895 ], [ -122.182860, 37.697268 ], [ -122.167969, 37.703516 ], [ -122.167540, 37.703686 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "437101", "GEOID10": "06001437101", "NAME10": "4371.01", "NAMELSAD10": "Census Tract 4371.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 48854999, "AWATER10": 7227925, "INTPTLAT10": "+37.6059048", "INTPTLON10": "-122.1268730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164536, 37.666973 ], [ -122.164536, 37.657834 ], [ -122.166939, 37.666769 ], [ -122.165523, 37.666769 ], [ -122.164536, 37.666973 ] ] ] } } ] } @@ -2656,7 +2656,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423500", "GEOID10": "06001423500", "NAME10": "4235", "NAMELSAD10": "Census Tract 4235", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 635239, "AWATER10": 0, "INTPTLAT10": "+37.8593650", "INTPTLON10": "-122.2680467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.264400, 37.860218 ], [ -122.263885, 37.857507 ], [ -122.263498, 37.855745 ], [ -122.268348, 37.855068 ], [ -122.268605, 37.855000 ], [ -122.269206, 37.854593 ], [ -122.269678, 37.854627 ], [ -122.270236, 37.854390 ], [ -122.271180, 37.854254 ], [ -122.271481, 37.857507 ], [ -122.271824, 37.860218 ], [ -122.264400, 37.860218 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423700", "GEOID10": "06001423700", "NAME10": "4237", "NAMELSAD10": "Census Tract 4237", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 744052, "AWATER10": 0, "INTPTLAT10": "+37.8618413", "INTPTLON10": "-122.2489230" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.243929, 37.860218 ], [ -122.244015, 37.859235 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.858930 ], [ -122.243929, 37.858591 ], [ -122.243328, 37.858727 ], [ -122.242255, 37.857575 ], [ -122.242727, 37.857710 ], [ -122.243285, 37.857982 ], [ -122.243843, 37.858117 ], [ -122.244315, 37.858151 ], [ -122.248993, 37.857846 ], [ -122.250752, 37.857778 ], [ -122.251096, 37.857677 ], [ -122.252169, 37.857643 ], [ -122.252297, 37.857507 ], [ -122.252297, 37.857372 ], [ -122.252169, 37.857236 ], [ -122.252812, 37.857101 ], [ -122.253113, 37.857101 ], [ -122.253113, 37.857507 ], [ -122.253413, 37.860218 ], [ -122.243929, 37.860218 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423700", "GEOID10": "06001423700", "NAME10": "4237", "NAMELSAD10": "Census Tract 4237", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 744052, "AWATER10": 0, "INTPTLAT10": "+37.8618413", "INTPTLON10": "-122.2489230" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.243929, 37.860218 ], [ -122.244015, 37.859235 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.858930 ], [ -122.243929, 37.858591 ], [ -122.243328, 37.858727 ], [ -122.242255, 37.857575 ], [ -122.242727, 37.857710 ], [ -122.243285, 37.857982 ], [ -122.243843, 37.858117 ], [ -122.244315, 37.858151 ], [ -122.250710, 37.857778 ], [ -122.251096, 37.857677 ], [ -122.252169, 37.857643 ], [ -122.252297, 37.857507 ], [ -122.252297, 37.857372 ], [ -122.252169, 37.857236 ], [ -122.252812, 37.857101 ], [ -122.253113, 37.857101 ], [ -122.253113, 37.857507 ], [ -122.253413, 37.860218 ], [ -122.243929, 37.860218 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401700", "GEOID10": "06001401700", "NAME10": "4017", "NAMELSAD10": "Census Tract 4017", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5802590, "AWATER10": 6131884, "INTPTLAT10": "+37.8134257", "INTPTLON10": "-122.3193044" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.320232, 37.838496 ], [ -122.315211, 37.837174 ], [ -122.296500, 37.832938 ], [ -122.294312, 37.832361 ], [ -122.293196, 37.831378 ], [ -122.293024, 37.831345 ], [ -122.291007, 37.830192 ], [ -122.290106, 37.829955 ], [ -122.287617, 37.829446 ], [ -122.286115, 37.829040 ], [ -122.285557, 37.828768 ], [ -122.284913, 37.828633 ], [ -122.282724, 37.827955 ], [ -122.282510, 37.827955 ], [ -122.281523, 37.827684 ], [ -122.281222, 37.827650 ], [ -122.281008, 37.827718 ], [ -122.282338, 37.825955 ], [ -122.283068, 37.825141 ], [ -122.283626, 37.824396 ], [ -122.283497, 37.824328 ], [ -122.283926, 37.824057 ], [ -122.284656, 37.823175 ], [ -122.284870, 37.822836 ], [ -122.288432, 37.818429 ], [ -122.288432, 37.818294 ], [ -122.289119, 37.817446 ], [ -122.289677, 37.817005 ], [ -122.289677, 37.816836 ], [ -122.290664, 37.815615 ], [ -122.290750, 37.815412 ], [ -122.290835, 37.815378 ], [ -122.292080, 37.813852 ], [ -122.294011, 37.811411 ], [ -122.296801, 37.812835 ], [ -122.297873, 37.813310 ], [ -122.301908, 37.808224 ], [ -122.302465, 37.806970 ], [ -122.304010, 37.807377 ], [ -122.304869, 37.808089 ], [ -122.306414, 37.807919 ], [ -122.308431, 37.808428 ], [ -122.310319, 37.808699 ], [ -122.310705, 37.808970 ], [ -122.311134, 37.809038 ], [ -122.312078, 37.808665 ], [ -122.312207, 37.808665 ], [ -122.315340, 37.808869 ], [ -122.319803, 37.809309 ], [ -122.320790, 37.809275 ], [ -122.321348, 37.809140 ], [ -122.321863, 37.808902 ], [ -122.322721, 37.808326 ], [ -122.323194, 37.808123 ], [ -122.323923, 37.807987 ], [ -122.327785, 37.807648 ], [ -122.328300, 37.808021 ], [ -122.328472, 37.808326 ], [ -122.328687, 37.809852 ], [ -122.333879, 37.810326 ], [ -122.343750, 37.810869 ], [ -122.346668, 37.811038 ], [ -122.343750, 37.815344 ], [ -122.340918, 37.819514 ], [ -122.341046, 37.826463 ], [ -122.317486, 37.832294 ], [ -122.312293, 37.832192 ], [ -122.318730, 37.835412 ], [ -122.320232, 37.838496 ] ] ] } } , @@ -2698,7 +2698,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401000", "GEOID10": "06001401000", "NAME10": "4010", "NAMELSAD10": "Census Tract 4010", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1154123, "AWATER10": 0, "INTPTLAT10": "+37.8312170", "INTPTLON10": "-122.2719625" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.265644, 37.837649 ], [ -122.266846, 37.831514 ], [ -122.267833, 37.827040 ], [ -122.268476, 37.826802 ], [ -122.268348, 37.825175 ], [ -122.268562, 37.824463 ], [ -122.271051, 37.825141 ], [ -122.274485, 37.825853 ], [ -122.275472, 37.826124 ], [ -122.275171, 37.825989 ], [ -122.278605, 37.826836 ], [ -122.278733, 37.827175 ], [ -122.278047, 37.827040 ], [ -122.278605, 37.828599 ], [ -122.275643, 37.836463 ], [ -122.274656, 37.836395 ], [ -122.273369, 37.836598 ], [ -122.269678, 37.837039 ], [ -122.268348, 37.837310 ], [ -122.266588, 37.837479 ], [ -122.265644, 37.837649 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401400", "GEOID10": "06001401400", "NAME10": "4014", "NAMELSAD10": "Census Tract 4014", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 755873, "AWATER10": 0, "INTPTLAT10": "+37.8207387", "INTPTLON10": "-122.2733758" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.278605, 37.826836 ], [ -122.275171, 37.825989 ], [ -122.275472, 37.826124 ], [ -122.274485, 37.825853 ], [ -122.271051, 37.825141 ], [ -122.268434, 37.824430 ], [ -122.268562, 37.823786 ], [ -122.268734, 37.823447 ], [ -122.268734, 37.823277 ], [ -122.268863, 37.823108 ], [ -122.269335, 37.821718 ], [ -122.270193, 37.818294 ], [ -122.270579, 37.817344 ], [ -122.270665, 37.816938 ], [ -122.271266, 37.815310 ], [ -122.272038, 37.814022 ], [ -122.272596, 37.813412 ], [ -122.273412, 37.812734 ], [ -122.274141, 37.812835 ], [ -122.274313, 37.813547 ], [ -122.274914, 37.815243 ], [ -122.275257, 37.816463 ], [ -122.277875, 37.824430 ], [ -122.278004, 37.825006 ], [ -122.278605, 37.826836 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401400", "GEOID10": "06001401400", "NAME10": "4014", "NAMELSAD10": "Census Tract 4014", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 755873, "AWATER10": 0, "INTPTLAT10": "+37.8207387", "INTPTLON10": "-122.2733758" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.278605, 37.826836 ], [ -122.275171, 37.825989 ], [ -122.275472, 37.826124 ], [ -122.274485, 37.825853 ], [ -122.271051, 37.825141 ], [ -122.268434, 37.824430 ], [ -122.268562, 37.823786 ], [ -122.268734, 37.823447 ], [ -122.268734, 37.823277 ], [ -122.268863, 37.823108 ], [ -122.269335, 37.821718 ], [ -122.270193, 37.818294 ], [ -122.270579, 37.817344 ], [ -122.270665, 37.816938 ], [ -122.271266, 37.815310 ], [ -122.272038, 37.814022 ], [ -122.272596, 37.813412 ], [ -122.273412, 37.812734 ], [ -122.274141, 37.812835 ], [ -122.274313, 37.813547 ], [ -122.274914, 37.815243 ], [ -122.275043, 37.815819 ], [ -122.277875, 37.824430 ], [ -122.278004, 37.825006 ], [ -122.278605, 37.826836 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401100", "GEOID10": "06001401100", "NAME10": "4011", "NAMELSAD10": "Census Tract 4011", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 886376, "AWATER10": 0, "INTPTLAT10": "+37.8304835", "INTPTLON10": "-122.2638645" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.262297, 37.838022 ], [ -122.262340, 37.837310 ], [ -122.259893, 37.837005 ], [ -122.259550, 37.836835 ], [ -122.259593, 37.836429 ], [ -122.260194, 37.834395 ], [ -122.259979, 37.831887 ], [ -122.261395, 37.826667 ], [ -122.261610, 37.825311 ], [ -122.262082, 37.823752 ], [ -122.262125, 37.823311 ], [ -122.262039, 37.822972 ], [ -122.265472, 37.823684 ], [ -122.268562, 37.824463 ], [ -122.268348, 37.825175 ], [ -122.268476, 37.826802 ], [ -122.267833, 37.827040 ], [ -122.266846, 37.831514 ], [ -122.265644, 37.837649 ], [ -122.264314, 37.837818 ], [ -122.264013, 37.837954 ], [ -122.263241, 37.837886 ], [ -122.262297, 37.838022 ] ] ] } } , @@ -2706,7 +2706,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401200", "GEOID10": "06001401200", "NAME10": "4012", "NAMELSAD10": "Census Tract 4012", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 667273, "AWATER10": 0, "INTPTLAT10": "+37.8305977", "INTPTLON10": "-122.2579072" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.259893, 37.837005 ], [ -122.257361, 37.836598 ], [ -122.256846, 37.836463 ], [ -122.253027, 37.834971 ], [ -122.252126, 37.834327 ], [ -122.253027, 37.833548 ], [ -122.258735, 37.824396 ], [ -122.260022, 37.822430 ], [ -122.262039, 37.822972 ], [ -122.262125, 37.823447 ], [ -122.261910, 37.824396 ], [ -122.261610, 37.825311 ], [ -122.261353, 37.826836 ], [ -122.259979, 37.831887 ], [ -122.260194, 37.834395 ], [ -122.259550, 37.836700 ], [ -122.259550, 37.836835 ], [ -122.259893, 37.837005 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404000", "GEOID10": "06001404000", "NAME10": "4040", "NAMELSAD10": "Census Tract 4040", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 371153, "AWATER10": 0, "INTPTLAT10": "+37.8232774", "INTPTLON10": "-122.2536542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256761, 37.827616 ], [ -122.254958, 37.826904 ], [ -122.253456, 37.825718 ], [ -122.253757, 37.825447 ], [ -122.250237, 37.822870 ], [ -122.249379, 37.823650 ], [ -122.248864, 37.823379 ], [ -122.249336, 37.822938 ], [ -122.247448, 37.821616 ], [ -122.251782, 37.820328 ], [ -122.253284, 37.819345 ], [ -122.253671, 37.819006 ], [ -122.255173, 37.820023 ], [ -122.254400, 37.820023 ], [ -122.254486, 37.820328 ], [ -122.254272, 37.820328 ], [ -122.254615, 37.821684 ], [ -122.255044, 37.822192 ], [ -122.256503, 37.823175 ], [ -122.256675, 37.823379 ], [ -122.257404, 37.823921 ], [ -122.257791, 37.824158 ], [ -122.258692, 37.824531 ], [ -122.256761, 37.827616 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404000", "GEOID10": "06001404000", "NAME10": "4040", "NAMELSAD10": "Census Tract 4040", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 371153, "AWATER10": 0, "INTPTLAT10": "+37.8232774", "INTPTLON10": "-122.2536542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.256761, 37.827616 ], [ -122.254958, 37.826904 ], [ -122.253456, 37.825718 ], [ -122.253757, 37.825447 ], [ -122.250237, 37.822870 ], [ -122.249379, 37.823650 ], [ -122.248864, 37.823379 ], [ -122.249336, 37.822938 ], [ -122.247448, 37.821582 ], [ -122.251782, 37.820328 ], [ -122.253284, 37.819345 ], [ -122.253671, 37.819006 ], [ -122.255173, 37.820023 ], [ -122.254400, 37.820023 ], [ -122.254486, 37.820328 ], [ -122.254272, 37.820328 ], [ -122.254615, 37.821684 ], [ -122.255044, 37.822192 ], [ -122.256503, 37.823175 ], [ -122.256675, 37.823379 ], [ -122.257404, 37.823921 ], [ -122.257791, 37.824158 ], [ -122.258692, 37.824531 ], [ -122.256761, 37.827616 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "401800", "GEOID10": "06001401800", "NAME10": "4018", "NAMELSAD10": "Census Tract 4018", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 298697, "AWATER10": 0, "INTPTLAT10": "+37.8095320", "INTPTLON10": "-122.2982360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297873, 37.813310 ], [ -122.296801, 37.812835 ], [ -122.294011, 37.811411 ], [ -122.298260, 37.806088 ], [ -122.301822, 37.806902 ], [ -122.302380, 37.807173 ], [ -122.301908, 37.808224 ], [ -122.297873, 37.813310 ] ] ] } } , @@ -2716,9 +2716,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402700", "GEOID10": "06001402700", "NAME10": "4027", "NAMELSAD10": "Census Tract 4027", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 398775, "AWATER10": 0, "INTPTLAT10": "+37.8103872", "INTPTLON10": "-122.2769914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.278690, 37.814564 ], [ -122.274914, 37.813073 ], [ -122.274141, 37.812835 ], [ -122.273111, 37.812700 ], [ -122.272725, 37.812598 ], [ -122.272983, 37.811784 ], [ -122.273197, 37.811615 ], [ -122.273669, 37.811479 ], [ -122.273369, 37.810462 ], [ -122.273498, 37.810191 ], [ -122.275987, 37.806224 ], [ -122.277017, 37.806631 ], [ -122.277231, 37.806766 ], [ -122.278562, 37.807207 ], [ -122.280707, 37.808123 ], [ -122.280965, 37.808292 ], [ -122.280750, 37.808936 ], [ -122.280493, 37.809445 ], [ -122.279549, 37.812327 ], [ -122.278690, 37.814564 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410500", "GEOID10": "06001410500", "NAME10": "4105", "NAMELSAD10": "Census Tract 4105", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 724054, "AWATER10": 0, "INTPTLAT10": "+37.8100197", "INTPTLON10": "-122.2889560" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.817005 ], [ -122.289205, 37.816802 ], [ -122.288132, 37.816531 ], [ -122.287359, 37.816395 ], [ -122.284012, 37.815615 ], [ -122.288690, 37.802765 ], [ -122.289805, 37.802731 ], [ -122.291093, 37.802528 ], [ -122.290621, 37.803782 ], [ -122.291093, 37.804020 ], [ -122.291822, 37.804257 ], [ -122.292337, 37.804800 ], [ -122.293711, 37.805071 ], [ -122.293539, 37.805410 ], [ -122.293110, 37.806902 ], [ -122.292037, 37.809886 ], [ -122.291994, 37.810191 ], [ -122.291565, 37.811445 ], [ -122.290835, 37.813208 ], [ -122.289977, 37.815615 ], [ -122.289720, 37.816497 ], [ -122.289677, 37.817005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410500", "GEOID10": "06001410500", "NAME10": "4105", "NAMELSAD10": "Census Tract 4105", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 724054, "AWATER10": 0, "INTPTLAT10": "+37.8100197", "INTPTLON10": "-122.2889560" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.817005 ], [ -122.289205, 37.816802 ], [ -122.288132, 37.816531 ], [ -122.287359, 37.816395 ], [ -122.284012, 37.815615 ], [ -122.288690, 37.802765 ], [ -122.289805, 37.802731 ], [ -122.291093, 37.802528 ], [ -122.290621, 37.803782 ], [ -122.291093, 37.804020 ], [ -122.291822, 37.804257 ], [ -122.292295, 37.804800 ], [ -122.293711, 37.805071 ], [ -122.293539, 37.805410 ], [ -122.293110, 37.806902 ], [ -122.292037, 37.809886 ], [ -122.291994, 37.810191 ], [ -122.291565, 37.811445 ], [ -122.290835, 37.813208 ], [ -122.289977, 37.815615 ], [ -122.289720, 37.816497 ], [ -122.289677, 37.817005 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402200", "GEOID10": "06001402200", "NAME10": "4022", "NAMELSAD10": "Census Tract 4022", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 712761, "AWATER10": 0, "INTPTLAT10": "+37.8063512", "INTPTLON10": "-122.2963076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816836 ], [ -122.289977, 37.815615 ], [ -122.290835, 37.813208 ], [ -122.291565, 37.811445 ], [ -122.291994, 37.810191 ], [ -122.292037, 37.809886 ], [ -122.293110, 37.806902 ], [ -122.293539, 37.805410 ], [ -122.293711, 37.805071 ], [ -122.292337, 37.804800 ], [ -122.291822, 37.804257 ], [ -122.291093, 37.804020 ], [ -122.290621, 37.803782 ], [ -122.291093, 37.802528 ], [ -122.295041, 37.801985 ], [ -122.296844, 37.801918 ], [ -122.298174, 37.802053 ], [ -122.299075, 37.802223 ], [ -122.299719, 37.802392 ], [ -122.300920, 37.802901 ], [ -122.301993, 37.803511 ], [ -122.302680, 37.804054 ], [ -122.303066, 37.804393 ], [ -122.303667, 37.805105 ], [ -122.304096, 37.805749 ], [ -122.304611, 37.806834 ], [ -122.304826, 37.807512 ], [ -122.304869, 37.808089 ], [ -122.304010, 37.807377 ], [ -122.302465, 37.806970 ], [ -122.302380, 37.807173 ], [ -122.301822, 37.806902 ], [ -122.298260, 37.806088 ], [ -122.292080, 37.813852 ], [ -122.290835, 37.815378 ], [ -122.290750, 37.815412 ], [ -122.290664, 37.815615 ], [ -122.289677, 37.816836 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "402200", "GEOID10": "06001402200", "NAME10": "4022", "NAMELSAD10": "Census Tract 4022", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 712761, "AWATER10": 0, "INTPTLAT10": "+37.8063512", "INTPTLON10": "-122.2963076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.816836 ], [ -122.289977, 37.815615 ], [ -122.290835, 37.813208 ], [ -122.291565, 37.811445 ], [ -122.291994, 37.810191 ], [ -122.292037, 37.809886 ], [ -122.293110, 37.806902 ], [ -122.293539, 37.805410 ], [ -122.293711, 37.805071 ], [ -122.292295, 37.804800 ], [ -122.291822, 37.804257 ], [ -122.291093, 37.804020 ], [ -122.290621, 37.803782 ], [ -122.291093, 37.802528 ], [ -122.295041, 37.801985 ], [ -122.296844, 37.801918 ], [ -122.298174, 37.802053 ], [ -122.299075, 37.802223 ], [ -122.299719, 37.802392 ], [ -122.300920, 37.802901 ], [ -122.301993, 37.803511 ], [ -122.302680, 37.804054 ], [ -122.303066, 37.804393 ], [ -122.303667, 37.805105 ], [ -122.304096, 37.805749 ], [ -122.304611, 37.806834 ], [ -122.304826, 37.807512 ], [ -122.304869, 37.808089 ], [ -122.304010, 37.807377 ], [ -122.302465, 37.806970 ], [ -122.302380, 37.807173 ], [ -122.301822, 37.806902 ], [ -122.298260, 37.806088 ], [ -122.292080, 37.813852 ], [ -122.290835, 37.815378 ], [ -122.290750, 37.815412 ], [ -122.290664, 37.815615 ], [ -122.289677, 37.816836 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "982000", "GEOID10": "06001982000", "NAME10": "9820", "NAMELSAD10": "Census Tract 9820", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1269472, "AWATER10": 269260, "INTPTLAT10": "+37.7961258", "INTPTLON10": "-122.2943959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287359, 37.802765 ], [ -122.285643, 37.802460 ], [ -122.283325, 37.801714 ], [ -122.281737, 37.801036 ], [ -122.279677, 37.800256 ], [ -122.280836, 37.798493 ], [ -122.281523, 37.797272 ], [ -122.282081, 37.796424 ], [ -122.283754, 37.794796 ], [ -122.284269, 37.793813 ], [ -122.294784, 37.792524 ], [ -122.314696, 37.794728 ], [ -122.313194, 37.795305 ], [ -122.311091, 37.795576 ], [ -122.307744, 37.795814 ], [ -122.304697, 37.796356 ], [ -122.303410, 37.796492 ], [ -122.300878, 37.796933 ], [ -122.300792, 37.797001 ], [ -122.300792, 37.797170 ], [ -122.300878, 37.797374 ], [ -122.298346, 37.797781 ], [ -122.294140, 37.798764 ], [ -122.290878, 37.799239 ], [ -122.290406, 37.799374 ], [ -122.290020, 37.799612 ], [ -122.289848, 37.799815 ], [ -122.289720, 37.800086 ], [ -122.289591, 37.800697 ], [ -122.289205, 37.801375 ], [ -122.288733, 37.802528 ], [ -122.288690, 37.802765 ], [ -122.287359, 37.802765 ] ] ] } } , @@ -2746,7 +2746,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "983200", "GEOID10": "06001983200", "NAME10": "9832", "NAMELSAD10": "Census Tract 9832", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 493636, "AWATER10": 163937, "INTPTLAT10": "+37.7959455", "INTPTLON10": "-122.2772680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.279549, 37.800459 ], [ -122.279463, 37.800392 ], [ -122.279506, 37.800358 ], [ -122.279162, 37.800052 ], [ -122.278433, 37.799578 ], [ -122.270150, 37.796526 ], [ -122.272811, 37.792219 ], [ -122.273669, 37.792219 ], [ -122.274184, 37.791337 ], [ -122.274957, 37.791812 ], [ -122.276287, 37.792422 ], [ -122.284269, 37.793813 ], [ -122.283754, 37.794796 ], [ -122.282081, 37.796424 ], [ -122.281523, 37.797272 ], [ -122.280836, 37.798493 ], [ -122.279549, 37.800459 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403400", "GEOID10": "06001403400", "NAME10": "4034", "NAMELSAD10": "Census Tract 4034", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660252, "AWATER10": 602433, "INTPTLAT10": "+37.8047578", "INTPTLON10": "-122.2616693" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.262297, 37.810937 ], [ -122.260838, 37.810733 ], [ -122.260451, 37.810632 ], [ -122.260194, 37.810530 ], [ -122.259250, 37.809750 ], [ -122.258477, 37.809377 ], [ -122.257361, 37.809106 ], [ -122.256160, 37.809004 ], [ -122.256331, 37.808529 ], [ -122.256331, 37.808258 ], [ -122.256289, 37.807987 ], [ -122.255988, 37.807478 ], [ -122.255516, 37.807648 ], [ -122.254915, 37.807750 ], [ -122.253242, 37.807750 ], [ -122.252984, 37.807919 ], [ -122.252898, 37.808055 ], [ -122.252769, 37.808733 ], [ -122.251139, 37.808665 ], [ -122.250452, 37.808869 ], [ -122.250109, 37.809106 ], [ -122.249165, 37.808394 ], [ -122.249293, 37.808224 ], [ -122.250838, 37.804698 ], [ -122.251139, 37.804427 ], [ -122.251396, 37.804291 ], [ -122.252898, 37.804054 ], [ -122.253284, 37.803850 ], [ -122.253456, 37.803613 ], [ -122.253799, 37.802833 ], [ -122.254443, 37.802019 ], [ -122.254443, 37.800697 ], [ -122.254615, 37.800392 ], [ -122.254958, 37.800120 ], [ -122.255602, 37.799985 ], [ -122.256589, 37.800019 ], [ -122.257404, 37.799849 ], [ -122.258091, 37.799510 ], [ -122.258563, 37.799137 ], [ -122.258992, 37.798594 ], [ -122.259121, 37.798493 ], [ -122.259336, 37.798459 ], [ -122.260880, 37.798967 ], [ -122.261310, 37.799069 ], [ -122.262254, 37.799137 ], [ -122.262597, 37.799239 ], [ -122.267318, 37.801070 ], [ -122.264314, 37.805919 ], [ -122.265515, 37.806359 ], [ -122.266030, 37.806970 ], [ -122.264571, 37.807953 ], [ -122.264528, 37.808123 ], [ -122.264228, 37.808156 ], [ -122.263713, 37.808360 ], [ -122.263412, 37.808597 ], [ -122.263155, 37.808902 ], [ -122.262769, 37.810123 ], [ -122.263069, 37.810937 ], [ -122.262297, 37.810937 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403400", "GEOID10": "06001403400", "NAME10": "4034", "NAMELSAD10": "Census Tract 4034", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660252, "AWATER10": 602433, "INTPTLAT10": "+37.8047578", "INTPTLON10": "-122.2616693" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.262297, 37.810937 ], [ -122.260838, 37.810733 ], [ -122.260451, 37.810632 ], [ -122.260194, 37.810530 ], [ -122.259250, 37.809750 ], [ -122.258477, 37.809377 ], [ -122.257361, 37.809106 ], [ -122.256160, 37.809004 ], [ -122.256331, 37.808529 ], [ -122.256331, 37.808258 ], [ -122.256289, 37.807987 ], [ -122.255988, 37.807478 ], [ -122.255516, 37.807648 ], [ -122.254915, 37.807750 ], [ -122.253242, 37.807750 ], [ -122.252984, 37.807919 ], [ -122.252898, 37.808055 ], [ -122.252769, 37.808733 ], [ -122.251139, 37.808665 ], [ -122.250452, 37.808869 ], [ -122.250109, 37.809106 ], [ -122.249165, 37.808394 ], [ -122.249293, 37.808224 ], [ -122.250838, 37.804698 ], [ -122.251139, 37.804427 ], [ -122.251396, 37.804291 ], [ -122.252898, 37.804054 ], [ -122.253284, 37.803850 ], [ -122.253456, 37.803613 ], [ -122.253799, 37.802833 ], [ -122.254443, 37.802019 ], [ -122.254443, 37.800697 ], [ -122.254615, 37.800392 ], [ -122.254958, 37.800120 ], [ -122.255602, 37.799985 ], [ -122.256589, 37.800019 ], [ -122.257404, 37.799849 ], [ -122.258220, 37.799408 ], [ -122.258563, 37.799137 ], [ -122.258992, 37.798594 ], [ -122.259121, 37.798493 ], [ -122.259336, 37.798459 ], [ -122.260880, 37.798967 ], [ -122.261310, 37.799069 ], [ -122.262254, 37.799137 ], [ -122.262597, 37.799239 ], [ -122.267318, 37.801070 ], [ -122.264314, 37.805919 ], [ -122.265515, 37.806359 ], [ -122.266030, 37.806970 ], [ -122.264571, 37.807953 ], [ -122.264528, 37.808123 ], [ -122.264228, 37.808156 ], [ -122.263713, 37.808360 ], [ -122.263412, 37.808597 ], [ -122.263155, 37.808902 ], [ -122.262769, 37.810123 ], [ -122.263069, 37.810937 ], [ -122.262297, 37.810937 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406000", "GEOID10": "06001406000", "NAME10": "4060", "NAMELSAD10": "Census Tract 4060", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2114682, "AWATER10": 566057, "INTPTLAT10": "+37.7875675", "INTPTLON10": "-122.2461840" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.257147, 37.798730 ], [ -122.247190, 37.789913 ], [ -122.245474, 37.789133 ], [ -122.235904, 37.783401 ], [ -122.236676, 37.782621 ], [ -122.238607, 37.783774 ], [ -122.238736, 37.783571 ], [ -122.238693, 37.783333 ], [ -122.238564, 37.783164 ], [ -122.237577, 37.782485 ], [ -122.237277, 37.782044 ], [ -122.237105, 37.780755 ], [ -122.236934, 37.780111 ], [ -122.236633, 37.778245 ], [ -122.236633, 37.777567 ], [ -122.236333, 37.777058 ], [ -122.236032, 37.776787 ], [ -122.236333, 37.776617 ], [ -122.236290, 37.775566 ], [ -122.236161, 37.774751 ], [ -122.235990, 37.773870 ], [ -122.235818, 37.773564 ], [ -122.235904, 37.773259 ], [ -122.235861, 37.772580 ], [ -122.236547, 37.771732 ], [ -122.240667, 37.774311 ], [ -122.244873, 37.777363 ], [ -122.244830, 37.779127 ], [ -122.244959, 37.780925 ], [ -122.246161, 37.783435 ], [ -122.250581, 37.786114 ], [ -122.254786, 37.786725 ], [ -122.255559, 37.786318 ], [ -122.256675, 37.785436 ], [ -122.257876, 37.784215 ], [ -122.268391, 37.788014 ], [ -122.264442, 37.790693 ], [ -122.263026, 37.790828 ], [ -122.262983, 37.791168 ], [ -122.263241, 37.791541 ], [ -122.262726, 37.791575 ], [ -122.262039, 37.792388 ], [ -122.261696, 37.793406 ], [ -122.261095, 37.794050 ], [ -122.261181, 37.794593 ], [ -122.261138, 37.795102 ], [ -122.260795, 37.795271 ], [ -122.260065, 37.795441 ], [ -122.259851, 37.795712 ], [ -122.259593, 37.796255 ], [ -122.259464, 37.796628 ], [ -122.259464, 37.797001 ], [ -122.259550, 37.797340 ], [ -122.259464, 37.797882 ], [ -122.260280, 37.798289 ], [ -122.259421, 37.798018 ], [ -122.258735, 37.798018 ], [ -122.259378, 37.798323 ], [ -122.259378, 37.798459 ], [ -122.259121, 37.798357 ], [ -122.258091, 37.798357 ], [ -122.257147, 37.798730 ] ] ] } } , @@ -2768,7 +2768,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423902", "GEOID10": "06001423902", "NAME10": "4239.02", "NAMELSAD10": "Census Tract 4239.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 319790, "AWATER10": 0, "INTPTLAT10": "+37.8547152", "INTPTLON10": "-122.2573724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.253113, 37.857101 ], [ -122.252555, 37.851103 ], [ -122.253070, 37.850866 ], [ -122.252941, 37.851238 ], [ -122.253370, 37.853577 ], [ -122.255087, 37.853407 ], [ -122.256160, 37.853204 ], [ -122.257233, 37.853170 ], [ -122.260237, 37.852729 ], [ -122.261825, 37.852594 ], [ -122.262468, 37.855644 ], [ -122.262425, 37.855881 ], [ -122.253113, 37.857101 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423800", "GEOID10": "06001423800", "NAME10": "4238", "NAMELSAD10": "Census Tract 4238", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1041971, "AWATER10": 0, "INTPTLAT10": "+37.8547587", "INTPTLON10": "-122.2441385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.244315, 37.858151 ], [ -122.243843, 37.858117 ], [ -122.243285, 37.857982 ], [ -122.242727, 37.857710 ], [ -122.242041, 37.857507 ], [ -122.241697, 37.857236 ], [ -122.239380, 37.857168 ], [ -122.238564, 37.857338 ], [ -122.237706, 37.857304 ], [ -122.237320, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.235174, 37.857507 ], [ -122.234960, 37.857507 ], [ -122.234702, 37.857134 ], [ -122.234573, 37.856525 ], [ -122.234187, 37.852526 ], [ -122.234530, 37.852560 ], [ -122.244101, 37.851815 ], [ -122.246118, 37.851815 ], [ -122.247405, 37.851679 ], [ -122.248607, 37.851442 ], [ -122.249765, 37.851442 ], [ -122.250795, 37.851205 ], [ -122.252426, 37.851103 ], [ -122.252555, 37.851103 ], [ -122.253113, 37.857101 ], [ -122.252812, 37.857101 ], [ -122.252169, 37.857236 ], [ -122.252297, 37.857372 ], [ -122.252297, 37.857507 ], [ -122.252169, 37.857643 ], [ -122.251096, 37.857677 ], [ -122.250752, 37.857778 ], [ -122.248993, 37.857846 ], [ -122.244315, 37.858151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423800", "GEOID10": "06001423800", "NAME10": "4238", "NAMELSAD10": "Census Tract 4238", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1041971, "AWATER10": 0, "INTPTLAT10": "+37.8547587", "INTPTLON10": "-122.2441385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.244315, 37.858151 ], [ -122.243843, 37.858117 ], [ -122.243285, 37.857982 ], [ -122.242727, 37.857710 ], [ -122.242041, 37.857507 ], [ -122.241697, 37.857236 ], [ -122.239380, 37.857168 ], [ -122.238564, 37.857338 ], [ -122.237706, 37.857304 ], [ -122.237320, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.235174, 37.857507 ], [ -122.234960, 37.857507 ], [ -122.234702, 37.857134 ], [ -122.234573, 37.856525 ], [ -122.234187, 37.852526 ], [ -122.234530, 37.852560 ], [ -122.244101, 37.851815 ], [ -122.246118, 37.851815 ], [ -122.247405, 37.851679 ], [ -122.248607, 37.851442 ], [ -122.249765, 37.851442 ], [ -122.250795, 37.851205 ], [ -122.252426, 37.851103 ], [ -122.252555, 37.851103 ], [ -122.253113, 37.857101 ], [ -122.252812, 37.857101 ], [ -122.252169, 37.857236 ], [ -122.252297, 37.857372 ], [ -122.252297, 37.857507 ], [ -122.252169, 37.857643 ], [ -122.251096, 37.857677 ], [ -122.250710, 37.857778 ], [ -122.244315, 37.858151 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400200", "GEOID10": "06001400200", "NAME10": "4002", "NAMELSAD10": "Census Tract 4002", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 595106, "AWATER10": 0, "INTPTLAT10": "+37.8481710", "INTPTLON10": "-122.2495763" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.241912, 37.852018 ], [ -122.241998, 37.851374 ], [ -122.242427, 37.850832 ], [ -122.243629, 37.850459 ], [ -122.244058, 37.850256 ], [ -122.243543, 37.849442 ], [ -122.243328, 37.849273 ], [ -122.243285, 37.849137 ], [ -122.243714, 37.848528 ], [ -122.247319, 37.846562 ], [ -122.254958, 37.843546 ], [ -122.257919, 37.842597 ], [ -122.252340, 37.849476 ], [ -122.252555, 37.851103 ], [ -122.250795, 37.851205 ], [ -122.249765, 37.851442 ], [ -122.248607, 37.851442 ], [ -122.247405, 37.851679 ], [ -122.246118, 37.851815 ], [ -122.244101, 37.851815 ], [ -122.241912, 37.852018 ] ] ] } } , @@ -2776,13 +2776,13 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404102", "GEOID10": "06001404102", "NAME10": "4041.02", "NAMELSAD10": "Census Tract 4041.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 230172, "AWATER10": 0, "INTPTLAT10": "+37.8260219", "INTPTLON10": "-122.2510667" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.249336, 37.828701 ], [ -122.248006, 37.827379 ], [ -122.247705, 37.827006 ], [ -122.247577, 37.826667 ], [ -122.247663, 37.826226 ], [ -122.248135, 37.824802 ], [ -122.250237, 37.822870 ], [ -122.253757, 37.825447 ], [ -122.253456, 37.825718 ], [ -122.254958, 37.826904 ], [ -122.256761, 37.827616 ], [ -122.256203, 37.828497 ], [ -122.256117, 37.828430 ], [ -122.255130, 37.828124 ], [ -122.253885, 37.827582 ], [ -122.252469, 37.826362 ], [ -122.249336, 37.828701 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220626, 37.860218 ], [ -122.220283, 37.859710 ], [ -122.219939, 37.859506 ], [ -122.219768, 37.859472 ], [ -122.219510, 37.859574 ], [ -122.219381, 37.859540 ], [ -122.219424, 37.859269 ], [ -122.219639, 37.858896 ], [ -122.219639, 37.858727 ], [ -122.219210, 37.858354 ], [ -122.219338, 37.857643 ], [ -122.219124, 37.857507 ], [ -122.218652, 37.857338 ], [ -122.217879, 37.857372 ], [ -122.217879, 37.856558 ], [ -122.217622, 37.856457 ], [ -122.216635, 37.856626 ], [ -122.216592, 37.856389 ], [ -122.216721, 37.856253 ], [ -122.216721, 37.856084 ], [ -122.216549, 37.856016 ], [ -122.216249, 37.856016 ], [ -122.215734, 37.856220 ], [ -122.215304, 37.856152 ], [ -122.215004, 37.856253 ], [ -122.214661, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214446, 37.856016 ], [ -122.214103, 37.855881 ], [ -122.214017, 37.855677 ], [ -122.213330, 37.856220 ], [ -122.212601, 37.856931 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210970, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.208180, 37.851747 ], [ -122.207794, 37.851747 ], [ -122.207322, 37.851510 ], [ -122.204103, 37.851374 ], [ -122.203202, 37.850527 ], [ -122.201743, 37.848697 ], [ -122.200670, 37.847748 ], [ -122.200670, 37.847579 ], [ -122.197623, 37.845342 ], [ -122.196765, 37.844834 ], [ -122.195263, 37.843580 ], [ -122.195306, 37.842800 ], [ -122.198739, 37.843614 ], [ -122.199683, 37.843580 ], [ -122.200241, 37.843343 ], [ -122.200928, 37.843207 ], [ -122.201314, 37.843241 ], [ -122.201614, 37.843410 ], [ -122.202344, 37.843478 ], [ -122.203460, 37.843207 ], [ -122.204361, 37.842766 ], [ -122.204618, 37.842461 ], [ -122.205262, 37.842292 ], [ -122.206593, 37.841784 ], [ -122.206850, 37.841750 ], [ -122.207751, 37.841851 ], [ -122.208567, 37.841750 ], [ -122.209039, 37.841614 ], [ -122.209253, 37.841479 ], [ -122.209339, 37.841343 ], [ -122.209511, 37.840699 ], [ -122.210584, 37.839038 ], [ -122.212214, 37.834598 ], [ -122.212515, 37.834293 ], [ -122.213845, 37.833412 ], [ -122.214532, 37.832802 ], [ -122.215176, 37.831684 ], [ -122.215390, 37.831989 ], [ -122.215605, 37.832124 ], [ -122.216549, 37.832531 ], [ -122.216678, 37.832531 ], [ -122.217021, 37.832666 ], [ -122.219768, 37.836530 ], [ -122.222214, 37.838428 ], [ -122.222815, 37.839038 ], [ -122.223973, 37.840462 ], [ -122.225432, 37.842563 ], [ -122.226291, 37.843546 ], [ -122.227192, 37.844868 ], [ -122.227621, 37.845749 ], [ -122.227750, 37.846189 ], [ -122.227750, 37.846901 ], [ -122.227836, 37.847579 ], [ -122.230711, 37.848900 ], [ -122.228608, 37.849036 ], [ -122.231569, 37.849714 ], [ -122.231569, 37.850256 ], [ -122.231741, 37.850290 ], [ -122.232385, 37.850696 ], [ -122.232943, 37.851238 ], [ -122.233500, 37.852052 ], [ -122.233715, 37.852221 ], [ -122.234144, 37.852424 ], [ -122.234101, 37.852526 ], [ -122.233672, 37.852357 ], [ -122.233415, 37.852120 ], [ -122.232985, 37.851543 ], [ -122.232771, 37.851442 ], [ -122.232342, 37.851408 ], [ -122.231698, 37.850967 ], [ -122.231312, 37.850832 ], [ -122.228136, 37.850256 ], [ -122.226763, 37.849951 ], [ -122.226591, 37.850357 ], [ -122.225904, 37.850222 ], [ -122.225389, 37.850222 ], [ -122.225046, 37.850324 ], [ -122.224832, 37.850662 ], [ -122.224402, 37.850798 ], [ -122.224188, 37.851001 ], [ -122.224188, 37.851238 ], [ -122.224574, 37.851645 ], [ -122.224617, 37.851848 ], [ -122.223759, 37.852018 ], [ -122.223544, 37.852187 ], [ -122.223544, 37.852628 ], [ -122.223630, 37.852831 ], [ -122.223845, 37.853034 ], [ -122.224145, 37.853475 ], [ -122.223973, 37.853610 ], [ -122.223287, 37.853746 ], [ -122.223158, 37.853915 ], [ -122.223158, 37.854085 ], [ -122.223544, 37.854932 ], [ -122.223544, 37.855101 ], [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ], [ -122.222128, 37.854966 ], [ -122.221785, 37.855068 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ], [ -122.222342, 37.856931 ], [ -122.222257, 37.857304 ], [ -122.222471, 37.857507 ], [ -122.222600, 37.857643 ], [ -122.222643, 37.857812 ], [ -122.222042, 37.858354 ], [ -122.222042, 37.858896 ], [ -122.221441, 37.858998 ], [ -122.221098, 37.859913 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220626, 37.860218 ], [ -122.220283, 37.859710 ], [ -122.219939, 37.859506 ], [ -122.219768, 37.859472 ], [ -122.219510, 37.859574 ], [ -122.219381, 37.859540 ], [ -122.219424, 37.859269 ], [ -122.219639, 37.858896 ], [ -122.219639, 37.858727 ], [ -122.219296, 37.858490 ], [ -122.219210, 37.858354 ], [ -122.219338, 37.857643 ], [ -122.219124, 37.857507 ], [ -122.218652, 37.857338 ], [ -122.217879, 37.857372 ], [ -122.217879, 37.856558 ], [ -122.217622, 37.856457 ], [ -122.216635, 37.856626 ], [ -122.216592, 37.856389 ], [ -122.216721, 37.856253 ], [ -122.216721, 37.856084 ], [ -122.216549, 37.856016 ], [ -122.216249, 37.856016 ], [ -122.215734, 37.856220 ], [ -122.215304, 37.856152 ], [ -122.215004, 37.856253 ], [ -122.214661, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214446, 37.856016 ], [ -122.214103, 37.855881 ], [ -122.214017, 37.855677 ], [ -122.213330, 37.856220 ], [ -122.212601, 37.856931 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210970, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.208180, 37.851747 ], [ -122.207794, 37.851747 ], [ -122.207322, 37.851510 ], [ -122.204103, 37.851374 ], [ -122.203202, 37.850527 ], [ -122.201743, 37.848697 ], [ -122.200670, 37.847748 ], [ -122.200670, 37.847579 ], [ -122.197623, 37.845342 ], [ -122.196765, 37.844834 ], [ -122.195263, 37.843580 ], [ -122.195306, 37.842800 ], [ -122.198739, 37.843614 ], [ -122.199683, 37.843580 ], [ -122.200241, 37.843343 ], [ -122.200928, 37.843207 ], [ -122.201314, 37.843241 ], [ -122.201614, 37.843410 ], [ -122.202344, 37.843478 ], [ -122.203460, 37.843207 ], [ -122.204361, 37.842766 ], [ -122.204618, 37.842461 ], [ -122.205262, 37.842292 ], [ -122.206593, 37.841784 ], [ -122.206850, 37.841750 ], [ -122.207751, 37.841851 ], [ -122.208567, 37.841750 ], [ -122.209039, 37.841614 ], [ -122.209253, 37.841479 ], [ -122.209339, 37.841343 ], [ -122.209511, 37.840699 ], [ -122.210584, 37.839038 ], [ -122.212214, 37.834598 ], [ -122.212515, 37.834293 ], [ -122.213845, 37.833412 ], [ -122.214532, 37.832802 ], [ -122.215176, 37.831684 ], [ -122.215390, 37.831989 ], [ -122.215605, 37.832124 ], [ -122.216549, 37.832531 ], [ -122.216678, 37.832531 ], [ -122.217021, 37.832666 ], [ -122.219768, 37.836530 ], [ -122.222214, 37.838428 ], [ -122.222815, 37.839038 ], [ -122.223973, 37.840462 ], [ -122.225432, 37.842563 ], [ -122.226291, 37.843546 ], [ -122.227192, 37.844868 ], [ -122.227621, 37.845749 ], [ -122.227750, 37.846189 ], [ -122.227750, 37.846901 ], [ -122.227836, 37.847579 ], [ -122.230711, 37.848900 ], [ -122.228608, 37.849036 ], [ -122.231569, 37.849714 ], [ -122.231569, 37.850256 ], [ -122.231741, 37.850290 ], [ -122.232385, 37.850696 ], [ -122.232943, 37.851238 ], [ -122.233500, 37.852052 ], [ -122.233715, 37.852221 ], [ -122.234144, 37.852424 ], [ -122.234101, 37.852526 ], [ -122.233672, 37.852357 ], [ -122.233415, 37.852120 ], [ -122.232985, 37.851543 ], [ -122.232771, 37.851442 ], [ -122.232342, 37.851408 ], [ -122.231698, 37.850967 ], [ -122.231312, 37.850832 ], [ -122.228136, 37.850256 ], [ -122.226763, 37.849951 ], [ -122.226591, 37.850357 ], [ -122.225904, 37.850222 ], [ -122.225389, 37.850222 ], [ -122.225046, 37.850324 ], [ -122.224832, 37.850662 ], [ -122.224402, 37.850798 ], [ -122.224188, 37.851001 ], [ -122.224188, 37.851238 ], [ -122.224574, 37.851645 ], [ -122.224617, 37.851848 ], [ -122.223759, 37.852018 ], [ -122.223544, 37.852187 ], [ -122.223544, 37.852628 ], [ -122.223630, 37.852831 ], [ -122.223845, 37.853034 ], [ -122.224145, 37.853475 ], [ -122.223973, 37.853610 ], [ -122.223287, 37.853746 ], [ -122.223158, 37.853915 ], [ -122.223158, 37.854085 ], [ -122.223544, 37.854932 ], [ -122.223544, 37.855101 ], [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ], [ -122.222128, 37.854966 ], [ -122.221785, 37.855068 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ], [ -122.222342, 37.856931 ], [ -122.222257, 37.857304 ], [ -122.222471, 37.857507 ], [ -122.222600, 37.857643 ], [ -122.222643, 37.857812 ], [ -122.222042, 37.858354 ], [ -122.222042, 37.858896 ], [ -122.221441, 37.858998 ], [ -122.221098, 37.859913 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404300", "GEOID10": "06001404300", "NAME10": "4043", "NAMELSAD10": "Census Tract 4043", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1830780, "AWATER10": 25272, "INTPTLAT10": "+37.8451917", "INTPTLON10": "-122.2381008" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.234530, 37.852560 ], [ -122.234101, 37.852526 ], [ -122.234144, 37.852424 ], [ -122.233715, 37.852221 ], [ -122.233372, 37.851916 ], [ -122.232943, 37.851238 ], [ -122.232385, 37.850696 ], [ -122.231741, 37.850290 ], [ -122.231569, 37.850256 ], [ -122.231569, 37.849714 ], [ -122.228608, 37.849036 ], [ -122.230711, 37.848900 ], [ -122.227836, 37.847579 ], [ -122.227750, 37.846901 ], [ -122.227750, 37.846189 ], [ -122.227621, 37.845749 ], [ -122.227192, 37.844868 ], [ -122.226291, 37.843546 ], [ -122.225432, 37.842563 ], [ -122.224832, 37.841682 ], [ -122.225389, 37.841885 ], [ -122.225904, 37.842156 ], [ -122.226763, 37.842834 ], [ -122.227235, 37.842936 ], [ -122.227921, 37.842868 ], [ -122.228136, 37.842800 ], [ -122.228651, 37.842495 ], [ -122.228909, 37.842428 ], [ -122.230668, 37.842495 ], [ -122.231741, 37.842800 ], [ -122.232599, 37.842733 ], [ -122.233200, 37.842597 ], [ -122.233415, 37.842631 ], [ -122.233672, 37.842529 ], [ -122.233844, 37.842563 ], [ -122.234101, 37.842495 ], [ -122.234445, 37.842495 ], [ -122.235003, 37.842394 ], [ -122.235260, 37.842292 ], [ -122.235560, 37.842055 ], [ -122.236204, 37.841343 ], [ -122.236419, 37.841174 ], [ -122.236891, 37.841004 ], [ -122.237449, 37.840902 ], [ -122.239466, 37.840902 ], [ -122.239895, 37.840733 ], [ -122.241225, 37.839886 ], [ -122.243843, 37.839377 ], [ -122.249336, 37.837174 ], [ -122.250795, 37.837140 ], [ -122.245388, 37.845783 ], [ -122.244186, 37.847918 ], [ -122.243285, 37.849137 ], [ -122.243328, 37.849273 ], [ -122.243543, 37.849442 ], [ -122.244058, 37.850256 ], [ -122.243629, 37.850459 ], [ -122.242427, 37.850832 ], [ -122.241998, 37.851374 ], [ -122.241912, 37.852018 ], [ -122.241054, 37.852018 ], [ -122.234530, 37.852560 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400100", "GEOID10": "06001400100", "NAME10": "4001", "NAMELSAD10": "Census Tract 4001", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6882245, "AWATER10": 0, "INTPTLAT10": "+37.8675947", "INTPTLON10": "-122.2319033" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.221055, 37.860218 ], [ -122.221098, 37.859913 ], [ -122.221441, 37.858998 ], [ -122.222042, 37.858896 ], [ -122.222042, 37.858354 ], [ -122.222643, 37.857812 ], [ -122.222600, 37.857643 ], [ -122.222471, 37.857507 ], [ -122.222257, 37.857304 ], [ -122.222342, 37.856931 ], [ -122.221656, 37.855949 ], [ -122.221656, 37.855169 ], [ -122.221785, 37.855068 ], [ -122.222128, 37.854966 ], [ -122.222342, 37.854966 ], [ -122.222600, 37.854864 ], [ -122.222857, 37.854898 ], [ -122.223287, 37.855101 ], [ -122.223544, 37.855101 ], [ -122.223544, 37.854932 ], [ -122.223158, 37.854085 ], [ -122.223158, 37.853915 ], [ -122.223287, 37.853746 ], [ -122.223973, 37.853610 ], [ -122.224145, 37.853475 ], [ -122.223845, 37.853034 ], [ -122.223630, 37.852831 ], [ -122.223544, 37.852628 ], [ -122.223544, 37.852187 ], [ -122.223759, 37.852018 ], [ -122.224617, 37.851848 ], [ -122.224574, 37.851645 ], [ -122.224188, 37.851238 ], [ -122.224188, 37.851001 ], [ -122.224402, 37.850798 ], [ -122.224832, 37.850662 ], [ -122.225046, 37.850324 ], [ -122.225132, 37.850290 ], [ -122.225389, 37.850222 ], [ -122.225904, 37.850222 ], [ -122.226591, 37.850357 ], [ -122.226763, 37.849951 ], [ -122.228136, 37.850256 ], [ -122.231441, 37.850866 ], [ -122.231998, 37.851137 ], [ -122.232342, 37.851408 ], [ -122.232771, 37.851442 ], [ -122.232985, 37.851543 ], [ -122.233543, 37.852255 ], [ -122.233887, 37.852458 ], [ -122.234187, 37.852526 ], [ -122.234573, 37.856525 ], [ -122.234702, 37.857134 ], [ -122.234960, 37.857507 ], [ -122.235174, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.237320, 37.857507 ], [ -122.237706, 37.857304 ], [ -122.238564, 37.857338 ], [ -122.239380, 37.857168 ], [ -122.241697, 37.857236 ], [ -122.242041, 37.857507 ], [ -122.242255, 37.857575 ], [ -122.243328, 37.858727 ], [ -122.243929, 37.858591 ], [ -122.243929, 37.858930 ], [ -122.244015, 37.858998 ], [ -122.244015, 37.859235 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ] ] ], [ [ [ -122.215519, 37.860218 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212601, 37.856931 ], [ -122.213674, 37.855915 ], [ -122.214017, 37.855677 ], [ -122.214103, 37.855881 ], [ -122.214446, 37.856016 ], [ -122.213802, 37.856016 ], [ -122.214661, 37.856287 ], [ -122.215004, 37.856253 ], [ -122.215304, 37.856152 ], [ -122.215734, 37.856220 ], [ -122.216249, 37.856016 ], [ -122.216549, 37.856016 ], [ -122.216721, 37.856084 ], [ -122.216721, 37.856253 ], [ -122.216592, 37.856389 ], [ -122.216635, 37.856626 ], [ -122.217622, 37.856457 ], [ -122.217879, 37.856558 ], [ -122.217879, 37.857372 ], [ -122.218652, 37.857338 ], [ -122.219124, 37.857507 ], [ -122.219338, 37.857643 ], [ -122.219210, 37.858354 ], [ -122.219639, 37.858727 ], [ -122.219639, 37.858896 ], [ -122.219424, 37.859269 ], [ -122.219381, 37.859540 ], [ -122.219510, 37.859574 ], [ -122.219768, 37.859472 ], [ -122.219939, 37.859506 ], [ -122.220283, 37.859710 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400100", "GEOID10": "06001400100", "NAME10": "4001", "NAMELSAD10": "Census Tract 4001", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6882245, "AWATER10": 0, "INTPTLAT10": "+37.8675947", "INTPTLON10": "-122.2319033" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.221055, 37.860218 ], [ -122.221098, 37.859913 ], [ -122.221441, 37.858998 ], [ -122.222042, 37.858896 ], [ -122.222042, 37.858354 ], [ -122.222643, 37.857812 ], [ -122.222600, 37.857643 ], [ -122.222471, 37.857507 ], [ -122.222257, 37.857304 ], [ -122.222342, 37.856931 ], [ -122.221656, 37.855949 ], [ -122.221656, 37.855169 ], [ -122.221785, 37.855068 ], [ -122.222128, 37.854966 ], [ -122.222342, 37.854966 ], [ -122.222600, 37.854864 ], [ -122.222857, 37.854898 ], [ -122.223287, 37.855101 ], [ -122.223544, 37.855101 ], [ -122.223544, 37.854932 ], [ -122.223158, 37.854085 ], [ -122.223158, 37.853915 ], [ -122.223287, 37.853746 ], [ -122.223973, 37.853610 ], [ -122.224145, 37.853475 ], [ -122.223845, 37.853034 ], [ -122.223630, 37.852831 ], [ -122.223544, 37.852628 ], [ -122.223544, 37.852187 ], [ -122.223759, 37.852018 ], [ -122.224617, 37.851848 ], [ -122.224574, 37.851645 ], [ -122.224188, 37.851238 ], [ -122.224188, 37.851001 ], [ -122.224402, 37.850798 ], [ -122.224832, 37.850662 ], [ -122.225046, 37.850324 ], [ -122.225132, 37.850290 ], [ -122.225389, 37.850222 ], [ -122.225904, 37.850222 ], [ -122.226591, 37.850357 ], [ -122.226763, 37.849951 ], [ -122.228136, 37.850256 ], [ -122.231441, 37.850866 ], [ -122.231998, 37.851137 ], [ -122.232342, 37.851408 ], [ -122.232771, 37.851442 ], [ -122.232985, 37.851543 ], [ -122.233543, 37.852255 ], [ -122.233887, 37.852458 ], [ -122.234187, 37.852526 ], [ -122.234573, 37.856525 ], [ -122.234702, 37.857134 ], [ -122.234960, 37.857507 ], [ -122.235174, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.237320, 37.857507 ], [ -122.237706, 37.857304 ], [ -122.238564, 37.857338 ], [ -122.239380, 37.857168 ], [ -122.241697, 37.857236 ], [ -122.242041, 37.857507 ], [ -122.242255, 37.857575 ], [ -122.243328, 37.858727 ], [ -122.243929, 37.858591 ], [ -122.243929, 37.858930 ], [ -122.244015, 37.858998 ], [ -122.244015, 37.859235 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ] ] ], [ [ [ -122.215519, 37.860218 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212601, 37.856931 ], [ -122.213674, 37.855915 ], [ -122.214017, 37.855677 ], [ -122.214103, 37.855881 ], [ -122.214446, 37.856016 ], [ -122.213802, 37.856016 ], [ -122.214661, 37.856287 ], [ -122.215004, 37.856253 ], [ -122.215304, 37.856152 ], [ -122.215734, 37.856220 ], [ -122.216249, 37.856016 ], [ -122.216549, 37.856016 ], [ -122.216721, 37.856084 ], [ -122.216721, 37.856253 ], [ -122.216592, 37.856389 ], [ -122.216635, 37.856626 ], [ -122.217622, 37.856457 ], [ -122.217879, 37.856558 ], [ -122.217879, 37.857372 ], [ -122.218652, 37.857338 ], [ -122.219124, 37.857507 ], [ -122.219338, 37.857643 ], [ -122.219210, 37.858354 ], [ -122.219296, 37.858490 ], [ -122.219639, 37.858727 ], [ -122.219639, 37.858896 ], [ -122.219424, 37.859269 ], [ -122.219381, 37.859540 ], [ -122.219510, 37.859574 ], [ -122.219768, 37.859472 ], [ -122.219939, 37.859506 ], [ -122.220283, 37.859710 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "426200", "GEOID10": "06001426200", "NAME10": "4262", "NAMELSAD10": "Census Tract 4262", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1353796, "AWATER10": 0, "INTPTLAT10": "+37.8246260", "INTPTLON10": "-122.2406227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.237062, 37.830836 ], [ -122.236547, 37.830565 ], [ -122.235260, 37.830531 ], [ -122.232299, 37.825074 ], [ -122.231956, 37.824565 ], [ -122.231698, 37.824430 ], [ -122.231526, 37.824430 ], [ -122.231741, 37.824260 ], [ -122.232256, 37.824158 ], [ -122.232642, 37.823989 ], [ -122.233801, 37.823040 ], [ -122.234144, 37.822938 ], [ -122.234445, 37.823074 ], [ -122.234530, 37.823175 ], [ -122.235389, 37.823040 ], [ -122.235818, 37.823311 ], [ -122.236032, 37.823311 ], [ -122.236204, 37.823277 ], [ -122.236333, 37.823175 ], [ -122.236462, 37.823006 ], [ -122.236505, 37.822769 ], [ -122.237406, 37.822057 ], [ -122.237921, 37.821752 ], [ -122.238307, 37.821209 ], [ -122.238393, 37.820972 ], [ -122.238307, 37.820531 ], [ -122.238007, 37.820565 ], [ -122.237406, 37.820802 ], [ -122.237277, 37.820802 ], [ -122.236590, 37.820226 ], [ -122.237492, 37.819175 ], [ -122.237620, 37.818463 ], [ -122.238908, 37.818124 ], [ -122.239294, 37.817853 ], [ -122.240624, 37.818090 ], [ -122.243199, 37.818701 ], [ -122.244573, 37.819209 ], [ -122.245560, 37.819853 ], [ -122.245688, 37.819819 ], [ -122.246118, 37.820226 ], [ -122.246461, 37.820735 ], [ -122.247448, 37.821616 ], [ -122.249336, 37.822938 ], [ -122.248864, 37.823379 ], [ -122.249379, 37.823650 ], [ -122.248135, 37.824802 ], [ -122.247663, 37.826226 ], [ -122.245946, 37.827243 ], [ -122.244658, 37.828091 ], [ -122.244401, 37.828192 ], [ -122.244229, 37.828362 ], [ -122.243199, 37.830057 ], [ -122.242727, 37.830023 ], [ -122.242341, 37.830090 ], [ -122.240925, 37.830463 ], [ -122.239680, 37.830463 ], [ -122.237878, 37.830633 ], [ -122.237535, 37.830701 ], [ -122.237234, 37.830836 ], [ -122.237062, 37.830836 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "426200", "GEOID10": "06001426200", "NAME10": "4262", "NAMELSAD10": "Census Tract 4262", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1353796, "AWATER10": 0, "INTPTLAT10": "+37.8246260", "INTPTLON10": "-122.2406227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.237062, 37.830836 ], [ -122.236547, 37.830565 ], [ -122.235260, 37.830531 ], [ -122.232299, 37.825074 ], [ -122.231956, 37.824565 ], [ -122.231698, 37.824430 ], [ -122.231526, 37.824430 ], [ -122.231741, 37.824260 ], [ -122.232256, 37.824158 ], [ -122.232642, 37.823989 ], [ -122.233801, 37.823040 ], [ -122.234144, 37.822938 ], [ -122.234445, 37.823074 ], [ -122.234530, 37.823175 ], [ -122.235389, 37.823040 ], [ -122.235818, 37.823311 ], [ -122.236032, 37.823311 ], [ -122.236204, 37.823277 ], [ -122.236333, 37.823175 ], [ -122.236462, 37.823006 ], [ -122.236505, 37.822769 ], [ -122.237406, 37.822057 ], [ -122.237921, 37.821752 ], [ -122.238307, 37.821209 ], [ -122.238393, 37.820972 ], [ -122.238307, 37.820531 ], [ -122.238007, 37.820565 ], [ -122.237406, 37.820802 ], [ -122.237277, 37.820802 ], [ -122.236590, 37.820226 ], [ -122.237492, 37.819175 ], [ -122.237620, 37.818463 ], [ -122.238908, 37.818124 ], [ -122.239294, 37.817853 ], [ -122.240624, 37.818090 ], [ -122.243199, 37.818701 ], [ -122.244573, 37.819209 ], [ -122.245560, 37.819853 ], [ -122.245688, 37.819819 ], [ -122.246118, 37.820226 ], [ -122.246461, 37.820735 ], [ -122.247405, 37.821548 ], [ -122.249336, 37.822938 ], [ -122.248864, 37.823379 ], [ -122.249379, 37.823650 ], [ -122.248135, 37.824802 ], [ -122.247663, 37.826226 ], [ -122.245946, 37.827243 ], [ -122.244658, 37.828091 ], [ -122.244401, 37.828192 ], [ -122.244229, 37.828362 ], [ -122.243199, 37.830057 ], [ -122.242727, 37.830023 ], [ -122.242341, 37.830090 ], [ -122.240925, 37.830463 ], [ -122.239680, 37.830463 ], [ -122.237878, 37.830633 ], [ -122.237535, 37.830701 ], [ -122.237234, 37.830836 ], [ -122.237062, 37.830836 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404200", "GEOID10": "06001404200", "NAME10": "4042", "NAMELSAD10": "Census Tract 4042", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2728909, "AWATER10": 0, "INTPTLAT10": "+37.8361078", "INTPTLON10": "-122.2344651" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.227235, 37.842936 ], [ -122.226763, 37.842834 ], [ -122.225904, 37.842156 ], [ -122.225389, 37.841885 ], [ -122.224832, 37.841682 ], [ -122.223973, 37.840462 ], [ -122.222686, 37.838903 ], [ -122.222214, 37.838428 ], [ -122.219768, 37.836530 ], [ -122.217021, 37.832666 ], [ -122.217751, 37.832972 ], [ -122.218351, 37.833005 ], [ -122.218523, 37.832938 ], [ -122.221613, 37.832599 ], [ -122.221956, 37.832463 ], [ -122.222385, 37.831650 ], [ -122.222471, 37.831345 ], [ -122.222900, 37.830734 ], [ -122.223287, 37.830531 ], [ -122.224102, 37.830395 ], [ -122.224360, 37.830328 ], [ -122.224488, 37.830226 ], [ -122.224917, 37.831040 ], [ -122.225175, 37.831345 ], [ -122.226377, 37.831989 ], [ -122.226763, 37.832022 ], [ -122.226892, 37.832090 ], [ -122.227063, 37.832328 ], [ -122.228093, 37.833039 ], [ -122.232299, 37.831717 ], [ -122.236075, 37.831040 ], [ -122.236934, 37.830768 ], [ -122.237062, 37.830836 ], [ -122.237234, 37.830836 ], [ -122.237535, 37.830701 ], [ -122.237878, 37.830633 ], [ -122.239079, 37.830497 ], [ -122.240925, 37.830463 ], [ -122.242341, 37.830090 ], [ -122.243028, 37.830023 ], [ -122.243285, 37.830057 ], [ -122.243929, 37.830429 ], [ -122.245045, 37.832056 ], [ -122.246118, 37.832463 ], [ -122.246976, 37.833073 ], [ -122.248735, 37.831717 ], [ -122.249250, 37.832090 ], [ -122.249594, 37.832429 ], [ -122.250237, 37.833412 ], [ -122.250538, 37.833683 ], [ -122.252426, 37.834531 ], [ -122.250795, 37.837140 ], [ -122.249336, 37.837174 ], [ -122.243843, 37.839377 ], [ -122.241225, 37.839886 ], [ -122.239895, 37.840733 ], [ -122.239466, 37.840902 ], [ -122.237449, 37.840902 ], [ -122.236891, 37.841004 ], [ -122.236419, 37.841174 ], [ -122.235732, 37.841817 ], [ -122.235560, 37.842055 ], [ -122.235260, 37.842292 ], [ -122.235003, 37.842394 ], [ -122.233844, 37.842563 ], [ -122.233672, 37.842529 ], [ -122.233415, 37.842631 ], [ -122.233200, 37.842597 ], [ -122.232599, 37.842733 ], [ -122.231741, 37.842800 ], [ -122.230668, 37.842495 ], [ -122.228909, 37.842428 ], [ -122.228651, 37.842495 ], [ -122.228136, 37.842800 ], [ -122.227921, 37.842868 ], [ -122.227235, 37.842936 ] ] ] } } , @@ -2790,7 +2790,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404501", "GEOID10": "06001404501", "NAME10": "4045.01", "NAMELSAD10": "Census Tract 4045.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1108548, "AWATER10": 5141, "INTPTLAT10": "+37.8271275", "INTPTLON10": "-122.2171515" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.217965, 37.833005 ], [ -122.217751, 37.832972 ], [ -122.216678, 37.832531 ], [ -122.216549, 37.832531 ], [ -122.215390, 37.831989 ], [ -122.215176, 37.831684 ], [ -122.215261, 37.831514 ], [ -122.215304, 37.831582 ], [ -122.215776, 37.831277 ], [ -122.212644, 37.828091 ], [ -122.207365, 37.821650 ], [ -122.207665, 37.821311 ], [ -122.208395, 37.820090 ], [ -122.209082, 37.819480 ], [ -122.210155, 37.818734 ], [ -122.212129, 37.819785 ], [ -122.214446, 37.821175 ], [ -122.215476, 37.821718 ], [ -122.216291, 37.822599 ], [ -122.216721, 37.822735 ], [ -122.217364, 37.823074 ], [ -122.218480, 37.823548 ], [ -122.221355, 37.825819 ], [ -122.222085, 37.827243 ], [ -122.222342, 37.827616 ], [ -122.223716, 37.829209 ], [ -122.224488, 37.830226 ], [ -122.224360, 37.830328 ], [ -122.224102, 37.830395 ], [ -122.223287, 37.830531 ], [ -122.222900, 37.830734 ], [ -122.222471, 37.831345 ], [ -122.222385, 37.831650 ], [ -122.221956, 37.832463 ], [ -122.221441, 37.832633 ], [ -122.219081, 37.832870 ], [ -122.218523, 37.832938 ], [ -122.218351, 37.833005 ], [ -122.217965, 37.833005 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403900", "GEOID10": "06001403900", "NAME10": "4039", "NAMELSAD10": "Census Tract 4039", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 495325, "AWATER10": 0, "INTPTLAT10": "+37.8171931", "INTPTLON10": "-122.2487541" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.247448, 37.821616 ], [ -122.246461, 37.820735 ], [ -122.246332, 37.820497 ], [ -122.245860, 37.819955 ], [ -122.245688, 37.819819 ], [ -122.245560, 37.819853 ], [ -122.244658, 37.819277 ], [ -122.244959, 37.818395 ], [ -122.245088, 37.818328 ], [ -122.245088, 37.817989 ], [ -122.246161, 37.814598 ], [ -122.248006, 37.811513 ], [ -122.248864, 37.812157 ], [ -122.249379, 37.812496 ], [ -122.250066, 37.812835 ], [ -122.250237, 37.813005 ], [ -122.250409, 37.813276 ], [ -122.251053, 37.814836 ], [ -122.251439, 37.816158 ], [ -122.251997, 37.817209 ], [ -122.252769, 37.818226 ], [ -122.253671, 37.819006 ], [ -122.253284, 37.819345 ], [ -122.251782, 37.820328 ], [ -122.247448, 37.821616 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403900", "GEOID10": "06001403900", "NAME10": "4039", "NAMELSAD10": "Census Tract 4039", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 495325, "AWATER10": 0, "INTPTLAT10": "+37.8171931", "INTPTLON10": "-122.2487541" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.247448, 37.821582 ], [ -122.246461, 37.820735 ], [ -122.246332, 37.820497 ], [ -122.245860, 37.819955 ], [ -122.245688, 37.819819 ], [ -122.245560, 37.819853 ], [ -122.244658, 37.819277 ], [ -122.244959, 37.818395 ], [ -122.245088, 37.818328 ], [ -122.245088, 37.817989 ], [ -122.246161, 37.814598 ], [ -122.248006, 37.811513 ], [ -122.248864, 37.812157 ], [ -122.249379, 37.812496 ], [ -122.250066, 37.812835 ], [ -122.250237, 37.813005 ], [ -122.250409, 37.813276 ], [ -122.251053, 37.814836 ], [ -122.251439, 37.816158 ], [ -122.251997, 37.817209 ], [ -122.252769, 37.818226 ], [ -122.253671, 37.819006 ], [ -122.253284, 37.819345 ], [ -122.251782, 37.820328 ], [ -122.247448, 37.821582 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "403702", "GEOID10": "06001403702", "NAME10": "4037.02", "NAMELSAD10": "Census Tract 4037.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 200813, "AWATER10": 0, "INTPTLAT10": "+37.8095265", "INTPTLON10": "-122.2520804" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.250710, 37.812768 ], [ -122.250323, 37.812327 ], [ -122.250152, 37.811886 ], [ -122.249851, 37.811479 ], [ -122.249293, 37.810903 ], [ -122.248607, 37.810496 ], [ -122.248135, 37.810293 ], [ -122.246504, 37.809852 ], [ -122.246890, 37.809581 ], [ -122.248135, 37.809004 ], [ -122.249165, 37.808394 ], [ -122.250109, 37.809106 ], [ -122.250452, 37.808869 ], [ -122.251139, 37.808665 ], [ -122.252769, 37.808733 ], [ -122.252898, 37.808055 ], [ -122.253156, 37.807784 ], [ -122.253413, 37.807716 ], [ -122.254915, 37.807750 ], [ -122.255516, 37.807648 ], [ -122.255988, 37.807478 ], [ -122.256289, 37.807987 ], [ -122.256331, 37.808529 ], [ -122.256203, 37.808936 ], [ -122.255387, 37.810665 ], [ -122.252941, 37.810496 ], [ -122.250752, 37.811038 ], [ -122.250409, 37.811208 ], [ -122.250280, 37.811072 ], [ -122.249422, 37.810530 ], [ -122.250152, 37.811106 ], [ -122.250495, 37.811649 ], [ -122.250710, 37.812768 ] ] ] } } , @@ -2802,11 +2802,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405100", "GEOID10": "06001405100", "NAME10": "4051", "NAMELSAD10": "Census Tract 4051", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1265693, "AWATER10": 0, "INTPTLAT10": "+37.8114477", "INTPTLON10": "-122.2321836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.233286, 37.816531 ], [ -122.232213, 37.816192 ], [ -122.228608, 37.815480 ], [ -122.225904, 37.814870 ], [ -122.222643, 37.814022 ], [ -122.220926, 37.813751 ], [ -122.220154, 37.813513 ], [ -122.220926, 37.813310 ], [ -122.221184, 37.813174 ], [ -122.221656, 37.812768 ], [ -122.221785, 37.812496 ], [ -122.221870, 37.811784 ], [ -122.222085, 37.811445 ], [ -122.222643, 37.810903 ], [ -122.223415, 37.810462 ], [ -122.224617, 37.810157 ], [ -122.225175, 37.809886 ], [ -122.225947, 37.809309 ], [ -122.225990, 37.809208 ], [ -122.226892, 37.808733 ], [ -122.227492, 37.808190 ], [ -122.228265, 37.807919 ], [ -122.228737, 37.807851 ], [ -122.229853, 37.807411 ], [ -122.230539, 37.807241 ], [ -122.231183, 37.807173 ], [ -122.232084, 37.807207 ], [ -122.232814, 37.807038 ], [ -122.233028, 37.806902 ], [ -122.235003, 37.807207 ], [ -122.237191, 37.807038 ], [ -122.238135, 37.807919 ], [ -122.238607, 37.808156 ], [ -122.238822, 37.808156 ], [ -122.239423, 37.808360 ], [ -122.240281, 37.808835 ], [ -122.241740, 37.809818 ], [ -122.243285, 37.811005 ], [ -122.242255, 37.811581 ], [ -122.240882, 37.813005 ], [ -122.239251, 37.814090 ], [ -122.238822, 37.814429 ], [ -122.238135, 37.815107 ], [ -122.237577, 37.814768 ], [ -122.235818, 37.814429 ], [ -122.233243, 37.814598 ], [ -122.231998, 37.814327 ], [ -122.232857, 37.816056 ], [ -122.232985, 37.816124 ], [ -122.233415, 37.816124 ], [ -122.233286, 37.816531 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405301", "GEOID10": "06001405301", "NAME10": "4053.01", "NAMELSAD10": "Census Tract 4053.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 227753, "AWATER10": 0, "INTPTLAT10": "+37.8020757", "INTPTLON10": "-122.2513558" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.250581, 37.805241 ], [ -122.249336, 37.804834 ], [ -122.249379, 37.804698 ], [ -122.249207, 37.803850 ], [ -122.248392, 37.800459 ], [ -122.249207, 37.800256 ], [ -122.250495, 37.800154 ], [ -122.250538, 37.800120 ], [ -122.250152, 37.799815 ], [ -122.251010, 37.799171 ], [ -122.251782, 37.799679 ], [ -122.253757, 37.800358 ], [ -122.253928, 37.800459 ], [ -122.254486, 37.800561 ], [ -122.254400, 37.800900 ], [ -122.254486, 37.801850 ], [ -122.254443, 37.802019 ], [ -122.253799, 37.802833 ], [ -122.253456, 37.803613 ], [ -122.253284, 37.803850 ], [ -122.252898, 37.804054 ], [ -122.252641, 37.804122 ], [ -122.251396, 37.804291 ], [ -122.251139, 37.804427 ], [ -122.250838, 37.804698 ], [ -122.250581, 37.805241 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405301", "GEOID10": "06001405301", "NAME10": "4053.01", "NAMELSAD10": "Census Tract 4053.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 227753, "AWATER10": 0, "INTPTLAT10": "+37.8020757", "INTPTLON10": "-122.2513558" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.250581, 37.805241 ], [ -122.249336, 37.804834 ], [ -122.249379, 37.804698 ], [ -122.249207, 37.803850 ], [ -122.248392, 37.800459 ], [ -122.249293, 37.800222 ], [ -122.250495, 37.800154 ], [ -122.250538, 37.800120 ], [ -122.250152, 37.799815 ], [ -122.251010, 37.799171 ], [ -122.251782, 37.799679 ], [ -122.253757, 37.800358 ], [ -122.253928, 37.800459 ], [ -122.254486, 37.800561 ], [ -122.254400, 37.800900 ], [ -122.254486, 37.801850 ], [ -122.254443, 37.802019 ], [ -122.253799, 37.802833 ], [ -122.253456, 37.803613 ], [ -122.253284, 37.803850 ], [ -122.252898, 37.804054 ], [ -122.252641, 37.804122 ], [ -122.251396, 37.804291 ], [ -122.251139, 37.804427 ], [ -122.250838, 37.804698 ], [ -122.250581, 37.805241 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405302", "GEOID10": "06001405302", "NAME10": "4053.02", "NAMELSAD10": "Census Tract 4053.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 202347, "AWATER10": 0, "INTPTLAT10": "+37.7985014", "INTPTLON10": "-122.2542495" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.254357, 37.800561 ], [ -122.253928, 37.800459 ], [ -122.253757, 37.800358 ], [ -122.251782, 37.799679 ], [ -122.251182, 37.799306 ], [ -122.250152, 37.798425 ], [ -122.253842, 37.795780 ], [ -122.257147, 37.798730 ], [ -122.257919, 37.798391 ], [ -122.258477, 37.798323 ], [ -122.259121, 37.798357 ], [ -122.259593, 37.798560 ], [ -122.259336, 37.798459 ], [ -122.259121, 37.798493 ], [ -122.258563, 37.799137 ], [ -122.258091, 37.799510 ], [ -122.257404, 37.799849 ], [ -122.256589, 37.800019 ], [ -122.255301, 37.800019 ], [ -122.254958, 37.800120 ], [ -122.254486, 37.800561 ], [ -122.254357, 37.800561 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405302", "GEOID10": "06001405302", "NAME10": "4053.02", "NAMELSAD10": "Census Tract 4053.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 202347, "AWATER10": 0, "INTPTLAT10": "+37.7985014", "INTPTLON10": "-122.2542495" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.254357, 37.800561 ], [ -122.253928, 37.800459 ], [ -122.253757, 37.800358 ], [ -122.251782, 37.799679 ], [ -122.251182, 37.799306 ], [ -122.250152, 37.798425 ], [ -122.253842, 37.795780 ], [ -122.257147, 37.798730 ], [ -122.257919, 37.798391 ], [ -122.258477, 37.798323 ], [ -122.259121, 37.798357 ], [ -122.259593, 37.798560 ], [ -122.259336, 37.798459 ], [ -122.259121, 37.798493 ], [ -122.258563, 37.799137 ], [ -122.258220, 37.799408 ], [ -122.257404, 37.799849 ], [ -122.256589, 37.800019 ], [ -122.255301, 37.800019 ], [ -122.254958, 37.800120 ], [ -122.254486, 37.800561 ], [ -122.254357, 37.800561 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405401", "GEOID10": "06001405401", "NAME10": "4054.01", "NAMELSAD10": "Census Tract 4054.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 313929, "AWATER10": 0, "INTPTLAT10": "+37.7965384", "INTPTLON10": "-122.2494562" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.248993, 37.800324 ], [ -122.246761, 37.798323 ], [ -122.246633, 37.798289 ], [ -122.246675, 37.798187 ], [ -122.245989, 37.797679 ], [ -122.245002, 37.796763 ], [ -122.250495, 37.792829 ], [ -122.253842, 37.795780 ], [ -122.250152, 37.798425 ], [ -122.251010, 37.799171 ], [ -122.250152, 37.799815 ], [ -122.250538, 37.800120 ], [ -122.250280, 37.800188 ], [ -122.249207, 37.800256 ], [ -122.248993, 37.800324 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405401", "GEOID10": "06001405401", "NAME10": "4054.01", "NAMELSAD10": "Census Tract 4054.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 313929, "AWATER10": 0, "INTPTLAT10": "+37.7965384", "INTPTLON10": "-122.2494562" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.248993, 37.800324 ], [ -122.246761, 37.798323 ], [ -122.246633, 37.798289 ], [ -122.246675, 37.798187 ], [ -122.245989, 37.797679 ], [ -122.245002, 37.796763 ], [ -122.250495, 37.792829 ], [ -122.253842, 37.795780 ], [ -122.250152, 37.798425 ], [ -122.251010, 37.799171 ], [ -122.250152, 37.799815 ], [ -122.250538, 37.800120 ], [ -122.250280, 37.800188 ], [ -122.249293, 37.800222 ], [ -122.248993, 37.800324 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405402", "GEOID10": "06001405402", "NAME10": "4054.02", "NAMELSAD10": "Census Tract 4054.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 285369, "AWATER10": 0, "INTPTLAT10": "+37.7933319", "INTPTLON10": "-122.2461006" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.245002, 37.796763 ], [ -122.241697, 37.793813 ], [ -122.247190, 37.789913 ], [ -122.250495, 37.792829 ], [ -122.245002, 37.796763 ] ] ] } } , @@ -2824,7 +2824,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405700", "GEOID10": "06001405700", "NAME10": "4057", "NAMELSAD10": "Census Tract 4057", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 546860, "AWATER10": 0, "INTPTLAT10": "+37.7982307", "INTPTLON10": "-122.2296737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.231183, 37.802596 ], [ -122.229853, 37.801612 ], [ -122.228436, 37.800934 ], [ -122.227278, 37.800629 ], [ -122.226763, 37.800561 ], [ -122.224188, 37.799985 ], [ -122.224488, 37.799306 ], [ -122.224703, 37.798560 ], [ -122.224874, 37.798221 ], [ -122.225261, 37.797848 ], [ -122.225432, 37.797509 ], [ -122.226677, 37.793542 ], [ -122.228308, 37.793813 ], [ -122.231913, 37.795949 ], [ -122.230625, 37.797306 ], [ -122.230582, 37.797475 ], [ -122.233114, 37.796594 ], [ -122.233200, 37.796729 ], [ -122.233844, 37.797136 ], [ -122.236032, 37.798425 ], [ -122.235260, 37.799374 ], [ -122.234831, 37.799747 ], [ -122.234659, 37.799815 ], [ -122.233372, 37.800900 ], [ -122.231183, 37.802596 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405800", "GEOID10": "06001405800", "NAME10": "4058", "NAMELSAD10": "Census Tract 4058", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 519054, "AWATER10": 0, "INTPTLAT10": "+37.7939452", "INTPTLON10": "-122.2330985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236032, 37.798425 ], [ -122.233844, 37.797136 ], [ -122.233200, 37.796729 ], [ -122.233114, 37.796594 ], [ -122.230582, 37.797475 ], [ -122.230625, 37.797306 ], [ -122.231913, 37.795949 ], [ -122.228308, 37.793813 ], [ -122.226677, 37.793542 ], [ -122.227750, 37.792049 ], [ -122.228308, 37.791473 ], [ -122.229080, 37.790761 ], [ -122.230196, 37.790184 ], [ -122.230926, 37.789438 ], [ -122.231569, 37.789913 ], [ -122.237535, 37.793508 ], [ -122.236848, 37.794254 ], [ -122.237964, 37.794932 ], [ -122.239079, 37.794525 ], [ -122.239852, 37.795135 ], [ -122.237020, 37.797136 ], [ -122.236032, 37.798425 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "405800", "GEOID10": "06001405800", "NAME10": "4058", "NAMELSAD10": "Census Tract 4058", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 519054, "AWATER10": 0, "INTPTLAT10": "+37.7939452", "INTPTLON10": "-122.2330985" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236032, 37.798425 ], [ -122.233844, 37.797136 ], [ -122.233200, 37.796729 ], [ -122.233114, 37.796594 ], [ -122.230582, 37.797475 ], [ -122.230625, 37.797306 ], [ -122.231913, 37.795949 ], [ -122.228308, 37.793813 ], [ -122.226677, 37.793542 ], [ -122.227621, 37.792185 ], [ -122.228308, 37.791473 ], [ -122.229080, 37.790761 ], [ -122.230196, 37.790184 ], [ -122.230926, 37.789438 ], [ -122.231569, 37.789913 ], [ -122.237535, 37.793508 ], [ -122.236848, 37.794254 ], [ -122.237964, 37.794932 ], [ -122.239079, 37.794525 ], [ -122.239852, 37.795135 ], [ -122.237020, 37.797136 ], [ -122.236032, 37.798425 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404800", "GEOID10": "06001404800", "NAME10": "4048", "NAMELSAD10": "Census Tract 4048", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 628405, "AWATER10": 0, "INTPTLAT10": "+37.8055076", "INTPTLON10": "-122.2131962" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.213373, 37.812191 ], [ -122.212858, 37.811920 ], [ -122.212129, 37.811411 ], [ -122.211742, 37.811005 ], [ -122.211742, 37.810835 ], [ -122.211571, 37.810699 ], [ -122.210927, 37.810598 ], [ -122.211185, 37.810360 ], [ -122.212043, 37.809953 ], [ -122.211528, 37.809411 ], [ -122.210712, 37.808970 ], [ -122.210627, 37.808835 ], [ -122.210498, 37.808767 ], [ -122.210155, 37.808801 ], [ -122.209811, 37.808563 ], [ -122.209897, 37.808258 ], [ -122.209597, 37.807817 ], [ -122.209725, 37.807173 ], [ -122.209682, 37.806970 ], [ -122.209597, 37.806902 ], [ -122.209339, 37.806902 ], [ -122.208524, 37.807071 ], [ -122.207365, 37.806393 ], [ -122.213330, 37.800629 ], [ -122.214103, 37.799815 ], [ -122.215047, 37.800052 ], [ -122.215691, 37.800154 ], [ -122.218266, 37.800866 ], [ -122.217836, 37.801409 ], [ -122.217579, 37.802087 ], [ -122.217364, 37.802358 ], [ -122.217064, 37.803104 ], [ -122.216592, 37.803884 ], [ -122.216463, 37.804664 ], [ -122.216034, 37.805139 ], [ -122.215905, 37.805207 ], [ -122.215819, 37.805376 ], [ -122.215862, 37.805817 ], [ -122.215734, 37.806020 ], [ -122.215691, 37.806326 ], [ -122.215776, 37.807716 ], [ -122.215648, 37.808597 ], [ -122.215476, 37.809208 ], [ -122.214918, 37.810293 ], [ -122.214360, 37.810632 ], [ -122.213588, 37.811954 ], [ -122.213373, 37.812191 ] ] ] } } , @@ -2864,7 +2864,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406201", "GEOID10": "06001406201", "NAME10": "4062.01", "NAMELSAD10": "Census Tract 4062.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 408075, "AWATER10": 0, "INTPTLAT10": "+37.7850448", "INTPTLON10": "-122.2307360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.230926, 37.789438 ], [ -122.225304, 37.786114 ], [ -122.226806, 37.784520 ], [ -122.227535, 37.784961 ], [ -122.227921, 37.784486 ], [ -122.231483, 37.780755 ], [ -122.235904, 37.783401 ], [ -122.235131, 37.784215 ], [ -122.234058, 37.785199 ], [ -122.232985, 37.786013 ], [ -122.232513, 37.786555 ], [ -122.232041, 37.787301 ], [ -122.231870, 37.788353 ], [ -122.230926, 37.789438 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793542 ], [ -122.226248, 37.793474 ], [ -122.225862, 37.793304 ], [ -122.223845, 37.792151 ], [ -122.221355, 37.790828 ], [ -122.219982, 37.790523 ], [ -122.220583, 37.789167 ], [ -122.222257, 37.784927 ], [ -122.224832, 37.785809 ], [ -122.230926, 37.789438 ], [ -122.230196, 37.790184 ], [ -122.229080, 37.790761 ], [ -122.228308, 37.791473 ], [ -122.227750, 37.792049 ], [ -122.226677, 37.793542 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406300", "GEOID10": "06001406300", "NAME10": "4063", "NAMELSAD10": "Census Tract 4063", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 485745, "AWATER10": 0, "INTPTLAT10": "+37.7892881", "INTPTLON10": "-122.2250125" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.226677, 37.793542 ], [ -122.226248, 37.793474 ], [ -122.225862, 37.793304 ], [ -122.223845, 37.792151 ], [ -122.221355, 37.790828 ], [ -122.219982, 37.790523 ], [ -122.220583, 37.789167 ], [ -122.222257, 37.784927 ], [ -122.224832, 37.785809 ], [ -122.230926, 37.789438 ], [ -122.230196, 37.790184 ], [ -122.229080, 37.790761 ], [ -122.228308, 37.791473 ], [ -122.227621, 37.792185 ], [ -122.226677, 37.793542 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406202", "GEOID10": "06001406202", "NAME10": "4062.02", "NAMELSAD10": "Census Tract 4062.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 392184, "AWATER10": 0, "INTPTLAT10": "+37.7819786", "INTPTLON10": "-122.2265557" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225304, 37.786114 ], [ -122.224832, 37.785809 ], [ -122.224574, 37.785707 ], [ -122.222257, 37.784927 ], [ -122.223072, 37.782994 ], [ -122.225819, 37.777635 ], [ -122.225947, 37.777737 ], [ -122.228093, 37.778720 ], [ -122.231483, 37.780755 ], [ -122.227921, 37.784486 ], [ -122.227535, 37.784961 ], [ -122.226806, 37.784520 ], [ -122.225304, 37.786114 ] ] ] } } , @@ -2874,17 +2874,17 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407102", "GEOID10": "06001407102", "NAME10": "4071.02", "NAMELSAD10": "Census Tract 4071.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 660864, "AWATER10": 0, "INTPTLAT10": "+37.7807761", "INTPTLON10": "-122.2102385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.210369, 37.787980 ], [ -122.207150, 37.785097 ], [ -122.204146, 37.782519 ], [ -122.204232, 37.782485 ], [ -122.210541, 37.775769 ], [ -122.211142, 37.775159 ], [ -122.211742, 37.774684 ], [ -122.213159, 37.775871 ], [ -122.216678, 37.779025 ], [ -122.209039, 37.784385 ], [ -122.211957, 37.787030 ], [ -122.210369, 37.787980 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406100", "GEOID10": "06001406100", "NAME10": "4061", "NAMELSAD10": "Census Tract 4061", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1842465, "AWATER10": 110763, "INTPTLAT10": "+37.7741552", "INTPTLON10": "-122.2275943" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.238607, 37.783774 ], [ -122.236676, 37.782621 ], [ -122.235904, 37.783401 ], [ -122.235689, 37.783299 ], [ -122.228093, 37.778720 ], [ -122.214789, 37.772377 ], [ -122.220411, 37.768069 ], [ -122.220626, 37.767967 ], [ -122.223759, 37.765592 ], [ -122.224231, 37.765117 ], [ -122.225132, 37.764371 ], [ -122.226934, 37.766678 ], [ -122.230368, 37.768849 ], [ -122.230539, 37.768883 ], [ -122.231784, 37.769460 ], [ -122.236547, 37.771732 ], [ -122.235861, 37.772580 ], [ -122.235904, 37.773259 ], [ -122.235818, 37.773564 ], [ -122.235990, 37.773870 ], [ -122.236161, 37.774751 ], [ -122.236290, 37.775566 ], [ -122.236333, 37.776617 ], [ -122.236032, 37.776787 ], [ -122.236333, 37.777058 ], [ -122.236633, 37.777567 ], [ -122.236633, 37.778245 ], [ -122.236934, 37.780111 ], [ -122.237105, 37.780755 ], [ -122.237277, 37.782044 ], [ -122.237577, 37.782485 ], [ -122.238564, 37.783164 ], [ -122.238736, 37.783503 ], [ -122.238607, 37.783774 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407200", "GEOID10": "06001407200", "NAME10": "4072", "NAMELSAD10": "Census Tract 4072", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 715067, "AWATER10": 0, "INTPTLAT10": "+37.7777848", "INTPTLON10": "-122.2192819" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.222729, 37.783740 ], [ -122.220197, 37.782926 ], [ -122.219253, 37.782417 ], [ -122.219081, 37.782214 ], [ -122.218652, 37.780823 ], [ -122.218523, 37.780687 ], [ -122.213159, 37.775871 ], [ -122.211742, 37.774684 ], [ -122.214789, 37.772377 ], [ -122.225819, 37.777635 ], [ -122.222729, 37.783740 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "406100", "GEOID10": "06001406100", "NAME10": "4061", "NAMELSAD10": "Census Tract 4061", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1842465, "AWATER10": 110763, "INTPTLAT10": "+37.7741552", "INTPTLON10": "-122.2275943" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.238607, 37.783774 ], [ -122.236676, 37.782621 ], [ -122.235904, 37.783401 ], [ -122.235689, 37.783299 ], [ -122.228093, 37.778720 ], [ -122.214789, 37.772377 ], [ -122.220411, 37.768069 ], [ -122.220626, 37.767967 ], [ -122.223759, 37.765592 ], [ -122.224231, 37.765117 ], [ -122.225132, 37.764371 ], [ -122.226934, 37.766678 ], [ -122.230368, 37.768849 ], [ -122.230539, 37.768883 ], [ -122.231784, 37.769460 ], [ -122.236547, 37.771732 ], [ -122.235861, 37.772580 ], [ -122.235904, 37.773259 ], [ -122.235818, 37.773564 ], [ -122.235990, 37.773870 ], [ -122.236161, 37.774751 ], [ -122.236290, 37.775566 ], [ -122.236333, 37.776617 ], [ -122.236032, 37.776787 ], [ -122.236333, 37.777058 ], [ -122.236633, 37.777567 ], [ -122.236633, 37.778245 ], [ -122.236934, 37.780111 ], [ -122.237105, 37.780755 ], [ -122.237277, 37.782044 ], [ -122.237577, 37.782485 ], [ -122.238564, 37.783164 ], [ -122.238736, 37.783503 ], [ -122.238607, 37.783774 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407400", "GEOID10": "06001407400", "NAME10": "4074", "NAMELSAD10": "Census Tract 4074", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 511489, "AWATER10": 0, "INTPTLAT10": "+37.7710407", "INTPTLON10": "-122.2067479" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.211742, 37.774684 ], [ -122.207623, 37.772716 ], [ -122.207451, 37.772682 ], [ -122.200799, 37.772648 ], [ -122.200799, 37.769222 ], [ -122.200842, 37.769120 ], [ -122.203674, 37.767119 ], [ -122.214789, 37.772377 ], [ -122.211742, 37.774684 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "427100", "GEOID10": "06001427100", "NAME10": "4271", "NAMELSAD10": "Census Tract 4271", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1025449, "AWATER10": 102516, "INTPTLAT10": "+37.7651160", "INTPTLON10": "-122.2309908" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.236505, 37.771699 ], [ -122.231784, 37.769460 ], [ -122.230539, 37.768883 ], [ -122.230368, 37.768849 ], [ -122.226934, 37.766678 ], [ -122.225132, 37.764371 ], [ -122.223973, 37.759519 ], [ -122.223759, 37.754430 ], [ -122.225347, 37.755821 ], [ -122.225947, 37.756228 ], [ -122.225947, 37.757280 ], [ -122.229939, 37.760062 ], [ -122.229681, 37.760300 ], [ -122.230582, 37.760944 ], [ -122.232642, 37.762369 ], [ -122.240796, 37.766576 ], [ -122.236505, 37.771699 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428302", "GEOID10": "06001428302", "NAME10": "4283.02", "NAMELSAD10": "Census Tract 4283.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2236214, "AWATER10": 476593, "INTPTLAT10": "+37.7439709", "INTPTLON10": "-122.2497790" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.260065, 37.749204 ], [ -122.251654, 37.749102 ], [ -122.236247, 37.748560 ], [ -122.236247, 37.747406 ], [ -122.235990, 37.747066 ], [ -122.235732, 37.746897 ], [ -122.236075, 37.746524 ], [ -122.236247, 37.746184 ], [ -122.236719, 37.745607 ], [ -122.237191, 37.744454 ], [ -122.236848, 37.743605 ], [ -122.237062, 37.743435 ], [ -122.237663, 37.743198 ], [ -122.237835, 37.742791 ], [ -122.237835, 37.741501 ], [ -122.238865, 37.737089 ], [ -122.239165, 37.736478 ], [ -122.239938, 37.735528 ], [ -122.244658, 37.736614 ], [ -122.245002, 37.736750 ], [ -122.245646, 37.736886 ], [ -122.246547, 37.737021 ], [ -122.247963, 37.737055 ], [ -122.248778, 37.737191 ], [ -122.249422, 37.737395 ], [ -122.249980, 37.737666 ], [ -122.251053, 37.737870 ], [ -122.252469, 37.737938 ], [ -122.257147, 37.737904 ], [ -122.257233, 37.737972 ], [ -122.257576, 37.737904 ], [ -122.261009, 37.737836 ], [ -122.261653, 37.739227 ], [ -122.261696, 37.740585 ], [ -122.260065, 37.749204 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428302", "GEOID10": "06001428302", "NAME10": "4283.02", "NAMELSAD10": "Census Tract 4283.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2236214, "AWATER10": 476593, "INTPTLAT10": "+37.7439709", "INTPTLON10": "-122.2497790" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.260065, 37.749204 ], [ -122.251654, 37.749102 ], [ -122.236247, 37.748560 ], [ -122.236247, 37.747406 ], [ -122.235990, 37.747066 ], [ -122.235732, 37.746897 ], [ -122.236075, 37.746524 ], [ -122.236247, 37.746184 ], [ -122.236719, 37.745607 ], [ -122.237191, 37.744454 ], [ -122.236848, 37.743605 ], [ -122.237062, 37.743435 ], [ -122.237663, 37.743198 ], [ -122.237835, 37.742791 ], [ -122.237835, 37.741501 ], [ -122.238865, 37.737089 ], [ -122.239165, 37.736478 ], [ -122.239938, 37.735528 ], [ -122.244658, 37.736614 ], [ -122.245002, 37.736750 ], [ -122.245646, 37.736886 ], [ -122.246547, 37.737021 ], [ -122.247963, 37.737055 ], [ -122.248864, 37.737191 ], [ -122.249980, 37.737666 ], [ -122.251053, 37.737870 ], [ -122.252469, 37.737938 ], [ -122.257147, 37.737904 ], [ -122.257233, 37.737972 ], [ -122.257576, 37.737904 ], [ -122.261009, 37.737836 ], [ -122.261653, 37.739227 ], [ -122.261696, 37.740585 ], [ -122.260065, 37.749204 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225904, 37.749679 ], [ -122.226548, 37.747915 ], [ -122.226977, 37.745573 ], [ -122.225776, 37.745336 ], [ -122.225132, 37.745268 ], [ -122.225561, 37.731964 ], [ -122.225776, 37.731455 ], [ -122.226162, 37.731048 ], [ -122.226634, 37.730369 ], [ -122.226334, 37.726567 ], [ -122.228050, 37.726873 ], [ -122.228179, 37.726771 ], [ -122.228608, 37.726262 ], [ -122.236118, 37.718624 ], [ -122.236891, 37.719032 ], [ -122.244058, 37.724157 ], [ -122.248306, 37.727246 ], [ -122.248821, 37.727823 ], [ -122.256546, 37.721238 ], [ -122.264442, 37.732949 ], [ -122.261009, 37.737836 ], [ -122.257576, 37.737904 ], [ -122.257233, 37.737972 ], [ -122.257147, 37.737904 ], [ -122.252469, 37.737938 ], [ -122.251053, 37.737870 ], [ -122.249980, 37.737666 ], [ -122.249422, 37.737395 ], [ -122.248778, 37.737191 ], [ -122.247963, 37.737055 ], [ -122.246547, 37.737021 ], [ -122.245646, 37.736886 ], [ -122.245002, 37.736750 ], [ -122.244658, 37.736614 ], [ -122.239938, 37.735528 ], [ -122.239165, 37.736478 ], [ -122.238865, 37.737089 ], [ -122.237835, 37.741501 ], [ -122.237835, 37.742791 ], [ -122.237663, 37.743198 ], [ -122.237062, 37.743435 ], [ -122.236848, 37.743605 ], [ -122.237191, 37.744454 ], [ -122.236719, 37.745607 ], [ -122.236247, 37.746184 ], [ -122.236075, 37.746524 ], [ -122.235732, 37.746897 ], [ -122.235990, 37.747066 ], [ -122.236247, 37.747406 ], [ -122.236247, 37.748560 ], [ -122.225904, 37.749679 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "428301", "GEOID10": "06001428301", "NAME10": "4283.01", "NAMELSAD10": "Census Tract 4283.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4706078, "AWATER10": 1459681, "INTPTLAT10": "+37.7334484", "INTPTLON10": "-122.2406697" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.225904, 37.749679 ], [ -122.226548, 37.747915 ], [ -122.226977, 37.745573 ], [ -122.225776, 37.745336 ], [ -122.225132, 37.745268 ], [ -122.225561, 37.731964 ], [ -122.225776, 37.731455 ], [ -122.226162, 37.731048 ], [ -122.226634, 37.730369 ], [ -122.226334, 37.726567 ], [ -122.228050, 37.726873 ], [ -122.228179, 37.726771 ], [ -122.228608, 37.726262 ], [ -122.236118, 37.718624 ], [ -122.236891, 37.719032 ], [ -122.244058, 37.724157 ], [ -122.248306, 37.727246 ], [ -122.248821, 37.727823 ], [ -122.256546, 37.721238 ], [ -122.264442, 37.732949 ], [ -122.261009, 37.737836 ], [ -122.257576, 37.737904 ], [ -122.257233, 37.737972 ], [ -122.257147, 37.737904 ], [ -122.252469, 37.737938 ], [ -122.251053, 37.737870 ], [ -122.249980, 37.737666 ], [ -122.248864, 37.737191 ], [ -122.247963, 37.737055 ], [ -122.246547, 37.737021 ], [ -122.245646, 37.736886 ], [ -122.245002, 37.736750 ], [ -122.244658, 37.736614 ], [ -122.239938, 37.735528 ], [ -122.239165, 37.736478 ], [ -122.238865, 37.737089 ], [ -122.237835, 37.741501 ], [ -122.237835, 37.742791 ], [ -122.237663, 37.743198 ], [ -122.237062, 37.743435 ], [ -122.236848, 37.743605 ], [ -122.237191, 37.744454 ], [ -122.236719, 37.745607 ], [ -122.236247, 37.746184 ], [ -122.236075, 37.746524 ], [ -122.235732, 37.746897 ], [ -122.235990, 37.747066 ], [ -122.236247, 37.747406 ], [ -122.236247, 37.748560 ], [ -122.225904, 37.749679 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "407000", "GEOID10": "06001407000", "NAME10": "4070", "NAMELSAD10": "Census Tract 4070", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 862396, "AWATER10": 0, "INTPTLAT10": "+37.7879430", "INTPTLON10": "-122.2024899" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.200670, 37.793711 ], [ -122.194834, 37.787301 ], [ -122.204146, 37.782519 ], [ -122.207150, 37.785097 ], [ -122.210369, 37.787980 ], [ -122.205348, 37.790896 ], [ -122.204962, 37.791168 ], [ -122.204704, 37.791269 ], [ -122.203717, 37.791914 ], [ -122.202902, 37.792355 ], [ -122.202773, 37.792287 ], [ -122.202559, 37.792422 ], [ -122.202430, 37.792660 ], [ -122.202086, 37.792897 ], [ -122.200670, 37.793711 ] ] ] } } , @@ -2904,7 +2904,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408800", "GEOID10": "06001408800", "NAME10": "4088", "NAMELSAD10": "Census Tract 4088", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1204352, "AWATER10": 0, "INTPTLAT10": "+37.7588039", "INTPTLON10": "-122.1969422" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.199512, 37.765151 ], [ -122.195263, 37.763183 ], [ -122.190456, 37.760842 ], [ -122.188783, 37.760062 ], [ -122.187881, 37.759723 ], [ -122.187066, 37.759248 ], [ -122.187409, 37.758976 ], [ -122.187796, 37.758807 ], [ -122.188783, 37.758196 ], [ -122.194319, 37.754599 ], [ -122.194276, 37.754532 ], [ -122.193890, 37.754430 ], [ -122.193203, 37.754667 ], [ -122.192473, 37.754769 ], [ -122.193117, 37.754192 ], [ -122.193332, 37.753819 ], [ -122.193289, 37.753548 ], [ -122.195306, 37.752258 ], [ -122.195520, 37.751987 ], [ -122.196679, 37.753106 ], [ -122.198095, 37.752224 ], [ -122.198696, 37.752733 ], [ -122.201014, 37.754837 ], [ -122.201400, 37.755108 ], [ -122.202516, 37.756092 ], [ -122.200842, 37.756771 ], [ -122.200885, 37.756839 ], [ -122.205606, 37.760842 ], [ -122.199512, 37.765151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408600", "GEOID10": "06001408600", "NAME10": "4086", "NAMELSAD10": "Census Tract 4086", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1061057, "AWATER10": 0, "INTPTLAT10": "+37.7661964", "INTPTLON10": "-122.1823031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.179728, 37.773903 ], [ -122.177968, 37.772547 ], [ -122.176723, 37.771325 ], [ -122.173247, 37.769663 ], [ -122.173119, 37.769663 ], [ -122.172003, 37.769188 ], [ -122.173505, 37.768340 ], [ -122.176638, 37.766339 ], [ -122.177067, 37.765999 ], [ -122.177410, 37.765592 ], [ -122.177753, 37.765355 ], [ -122.186680, 37.759655 ], [ -122.187066, 37.759248 ], [ -122.187881, 37.759723 ], [ -122.188783, 37.760062 ], [ -122.192817, 37.761996 ], [ -122.190242, 37.763692 ], [ -122.189426, 37.764439 ], [ -122.189040, 37.764710 ], [ -122.182946, 37.768611 ], [ -122.182903, 37.768713 ], [ -122.182388, 37.769086 ], [ -122.182131, 37.769595 ], [ -122.182088, 37.769222 ], [ -122.181916, 37.769663 ], [ -122.181573, 37.771427 ], [ -122.181573, 37.771800 ], [ -122.181659, 37.772072 ], [ -122.182002, 37.772411 ], [ -122.179728, 37.773903 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408600", "GEOID10": "06001408600", "NAME10": "4086", "NAMELSAD10": "Census Tract 4086", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1061057, "AWATER10": 0, "INTPTLAT10": "+37.7661964", "INTPTLON10": "-122.1823031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.179728, 37.773903 ], [ -122.177968, 37.772547 ], [ -122.176723, 37.771325 ], [ -122.173247, 37.769663 ], [ -122.173119, 37.769663 ], [ -122.172003, 37.769188 ], [ -122.173505, 37.768340 ], [ -122.176638, 37.766339 ], [ -122.177067, 37.765999 ], [ -122.177410, 37.765592 ], [ -122.177753, 37.765355 ], [ -122.179985, 37.763964 ], [ -122.181959, 37.762641 ], [ -122.184706, 37.760944 ], [ -122.186637, 37.759655 ], [ -122.187066, 37.759248 ], [ -122.187881, 37.759723 ], [ -122.188783, 37.760062 ], [ -122.192817, 37.761996 ], [ -122.190242, 37.763692 ], [ -122.189426, 37.764439 ], [ -122.189040, 37.764710 ], [ -122.182946, 37.768611 ], [ -122.182903, 37.768713 ], [ -122.182388, 37.769086 ], [ -122.182131, 37.769595 ], [ -122.182088, 37.769222 ], [ -122.181916, 37.769663 ], [ -122.181573, 37.771427 ], [ -122.181573, 37.771800 ], [ -122.181659, 37.772072 ], [ -122.182002, 37.772411 ], [ -122.179728, 37.773903 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408900", "GEOID10": "06001408900", "NAME10": "4089", "NAMELSAD10": "Census Tract 4089", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 802407, "AWATER10": 0, "INTPTLAT10": "+37.7541816", "INTPTLON10": "-122.1887803" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.187066, 37.759248 ], [ -122.179127, 37.755482 ], [ -122.179298, 37.755312 ], [ -122.179556, 37.755176 ], [ -122.184577, 37.752767 ], [ -122.185006, 37.753310 ], [ -122.191873, 37.750053 ], [ -122.192430, 37.749747 ], [ -122.193632, 37.748322 ], [ -122.198095, 37.752224 ], [ -122.196679, 37.753106 ], [ -122.195520, 37.751987 ], [ -122.195306, 37.752258 ], [ -122.193289, 37.753548 ], [ -122.193332, 37.753819 ], [ -122.193117, 37.754192 ], [ -122.192473, 37.754769 ], [ -122.193203, 37.754667 ], [ -122.193890, 37.754430 ], [ -122.194276, 37.754532 ], [ -122.194319, 37.754599 ], [ -122.188783, 37.758196 ], [ -122.187796, 37.758807 ], [ -122.187409, 37.758976 ], [ -122.187066, 37.759248 ] ] ] } } , @@ -2912,7 +2912,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408200", "GEOID10": "06001408200", "NAME10": "4082", "NAMELSAD10": "Census Tract 4082", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 901754, "AWATER10": 0, "INTPTLAT10": "+37.7751005", "INTPTLON10": "-122.1755727" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.175050, 37.780213 ], [ -122.174749, 37.779127 ], [ -122.173848, 37.778992 ], [ -122.173076, 37.778618 ], [ -122.171917, 37.777703 ], [ -122.171488, 37.777228 ], [ -122.171016, 37.776481 ], [ -122.170844, 37.776074 ], [ -122.169814, 37.774921 ], [ -122.169600, 37.774412 ], [ -122.169728, 37.774344 ], [ -122.169771, 37.774141 ], [ -122.169042, 37.773225 ], [ -122.168956, 37.772580 ], [ -122.169900, 37.770817 ], [ -122.171402, 37.769493 ], [ -122.172003, 37.769188 ], [ -122.173119, 37.769663 ], [ -122.173247, 37.769663 ], [ -122.176723, 37.771325 ], [ -122.177968, 37.772547 ], [ -122.180157, 37.774243 ], [ -122.181358, 37.774989 ], [ -122.182345, 37.775498 ], [ -122.184019, 37.776481 ], [ -122.183204, 37.776922 ], [ -122.182388, 37.777533 ], [ -122.181702, 37.778177 ], [ -122.180843, 37.779331 ], [ -122.180629, 37.779534 ], [ -122.180371, 37.779670 ], [ -122.179856, 37.779840 ], [ -122.178268, 37.779840 ], [ -122.176981, 37.779907 ], [ -122.175050, 37.780213 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408500", "GEOID10": "06001408500", "NAME10": "4085", "NAMELSAD10": "Census Tract 4085", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 831360, "AWATER10": 0, "INTPTLAT10": "+37.7604176", "INTPTLON10": "-122.1785112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.177196, 37.765830 ], [ -122.175694, 37.764948 ], [ -122.175350, 37.764676 ], [ -122.172561, 37.761928 ], [ -122.171273, 37.760842 ], [ -122.170544, 37.759994 ], [ -122.179470, 37.755651 ], [ -122.187066, 37.759248 ], [ -122.186680, 37.759655 ], [ -122.177753, 37.765355 ], [ -122.177410, 37.765592 ], [ -122.177196, 37.765830 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "408500", "GEOID10": "06001408500", "NAME10": "4085", "NAMELSAD10": "Census Tract 4085", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 831360, "AWATER10": 0, "INTPTLAT10": "+37.7604176", "INTPTLON10": "-122.1785112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.177196, 37.765830 ], [ -122.175694, 37.764948 ], [ -122.175350, 37.764676 ], [ -122.172561, 37.761928 ], [ -122.171273, 37.760842 ], [ -122.170544, 37.759994 ], [ -122.179470, 37.755651 ], [ -122.187066, 37.759248 ], [ -122.186637, 37.759655 ], [ -122.185521, 37.760401 ], [ -122.177753, 37.765355 ], [ -122.177410, 37.765592 ], [ -122.177196, 37.765830 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "409600", "GEOID10": "06001409600", "NAME10": "4096", "NAMELSAD10": "Census Tract 4096", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 747479, "AWATER10": 0, "INTPTLAT10": "+37.7532669", "INTPTLON10": "-122.1726197" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.172303, 37.759146 ], [ -122.171659, 37.758366 ], [ -122.167969, 37.753344 ], [ -122.167583, 37.752801 ], [ -122.167883, 37.752631 ], [ -122.167196, 37.751749 ], [ -122.167969, 37.751410 ], [ -122.168312, 37.751274 ], [ -122.167969, 37.750833 ], [ -122.167153, 37.749713 ], [ -122.167969, 37.749340 ], [ -122.169299, 37.748729 ], [ -122.172303, 37.747304 ], [ -122.172518, 37.747236 ], [ -122.173548, 37.748560 ], [ -122.175350, 37.751105 ], [ -122.175865, 37.751715 ], [ -122.178097, 37.754803 ], [ -122.178483, 37.755176 ], [ -122.179470, 37.755651 ], [ -122.172303, 37.759146 ] ] ] } } , @@ -3002,7 +3002,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "422400", "GEOID10": "06001422400", "NAME10": "4224", "NAMELSAD10": "Census Tract 4224", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 475569, "AWATER10": 0, "INTPTLAT10": "+37.8752396", "INTPTLON10": "-122.2695878" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.265773, 37.878817 ], [ -122.265644, 37.876988 ], [ -122.265429, 37.876513 ], [ -122.265558, 37.875599 ], [ -122.265387, 37.874311 ], [ -122.266331, 37.874176 ], [ -122.266374, 37.874108 ], [ -122.266159, 37.872380 ], [ -122.270751, 37.871838 ], [ -122.273068, 37.871500 ], [ -122.273755, 37.877800 ], [ -122.265773, 37.878817 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "421500", "GEOID10": "06001421500", "NAME10": "4215", "NAMELSAD10": "Census Tract 4215", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1590672, "AWATER10": 3635, "INTPTLAT10": "+37.8920346", "INTPTLON10": "-122.2590314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.259679, 37.899883 ], [ -122.259464, 37.899781 ], [ -122.258649, 37.899003 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899138 ], [ -122.257190, 37.899815 ], [ -122.256932, 37.899849 ], [ -122.256589, 37.899443 ], [ -122.256374, 37.898901 ], [ -122.256031, 37.898325 ], [ -122.256331, 37.897851 ], [ -122.256289, 37.896971 ], [ -122.256031, 37.896632 ], [ -122.255816, 37.896463 ], [ -122.255473, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255516, 37.895955 ], [ -122.255044, 37.896327 ], [ -122.254915, 37.896361 ], [ -122.254400, 37.896192 ], [ -122.253757, 37.896226 ], [ -122.253113, 37.895616 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894498 ], [ -122.252812, 37.894431 ], [ -122.253113, 37.894058 ], [ -122.252941, 37.893753 ], [ -122.252555, 37.893686 ], [ -122.252340, 37.893550 ], [ -122.252126, 37.893550 ], [ -122.251439, 37.893821 ], [ -122.251139, 37.893855 ], [ -122.249465, 37.893076 ], [ -122.248993, 37.891213 ], [ -122.249250, 37.890976 ], [ -122.249722, 37.890942 ], [ -122.249937, 37.890976 ], [ -122.250323, 37.891213 ], [ -122.250795, 37.891315 ], [ -122.251611, 37.891112 ], [ -122.251954, 37.890909 ], [ -122.252426, 37.890401 ], [ -122.252254, 37.889960 ], [ -122.253113, 37.889791 ], [ -122.253284, 37.889689 ], [ -122.253156, 37.889554 ], [ -122.252769, 37.889351 ], [ -122.252684, 37.888436 ], [ -122.252812, 37.888233 ], [ -122.253199, 37.888131 ], [ -122.253456, 37.888199 ], [ -122.253928, 37.889012 ], [ -122.254143, 37.889147 ], [ -122.254143, 37.888809 ], [ -122.254400, 37.888436 ], [ -122.254357, 37.887928 ], [ -122.254529, 37.887657 ], [ -122.254744, 37.887759 ], [ -122.254829, 37.887962 ], [ -122.254958, 37.888064 ], [ -122.255130, 37.888097 ], [ -122.255387, 37.888030 ], [ -122.255387, 37.887725 ], [ -122.255602, 37.887556 ], [ -122.255774, 37.887623 ], [ -122.255902, 37.887996 ], [ -122.256331, 37.888030 ], [ -122.256546, 37.887962 ], [ -122.256503, 37.887691 ], [ -122.256932, 37.887420 ], [ -122.256975, 37.887285 ], [ -122.256804, 37.886980 ], [ -122.256846, 37.886878 ], [ -122.257833, 37.886539 ], [ -122.258048, 37.886539 ], [ -122.258692, 37.886777 ], [ -122.258992, 37.886675 ], [ -122.259164, 37.886472 ], [ -122.259164, 37.885760 ], [ -122.259808, 37.886065 ], [ -122.259808, 37.886506 ], [ -122.260194, 37.886336 ], [ -122.260280, 37.886201 ], [ -122.260194, 37.885964 ], [ -122.258949, 37.884609 ], [ -122.258949, 37.884135 ], [ -122.259164, 37.884033 ], [ -122.259808, 37.884033 ], [ -122.259893, 37.883965 ], [ -122.259979, 37.883796 ], [ -122.259851, 37.883288 ], [ -122.260623, 37.883186 ], [ -122.260709, 37.883085 ], [ -122.261696, 37.883051 ], [ -122.262597, 37.884101 ], [ -122.262855, 37.884575 ], [ -122.262812, 37.885117 ], [ -122.262383, 37.886539 ], [ -122.264142, 37.886370 ], [ -122.266588, 37.886031 ], [ -122.266846, 37.887759 ], [ -122.266846, 37.888199 ], [ -122.266717, 37.888639 ], [ -122.266717, 37.889012 ], [ -122.267103, 37.890096 ], [ -122.267232, 37.890705 ], [ -122.267189, 37.891688 ], [ -122.266932, 37.892263 ], [ -122.266932, 37.892466 ], [ -122.267146, 37.892805 ], [ -122.267747, 37.893144 ], [ -122.260795, 37.897546 ], [ -122.261953, 37.898495 ], [ -122.260709, 37.899646 ], [ -122.260108, 37.899883 ], [ -122.259679, 37.899883 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "421500", "GEOID10": "06001421500", "NAME10": "4215", "NAMELSAD10": "Census Tract 4215", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1590672, "AWATER10": 3635, "INTPTLAT10": "+37.8920346", "INTPTLON10": "-122.2590314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.259679, 37.899883 ], [ -122.259336, 37.899680 ], [ -122.258649, 37.899003 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899138 ], [ -122.257190, 37.899815 ], [ -122.256932, 37.899849 ], [ -122.256589, 37.899443 ], [ -122.256374, 37.898901 ], [ -122.256031, 37.898325 ], [ -122.256331, 37.897750 ], [ -122.256289, 37.896971 ], [ -122.256031, 37.896632 ], [ -122.255816, 37.896463 ], [ -122.255473, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255516, 37.895955 ], [ -122.255044, 37.896327 ], [ -122.254915, 37.896361 ], [ -122.254400, 37.896192 ], [ -122.253757, 37.896226 ], [ -122.253113, 37.895616 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894498 ], [ -122.252812, 37.894431 ], [ -122.253113, 37.894058 ], [ -122.252941, 37.893753 ], [ -122.252555, 37.893686 ], [ -122.252340, 37.893550 ], [ -122.252126, 37.893550 ], [ -122.251439, 37.893821 ], [ -122.251139, 37.893855 ], [ -122.249465, 37.893076 ], [ -122.248993, 37.891213 ], [ -122.249250, 37.890976 ], [ -122.249722, 37.890942 ], [ -122.249937, 37.890976 ], [ -122.250323, 37.891213 ], [ -122.250795, 37.891315 ], [ -122.251611, 37.891112 ], [ -122.251954, 37.890909 ], [ -122.252426, 37.890401 ], [ -122.252254, 37.889960 ], [ -122.253113, 37.889791 ], [ -122.253284, 37.889689 ], [ -122.253156, 37.889554 ], [ -122.252769, 37.889351 ], [ -122.252684, 37.888436 ], [ -122.252812, 37.888233 ], [ -122.253199, 37.888131 ], [ -122.253456, 37.888199 ], [ -122.253928, 37.889012 ], [ -122.254143, 37.889147 ], [ -122.254143, 37.888809 ], [ -122.254400, 37.888436 ], [ -122.254357, 37.887928 ], [ -122.254529, 37.887657 ], [ -122.254744, 37.887759 ], [ -122.254829, 37.887962 ], [ -122.254958, 37.888064 ], [ -122.255130, 37.888097 ], [ -122.255387, 37.888030 ], [ -122.255387, 37.887725 ], [ -122.255602, 37.887556 ], [ -122.255774, 37.887623 ], [ -122.255902, 37.887996 ], [ -122.256331, 37.888030 ], [ -122.256546, 37.887962 ], [ -122.256503, 37.887691 ], [ -122.256932, 37.887420 ], [ -122.256975, 37.887285 ], [ -122.256804, 37.886980 ], [ -122.256846, 37.886878 ], [ -122.257833, 37.886539 ], [ -122.258048, 37.886539 ], [ -122.258692, 37.886777 ], [ -122.258992, 37.886675 ], [ -122.259164, 37.886472 ], [ -122.259164, 37.885760 ], [ -122.259808, 37.886065 ], [ -122.259808, 37.886506 ], [ -122.260194, 37.886336 ], [ -122.260280, 37.886201 ], [ -122.260194, 37.885964 ], [ -122.258949, 37.884609 ], [ -122.258949, 37.884135 ], [ -122.259164, 37.884033 ], [ -122.259808, 37.884033 ], [ -122.259893, 37.883965 ], [ -122.259979, 37.883796 ], [ -122.259851, 37.883288 ], [ -122.260623, 37.883186 ], [ -122.260709, 37.883085 ], [ -122.261696, 37.883051 ], [ -122.262597, 37.884101 ], [ -122.262855, 37.884575 ], [ -122.262812, 37.885117 ], [ -122.262383, 37.886539 ], [ -122.264142, 37.886370 ], [ -122.266588, 37.886031 ], [ -122.266846, 37.887759 ], [ -122.266846, 37.888199 ], [ -122.266717, 37.888639 ], [ -122.266717, 37.889012 ], [ -122.267103, 37.890096 ], [ -122.267232, 37.890705 ], [ -122.267189, 37.891688 ], [ -122.266932, 37.892263 ], [ -122.266932, 37.892466 ], [ -122.267146, 37.892805 ], [ -122.267747, 37.893144 ], [ -122.260795, 37.897546 ], [ -122.261953, 37.898495 ], [ -122.260709, 37.899646 ], [ -122.260108, 37.899883 ], [ -122.259679, 37.899883 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "422500", "GEOID10": "06001422500", "NAME10": "4225", "NAMELSAD10": "Census Tract 4225", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 460332, "AWATER10": 0, "INTPTLAT10": "+37.8773131", "INTPTLON10": "-122.2603183" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.257276, 37.880578 ], [ -122.257104, 37.880544 ], [ -122.256632, 37.879968 ], [ -122.255602, 37.880206 ], [ -122.255044, 37.878410 ], [ -122.255344, 37.878342 ], [ -122.254744, 37.875633 ], [ -122.255731, 37.875666 ], [ -122.260151, 37.875124 ], [ -122.263927, 37.874616 ], [ -122.264657, 37.874379 ], [ -122.265387, 37.874311 ], [ -122.265558, 37.875599 ], [ -122.265429, 37.876513 ], [ -122.265644, 37.876988 ], [ -122.265773, 37.878817 ], [ -122.258048, 37.879833 ], [ -122.257576, 37.879799 ], [ -122.257619, 37.879901 ], [ -122.257876, 37.880070 ], [ -122.258048, 37.880409 ], [ -122.258177, 37.880443 ], [ -122.258220, 37.880578 ], [ -122.257748, 37.880443 ], [ -122.257276, 37.880578 ] ] ] } } , @@ -3014,7 +3014,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423602", "GEOID10": "06001423602", "NAME10": "4236.02", "NAMELSAD10": "Census Tract 4236.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 403177, "AWATER10": 0, "INTPTLAT10": "+37.8631882", "INTPTLON10": "-122.2592723" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.253971, 37.865740 ], [ -122.253542, 37.861810 ], [ -122.257490, 37.861573 ], [ -122.257962, 37.861742 ], [ -122.259035, 37.861404 ], [ -122.264528, 37.860692 ], [ -122.265258, 37.864250 ], [ -122.253971, 37.865740 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423700", "GEOID10": "06001423700", "NAME10": "4237", "NAMELSAD10": "Census Tract 4237", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 744052, "AWATER10": 0, "INTPTLAT10": "+37.8618413", "INTPTLON10": "-122.2489230" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.247448, 37.866147 ], [ -122.246118, 37.866113 ], [ -122.245774, 37.866011 ], [ -122.244916, 37.865944 ], [ -122.244658, 37.863708 ], [ -122.244315, 37.862657 ], [ -122.244058, 37.860692 ], [ -122.243929, 37.860286 ], [ -122.244015, 37.859235 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.858930 ], [ -122.243929, 37.858591 ], [ -122.243328, 37.858727 ], [ -122.242255, 37.857575 ], [ -122.242727, 37.857710 ], [ -122.243285, 37.857982 ], [ -122.243843, 37.858117 ], [ -122.244315, 37.858151 ], [ -122.248993, 37.857846 ], [ -122.250752, 37.857778 ], [ -122.251096, 37.857677 ], [ -122.252169, 37.857643 ], [ -122.252297, 37.857507 ], [ -122.252297, 37.857372 ], [ -122.252169, 37.857236 ], [ -122.252812, 37.857101 ], [ -122.253113, 37.857101 ], [ -122.253113, 37.857507 ], [ -122.253971, 37.865740 ], [ -122.247448, 37.866147 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423700", "GEOID10": "06001423700", "NAME10": "4237", "NAMELSAD10": "Census Tract 4237", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 744052, "AWATER10": 0, "INTPTLAT10": "+37.8618413", "INTPTLON10": "-122.2489230" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.247448, 37.866147 ], [ -122.246118, 37.866113 ], [ -122.245774, 37.866011 ], [ -122.244916, 37.865944 ], [ -122.244658, 37.863708 ], [ -122.244315, 37.862657 ], [ -122.244058, 37.860692 ], [ -122.243929, 37.860286 ], [ -122.244015, 37.859235 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.858930 ], [ -122.243929, 37.858591 ], [ -122.243328, 37.858727 ], [ -122.242255, 37.857575 ], [ -122.242727, 37.857710 ], [ -122.243285, 37.857982 ], [ -122.243843, 37.858117 ], [ -122.244315, 37.858151 ], [ -122.250710, 37.857778 ], [ -122.251096, 37.857677 ], [ -122.252169, 37.857643 ], [ -122.252297, 37.857507 ], [ -122.252297, 37.857372 ], [ -122.252169, 37.857236 ], [ -122.252812, 37.857101 ], [ -122.253113, 37.857101 ], [ -122.253113, 37.857507 ], [ -122.253971, 37.865740 ], [ -122.247448, 37.866147 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "422000", "GEOID10": "06001422000", "NAME10": "4220", "NAMELSAD10": "Census Tract 4220", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4498259, "AWATER10": 5864359, "INTPTLAT10": "+37.8590327", "INTPTLON10": "-122.3013426" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296886, 37.883491 ], [ -122.295341, 37.878681 ], [ -122.300835, 37.877563 ], [ -122.297788, 37.868044 ], [ -122.296071, 37.862894 ], [ -122.295513, 37.860963 ], [ -122.295170, 37.860014 ], [ -122.293324, 37.860319 ], [ -122.289634, 37.861099 ], [ -122.288475, 37.857507 ], [ -122.288260, 37.856931 ], [ -122.287617, 37.854796 ], [ -122.326627, 37.854796 ], [ -122.331219, 37.857168 ], [ -122.331390, 37.857507 ], [ -122.332377, 37.859303 ], [ -122.332635, 37.862657 ], [ -122.331347, 37.866418 ], [ -122.329245, 37.871263 ], [ -122.325897, 37.874379 ], [ -122.327614, 37.877360 ], [ -122.312465, 37.881391 ], [ -122.308559, 37.882238 ], [ -122.308388, 37.882272 ], [ -122.308345, 37.882170 ], [ -122.308259, 37.882136 ], [ -122.307358, 37.881865 ], [ -122.307100, 37.881865 ], [ -122.305212, 37.882204 ], [ -122.304525, 37.882272 ], [ -122.303324, 37.882272 ], [ -122.303109, 37.882306 ], [ -122.302938, 37.882407 ], [ -122.302508, 37.882441 ], [ -122.301092, 37.882780 ], [ -122.299161, 37.882983 ], [ -122.298131, 37.883186 ], [ -122.297745, 37.883356 ], [ -122.297101, 37.883491 ], [ -122.296886, 37.883491 ] ] ] } } , @@ -3028,17 +3028,17 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423902", "GEOID10": "06001423902", "NAME10": "4239.02", "NAMELSAD10": "Census Tract 4239.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 319790, "AWATER10": 0, "INTPTLAT10": "+37.8547152", "INTPTLON10": "-122.2573724" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.253113, 37.857101 ], [ -122.252941, 37.854796 ], [ -122.262297, 37.854796 ], [ -122.262468, 37.855644 ], [ -122.262425, 37.855881 ], [ -122.253113, 37.857101 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423800", "GEOID10": "06001423800", "NAME10": "4238", "NAMELSAD10": "Census Tract 4238", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1041971, "AWATER10": 0, "INTPTLAT10": "+37.8547587", "INTPTLON10": "-122.2441385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.244315, 37.858151 ], [ -122.243843, 37.858117 ], [ -122.243285, 37.857982 ], [ -122.242727, 37.857710 ], [ -122.242041, 37.857507 ], [ -122.241697, 37.857236 ], [ -122.239380, 37.857168 ], [ -122.238564, 37.857338 ], [ -122.237706, 37.857304 ], [ -122.237320, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.234960, 37.857507 ], [ -122.234702, 37.857134 ], [ -122.234573, 37.856525 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.253113, 37.857101 ], [ -122.252812, 37.857101 ], [ -122.252169, 37.857236 ], [ -122.252297, 37.857372 ], [ -122.252297, 37.857507 ], [ -122.252169, 37.857643 ], [ -122.251096, 37.857677 ], [ -122.250752, 37.857778 ], [ -122.248993, 37.857846 ], [ -122.244315, 37.858151 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "423800", "GEOID10": "06001423800", "NAME10": "4238", "NAMELSAD10": "Census Tract 4238", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1041971, "AWATER10": 0, "INTPTLAT10": "+37.8547587", "INTPTLON10": "-122.2441385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.244315, 37.858151 ], [ -122.243843, 37.858117 ], [ -122.243285, 37.857982 ], [ -122.242727, 37.857710 ], [ -122.242041, 37.857507 ], [ -122.241697, 37.857236 ], [ -122.239380, 37.857168 ], [ -122.238564, 37.857338 ], [ -122.237706, 37.857304 ], [ -122.237320, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.234960, 37.857507 ], [ -122.234702, 37.857134 ], [ -122.234573, 37.856525 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.253113, 37.857101 ], [ -122.252812, 37.857101 ], [ -122.252169, 37.857236 ], [ -122.252297, 37.857372 ], [ -122.252297, 37.857507 ], [ -122.252169, 37.857643 ], [ -122.251096, 37.857677 ], [ -122.250710, 37.857778 ], [ -122.244315, 37.858151 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220840, 37.860286 ], [ -122.220669, 37.860252 ], [ -122.220283, 37.859710 ], [ -122.219939, 37.859506 ], [ -122.219768, 37.859472 ], [ -122.219510, 37.859574 ], [ -122.219381, 37.859540 ], [ -122.219424, 37.859269 ], [ -122.219639, 37.858896 ], [ -122.219639, 37.858727 ], [ -122.219210, 37.858354 ], [ -122.219338, 37.857643 ], [ -122.219124, 37.857507 ], [ -122.218652, 37.857338 ], [ -122.217879, 37.857372 ], [ -122.217879, 37.856558 ], [ -122.217622, 37.856457 ], [ -122.216635, 37.856626 ], [ -122.216592, 37.856389 ], [ -122.216721, 37.856253 ], [ -122.216721, 37.856084 ], [ -122.216549, 37.856016 ], [ -122.216249, 37.856016 ], [ -122.215734, 37.856220 ], [ -122.215304, 37.856152 ], [ -122.215004, 37.856253 ], [ -122.214661, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214446, 37.856016 ], [ -122.214103, 37.855881 ], [ -122.214017, 37.855677 ], [ -122.213330, 37.856220 ], [ -122.212601, 37.856931 ], [ -122.212386, 37.857236 ], [ -122.211871, 37.856863 ], [ -122.210798, 37.855034 ], [ -122.210841, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.223544, 37.855101 ], [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ], [ -122.222128, 37.854966 ], [ -122.221785, 37.855068 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ], [ -122.222342, 37.856931 ], [ -122.222257, 37.857304 ], [ -122.222471, 37.857507 ], [ -122.222600, 37.857643 ], [ -122.222643, 37.857812 ], [ -122.222042, 37.858354 ], [ -122.222085, 37.858829 ], [ -122.221956, 37.858930 ], [ -122.221441, 37.858998 ], [ -122.221098, 37.859913 ], [ -122.221055, 37.860218 ], [ -122.220840, 37.860286 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "404400", "GEOID10": "06001404400", "NAME10": "4044", "NAMELSAD10": "Census Tract 4044", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4124684, "AWATER10": 0, "INTPTLAT10": "+37.8462442", "INTPTLON10": "-122.2150894" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.220840, 37.860286 ], [ -122.220669, 37.860252 ], [ -122.220283, 37.859710 ], [ -122.219939, 37.859506 ], [ -122.219768, 37.859472 ], [ -122.219510, 37.859574 ], [ -122.219381, 37.859540 ], [ -122.219424, 37.859269 ], [ -122.219639, 37.858896 ], [ -122.219639, 37.858727 ], [ -122.219296, 37.858490 ], [ -122.219210, 37.858354 ], [ -122.219338, 37.857643 ], [ -122.219124, 37.857507 ], [ -122.218652, 37.857338 ], [ -122.217879, 37.857372 ], [ -122.217879, 37.856558 ], [ -122.217622, 37.856457 ], [ -122.216635, 37.856626 ], [ -122.216592, 37.856389 ], [ -122.216721, 37.856253 ], [ -122.216721, 37.856084 ], [ -122.216549, 37.856016 ], [ -122.216249, 37.856016 ], [ -122.215734, 37.856220 ], [ -122.215304, 37.856152 ], [ -122.215004, 37.856253 ], [ -122.214661, 37.856287 ], [ -122.213802, 37.856016 ], [ -122.214446, 37.856016 ], [ -122.214103, 37.855881 ], [ -122.214017, 37.855677 ], [ -122.213330, 37.856220 ], [ -122.212601, 37.856931 ], [ -122.212386, 37.857236 ], [ -122.211871, 37.856863 ], [ -122.210798, 37.855034 ], [ -122.210841, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.223544, 37.855101 ], [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ], [ -122.222128, 37.854966 ], [ -122.221785, 37.855068 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ], [ -122.222342, 37.856931 ], [ -122.222257, 37.857304 ], [ -122.222471, 37.857507 ], [ -122.222600, 37.857643 ], [ -122.222643, 37.857812 ], [ -122.222042, 37.858354 ], [ -122.222085, 37.858829 ], [ -122.221956, 37.858930 ], [ -122.221441, 37.858998 ], [ -122.221098, 37.859913 ], [ -122.221055, 37.860218 ], [ -122.220840, 37.860286 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400100", "GEOID10": "06001400100", "NAME10": "4001", "NAMELSAD10": "Census Tract 4001", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6882245, "AWATER10": 0, "INTPTLAT10": "+37.8675947", "INTPTLON10": "-122.2319033" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.246675, 37.885252 ], [ -122.244058, 37.883220 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882915 ], [ -122.238693, 37.883322 ], [ -122.230968, 37.881323 ], [ -122.225776, 37.879223 ], [ -122.223887, 37.878342 ], [ -122.221570, 37.875531 ], [ -122.218738, 37.872922 ], [ -122.217364, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217879, 37.867875 ], [ -122.219167, 37.867231 ], [ -122.221484, 37.865029 ], [ -122.220368, 37.864419 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212601, 37.856931 ], [ -122.213674, 37.855915 ], [ -122.214017, 37.855677 ], [ -122.214103, 37.855881 ], [ -122.214446, 37.856016 ], [ -122.213802, 37.856016 ], [ -122.214661, 37.856287 ], [ -122.215004, 37.856253 ], [ -122.215304, 37.856152 ], [ -122.215734, 37.856220 ], [ -122.216249, 37.856016 ], [ -122.216549, 37.856016 ], [ -122.216721, 37.856084 ], [ -122.216721, 37.856253 ], [ -122.216592, 37.856389 ], [ -122.216635, 37.856626 ], [ -122.217622, 37.856457 ], [ -122.217879, 37.856558 ], [ -122.217879, 37.857372 ], [ -122.218652, 37.857338 ], [ -122.219124, 37.857507 ], [ -122.219338, 37.857643 ], [ -122.219210, 37.858354 ], [ -122.219639, 37.858727 ], [ -122.219639, 37.858896 ], [ -122.219424, 37.859269 ], [ -122.219381, 37.859540 ], [ -122.219510, 37.859574 ], [ -122.219768, 37.859472 ], [ -122.219939, 37.859506 ], [ -122.220283, 37.859710 ], [ -122.220669, 37.860252 ], [ -122.220840, 37.860286 ], [ -122.221055, 37.860218 ], [ -122.221098, 37.859913 ], [ -122.221441, 37.858998 ], [ -122.221956, 37.858930 ], [ -122.222085, 37.858829 ], [ -122.222042, 37.858354 ], [ -122.222643, 37.857812 ], [ -122.222600, 37.857643 ], [ -122.222471, 37.857507 ], [ -122.222257, 37.857304 ], [ -122.222342, 37.856931 ], [ -122.221656, 37.855949 ], [ -122.221656, 37.855169 ], [ -122.221785, 37.855068 ], [ -122.222128, 37.854966 ], [ -122.222342, 37.854966 ], [ -122.222686, 37.854864 ], [ -122.223287, 37.855101 ], [ -122.223544, 37.855101 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.234573, 37.856525 ], [ -122.234702, 37.857134 ], [ -122.234960, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.237320, 37.857507 ], [ -122.237706, 37.857304 ], [ -122.238564, 37.857338 ], [ -122.239380, 37.857168 ], [ -122.241697, 37.857236 ], [ -122.242041, 37.857507 ], [ -122.242255, 37.857575 ], [ -122.243328, 37.858727 ], [ -122.243929, 37.858591 ], [ -122.243929, 37.858930 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.860286 ], [ -122.244058, 37.860692 ], [ -122.244315, 37.862657 ], [ -122.244658, 37.863708 ], [ -122.244916, 37.865944 ], [ -122.244873, 37.866452 ], [ -122.245173, 37.867739 ], [ -122.245088, 37.868383 ], [ -122.245302, 37.869467 ], [ -122.245216, 37.871771 ], [ -122.245259, 37.872787 ], [ -122.246203, 37.879325 ], [ -122.246332, 37.880985 ], [ -122.246633, 37.882577 ], [ -122.246547, 37.884778 ], [ -122.246675, 37.885252 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "400100", "GEOID10": "06001400100", "NAME10": "4001", "NAMELSAD10": "Census Tract 4001", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6882245, "AWATER10": 0, "INTPTLAT10": "+37.8675947", "INTPTLON10": "-122.2319033" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.246675, 37.885252 ], [ -122.244058, 37.883220 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882915 ], [ -122.238693, 37.883322 ], [ -122.230968, 37.881323 ], [ -122.225776, 37.879223 ], [ -122.223887, 37.878342 ], [ -122.221570, 37.875531 ], [ -122.218738, 37.872922 ], [ -122.217364, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217879, 37.867875 ], [ -122.219167, 37.867231 ], [ -122.221484, 37.865029 ], [ -122.220368, 37.864419 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.212601, 37.856931 ], [ -122.213674, 37.855915 ], [ -122.214017, 37.855677 ], [ -122.214103, 37.855881 ], [ -122.214446, 37.856016 ], [ -122.213802, 37.856016 ], [ -122.214661, 37.856287 ], [ -122.215004, 37.856253 ], [ -122.215304, 37.856152 ], [ -122.215734, 37.856220 ], [ -122.216249, 37.856016 ], [ -122.216549, 37.856016 ], [ -122.216721, 37.856084 ], [ -122.216721, 37.856253 ], [ -122.216592, 37.856389 ], [ -122.216635, 37.856626 ], [ -122.217622, 37.856457 ], [ -122.217879, 37.856558 ], [ -122.217879, 37.857372 ], [ -122.218652, 37.857338 ], [ -122.219124, 37.857507 ], [ -122.219338, 37.857643 ], [ -122.219210, 37.858354 ], [ -122.219296, 37.858490 ], [ -122.219639, 37.858727 ], [ -122.219639, 37.858896 ], [ -122.219424, 37.859269 ], [ -122.219381, 37.859540 ], [ -122.219510, 37.859574 ], [ -122.219768, 37.859472 ], [ -122.219939, 37.859506 ], [ -122.220283, 37.859710 ], [ -122.220669, 37.860252 ], [ -122.220840, 37.860286 ], [ -122.221055, 37.860218 ], [ -122.221098, 37.859913 ], [ -122.221441, 37.858998 ], [ -122.221956, 37.858930 ], [ -122.222085, 37.858829 ], [ -122.222042, 37.858354 ], [ -122.222643, 37.857812 ], [ -122.222600, 37.857643 ], [ -122.222471, 37.857507 ], [ -122.222257, 37.857304 ], [ -122.222342, 37.856931 ], [ -122.221656, 37.855949 ], [ -122.221656, 37.855169 ], [ -122.221785, 37.855068 ], [ -122.222128, 37.854966 ], [ -122.222342, 37.854966 ], [ -122.222686, 37.854864 ], [ -122.223287, 37.855101 ], [ -122.223544, 37.855101 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.234573, 37.856525 ], [ -122.234702, 37.857134 ], [ -122.234960, 37.857507 ], [ -122.237020, 37.857643 ], [ -122.237320, 37.857507 ], [ -122.237706, 37.857304 ], [ -122.238564, 37.857338 ], [ -122.239380, 37.857168 ], [ -122.241697, 37.857236 ], [ -122.242041, 37.857507 ], [ -122.242255, 37.857575 ], [ -122.243328, 37.858727 ], [ -122.243929, 37.858591 ], [ -122.243929, 37.858930 ], [ -122.244015, 37.858998 ], [ -122.243929, 37.860286 ], [ -122.244058, 37.860692 ], [ -122.244315, 37.862657 ], [ -122.244658, 37.863708 ], [ -122.244916, 37.865944 ], [ -122.244873, 37.866452 ], [ -122.245173, 37.867739 ], [ -122.245088, 37.868383 ], [ -122.245302, 37.869467 ], [ -122.245216, 37.871771 ], [ -122.245259, 37.872787 ], [ -122.246203, 37.879325 ], [ -122.246332, 37.880985 ], [ -122.246633, 37.882577 ], [ -122.246547, 37.884778 ], [ -122.246675, 37.885252 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 793 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078018, 37.495120 ], [ -122.072868, 37.494507 ], [ -122.065916, 37.492941 ], [ -122.061496, 37.491613 ], [ -122.061582, 37.486675 ], [ -122.060766, 37.474926 ], [ -122.059865, 37.469477 ], [ -122.055960, 37.463959 ], [ -122.048707, 37.461642 ], [ -122.045703, 37.461813 ], [ -122.044587, 37.460654 ], [ -122.046561, 37.459530 ], [ -122.047806, 37.459019 ], [ -122.048965, 37.458917 ], [ -122.050295, 37.458917 ], [ -122.051239, 37.459019 ], [ -122.051926, 37.459258 ], [ -122.057505, 37.462698 ], [ -122.081494, 37.477821 ], [ -122.103982, 37.493690 ], [ -122.098575, 37.494882 ], [ -122.091064, 37.495018 ], [ -122.086000, 37.495018 ], [ -122.078018, 37.495120 ] ] ], [ [ [ -122.153506, 37.582133 ], [ -122.151790, 37.579413 ], [ -122.141018, 37.562201 ], [ -122.135782, 37.558867 ], [ -122.128572, 37.548116 ], [ -122.122092, 37.536104 ], [ -122.120419, 37.532837 ], [ -122.118530, 37.526405 ], [ -122.117286, 37.513675 ], [ -122.117372, 37.506900 ], [ -122.149429, 37.546143 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569583 ], [ -122.171402, 37.573869 ], [ -122.171402, 37.582133 ], [ -122.153506, 37.582133 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.078018, 37.495120 ], [ -122.072868, 37.494507 ], [ -122.065916, 37.492941 ], [ -122.061496, 37.491613 ], [ -122.061582, 37.486675 ], [ -122.060766, 37.474926 ], [ -122.059865, 37.469477 ], [ -122.055960, 37.463959 ], [ -122.048707, 37.461642 ], [ -122.045703, 37.461813 ], [ -122.044587, 37.460654 ], [ -122.046561, 37.459530 ], [ -122.047806, 37.459019 ], [ -122.048965, 37.458883 ], [ -122.050295, 37.458883 ], [ -122.051239, 37.459019 ], [ -122.051926, 37.459258 ], [ -122.057505, 37.462698 ], [ -122.081494, 37.477821 ], [ -122.103982, 37.493690 ], [ -122.098575, 37.494882 ], [ -122.091064, 37.495018 ], [ -122.086000, 37.495018 ], [ -122.078018, 37.495120 ] ] ], [ [ [ -122.153506, 37.582133 ], [ -122.151790, 37.579413 ], [ -122.141018, 37.562201 ], [ -122.135782, 37.558867 ], [ -122.128572, 37.548116 ], [ -122.122092, 37.536104 ], [ -122.120419, 37.532837 ], [ -122.118530, 37.526405 ], [ -122.117286, 37.513675 ], [ -122.117372, 37.506900 ], [ -122.149429, 37.546143 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569583 ], [ -122.171402, 37.573869 ], [ -122.171402, 37.582133 ], [ -122.153506, 37.582133 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "437101", "GEOID10": "06001437101", "NAME10": "4371.01", "NAMELSAD10": "Census Tract 4371.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 48854999, "AWATER10": 7227925, "INTPTLAT10": "+37.6059048", "INTPTLON10": "-122.1268730" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.096171, 37.582133 ], [ -122.096043, 37.582031 ], [ -122.095656, 37.579855 ], [ -122.093468, 37.579413 ], [ -122.089734, 37.578732 ], [ -122.088790, 37.578902 ], [ -122.088189, 37.578834 ], [ -122.088146, 37.574583 ], [ -122.083039, 37.575807 ], [ -122.082782, 37.575161 ], [ -122.088060, 37.573596 ], [ -122.085314, 37.568324 ], [ -122.085485, 37.568358 ], [ -122.086043, 37.566555 ], [ -122.086172, 37.566419 ], [ -122.087202, 37.565535 ], [ -122.088060, 37.564616 ], [ -122.088618, 37.564344 ], [ -122.089176, 37.564276 ], [ -122.089477, 37.562167 ], [ -122.089691, 37.562065 ], [ -122.090549, 37.561146 ], [ -122.091064, 37.561215 ], [ -122.093682, 37.561895 ], [ -122.093897, 37.562269 ], [ -122.094026, 37.563052 ], [ -122.095485, 37.564344 ], [ -122.097845, 37.564582 ], [ -122.098961, 37.562371 ], [ -122.099347, 37.562133 ], [ -122.100677, 37.562575 ], [ -122.101407, 37.562915 ], [ -122.102180, 37.563392 ], [ -122.102566, 37.563494 ], [ -122.102823, 37.563460 ], [ -122.103295, 37.563222 ], [ -122.104797, 37.562201 ], [ -122.106857, 37.561180 ], [ -122.107544, 37.561010 ], [ -122.107801, 37.561078 ], [ -122.108188, 37.561419 ], [ -122.108402, 37.561759 ], [ -122.108445, 37.562337 ], [ -122.107716, 37.564854 ], [ -122.107544, 37.565841 ], [ -122.109518, 37.567916 ], [ -122.117715, 37.571113 ], [ -122.119646, 37.571318 ], [ -122.121105, 37.571249 ], [ -122.122607, 37.571113 ], [ -122.124968, 37.570059 ], [ -122.125568, 37.569413 ], [ -122.126083, 37.568970 ], [ -122.127628, 37.566998 ], [ -122.130203, 37.563936 ], [ -122.131405, 37.562847 ], [ -122.131619, 37.562881 ], [ -122.135782, 37.558867 ], [ -122.141018, 37.562201 ], [ -122.151790, 37.579413 ], [ -122.153506, 37.582133 ], [ -122.096171, 37.582133 ] ] ] } } , @@ -3052,7 +3052,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441501", "GEOID10": "06001441501", "NAME10": "4415.01", "NAMELSAD10": "Census Tract 4415.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2624991, "AWATER10": 0, "INTPTLAT10": "+37.5699748", "INTPTLON10": "-122.0724418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.061968, 37.582133 ], [ -122.061410, 37.579413 ], [ -122.060208, 37.574005 ], [ -122.061496, 37.572508 ], [ -122.062826, 37.571181 ], [ -122.064929, 37.568732 ], [ -122.066731, 37.566453 ], [ -122.067590, 37.565739 ], [ -122.068834, 37.564310 ], [ -122.069736, 37.563630 ], [ -122.070851, 37.563154 ], [ -122.072439, 37.562711 ], [ -122.075057, 37.562201 ], [ -122.077718, 37.561861 ], [ -122.079391, 37.561487 ], [ -122.080250, 37.561385 ], [ -122.084842, 37.561657 ], [ -122.086515, 37.561793 ], [ -122.089348, 37.562133 ], [ -122.089605, 37.562099 ], [ -122.089477, 37.562167 ], [ -122.089434, 37.562337 ], [ -122.089176, 37.564276 ], [ -122.088618, 37.564344 ], [ -122.088060, 37.564616 ], [ -122.087202, 37.565535 ], [ -122.086172, 37.566419 ], [ -122.085915, 37.566725 ], [ -122.084498, 37.567678 ], [ -122.084241, 37.567984 ], [ -122.080250, 37.569787 ], [ -122.079906, 37.569855 ], [ -122.077975, 37.570671 ], [ -122.077718, 37.570603 ], [ -122.076302, 37.569821 ], [ -122.076173, 37.569787 ], [ -122.076044, 37.569855 ], [ -122.073512, 37.572780 ], [ -122.070422, 37.576181 ], [ -122.067633, 37.579413 ], [ -122.066560, 37.580603 ], [ -122.065229, 37.582133 ], [ -122.061968, 37.582133 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440308", "GEOID10": "06001440308", "NAME10": "4403.08", "NAMELSAD10": "Census Tract 4403.08", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1843807, "AWATER10": 0, "INTPTLAT10": "+37.5893439", "INTPTLON10": "-122.0278186" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.023258, 37.582133 ], [ -122.023945, 37.580229 ], [ -122.024202, 37.579787 ], [ -122.024503, 37.579413 ], [ -122.025361, 37.578494 ], [ -122.026348, 37.579413 ], [ -122.028580, 37.581691 ], [ -122.029095, 37.582133 ], [ -122.023258, 37.582133 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.049651, 37.582133 ], [ -122.049136, 37.580875 ], [ -122.048621, 37.579413 ], [ -122.048364, 37.578596 ], [ -122.050037, 37.579413 ], [ -122.051411, 37.580093 ], [ -122.052054, 37.580331 ], [ -122.052569, 37.580671 ], [ -122.054672, 37.581725 ], [ -122.054930, 37.581249 ], [ -122.055659, 37.580365 ], [ -122.056561, 37.579413 ], [ -122.059865, 37.575603 ], [ -122.060037, 37.575365 ], [ -122.060423, 37.574889 ], [ -122.061410, 37.579413 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440308", "GEOID10": "06001440308", "NAME10": "4403.08", "NAMELSAD10": "Census Tract 4403.08", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1843807, "AWATER10": 0, "INTPTLAT10": "+37.5893439", "INTPTLON10": "-122.0278186" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.023258, 37.582133 ], [ -122.023945, 37.580229 ], [ -122.024202, 37.579787 ], [ -122.024503, 37.579413 ], [ -122.025361, 37.578494 ], [ -122.026348, 37.579413 ], [ -122.028580, 37.581691 ], [ -122.029052, 37.582133 ], [ -122.023258, 37.582133 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441301", "GEOID10": "06001441301", "NAME10": "4413.01", "NAMELSAD10": "Census Tract 4413.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3293451, "AWATER10": 0, "INTPTLAT10": "+37.5717252", "INTPTLON10": "-122.0026581" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.005663, 37.582133 ], [ -122.002187, 37.579413 ], [ -121.999440, 37.577372 ], [ -121.996737, 37.575229 ], [ -121.996264, 37.574923 ], [ -121.995492, 37.574243 ], [ -121.992188, 37.571760 ], [ -121.988754, 37.569141 ], [ -121.988754, 37.565025 ], [ -121.992188, 37.564072 ], [ -121.995835, 37.563052 ], [ -121.995964, 37.563052 ], [ -121.996050, 37.563256 ], [ -121.996350, 37.563596 ], [ -121.996822, 37.563936 ], [ -121.997423, 37.564208 ], [ -121.997895, 37.564310 ], [ -121.998410, 37.564310 ], [ -121.999569, 37.564140 ], [ -122.004075, 37.563256 ], [ -122.004590, 37.563256 ], [ -122.005234, 37.563392 ], [ -122.005877, 37.563732 ], [ -122.007551, 37.564957 ], [ -122.007980, 37.565331 ], [ -122.008624, 37.566181 ], [ -122.009139, 37.567780 ], [ -122.009397, 37.568290 ], [ -122.010212, 37.569209 ], [ -122.010770, 37.569617 ], [ -122.014546, 37.571726 ], [ -122.014117, 37.572066 ], [ -122.017422, 37.574039 ], [ -122.018323, 37.574447 ], [ -122.015018, 37.578426 ], [ -122.014289, 37.579413 ], [ -122.013345, 37.580977 ], [ -122.010641, 37.581419 ], [ -122.009869, 37.580773 ], [ -122.009439, 37.580195 ], [ -122.008109, 37.579685 ], [ -122.006693, 37.582133 ], [ -122.005663, 37.582133 ] ] ] } } , @@ -3060,11 +3062,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441503", "GEOID10": "06001441503", "NAME10": "4415.03", "NAMELSAD10": "Census Tract 4415.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 77476439, "AWATER10": 12542580, "INTPTLAT10": "+37.4731786", "INTPTLON10": "-121.9444248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.119646, 37.571318 ], [ -122.117715, 37.571113 ], [ -122.109518, 37.567916 ], [ -122.107544, 37.565841 ], [ -122.107716, 37.564854 ], [ -122.108445, 37.562337 ], [ -122.108402, 37.561759 ], [ -122.108188, 37.561419 ], [ -122.107801, 37.561078 ], [ -122.107544, 37.561010 ], [ -122.106857, 37.561180 ], [ -122.105184, 37.561997 ], [ -122.104797, 37.562201 ], [ -122.103295, 37.563222 ], [ -122.102823, 37.563460 ], [ -122.102566, 37.563494 ], [ -122.102180, 37.563392 ], [ -122.101407, 37.562915 ], [ -122.100677, 37.562575 ], [ -122.099347, 37.562133 ], [ -122.098961, 37.562371 ], [ -122.097845, 37.564582 ], [ -122.095485, 37.564344 ], [ -122.094026, 37.563052 ], [ -122.093897, 37.562269 ], [ -122.093682, 37.561895 ], [ -122.091064, 37.561215 ], [ -122.090549, 37.561146 ], [ -122.089691, 37.562065 ], [ -122.089348, 37.562133 ], [ -122.086515, 37.561793 ], [ -122.080250, 37.561385 ], [ -122.079391, 37.561487 ], [ -122.077718, 37.561861 ], [ -122.075057, 37.562201 ], [ -122.072439, 37.562711 ], [ -122.070851, 37.563154 ], [ -122.069736, 37.563630 ], [ -122.068834, 37.564310 ], [ -122.067590, 37.565739 ], [ -122.066731, 37.566453 ], [ -122.064929, 37.568732 ], [ -122.062826, 37.571181 ], [ -122.061625, 37.569515 ], [ -122.059307, 37.569413 ], [ -122.055187, 37.549443 ], [ -122.071152, 37.537363 ], [ -122.072268, 37.536615 ], [ -122.073512, 37.535900 ], [ -122.075529, 37.534981 ], [ -122.077074, 37.534403 ], [ -122.078104, 37.534130 ], [ -122.078447, 37.533790 ], [ -122.090592, 37.532088 ], [ -122.101965, 37.522763 ], [ -122.103252, 37.520959 ], [ -122.109175, 37.513062 ], [ -122.110333, 37.511870 ], [ -122.110548, 37.511394 ], [ -122.110806, 37.511019 ], [ -122.111192, 37.510781 ], [ -122.111707, 37.510339 ], [ -122.111621, 37.510236 ], [ -122.111149, 37.510202 ], [ -122.111063, 37.510134 ], [ -122.110934, 37.509419 ], [ -122.110891, 37.509317 ], [ -122.110763, 37.509249 ], [ -122.101235, 37.518236 ], [ -122.101321, 37.519836 ], [ -122.101536, 37.521333 ], [ -122.098317, 37.522627 ], [ -122.093253, 37.520993 ], [ -122.092266, 37.518508 ], [ -122.089133, 37.517453 ], [ -122.088318, 37.516840 ], [ -122.088747, 37.516126 ], [ -122.089262, 37.514458 ], [ -122.089391, 37.514321 ], [ -122.089477, 37.513913 ], [ -122.089477, 37.513607 ], [ -122.089176, 37.513334 ], [ -122.088919, 37.513232 ], [ -122.087846, 37.513198 ], [ -122.087073, 37.513402 ], [ -122.085528, 37.514151 ], [ -122.084670, 37.514424 ], [ -122.084155, 37.514526 ], [ -122.082825, 37.514492 ], [ -122.082825, 37.514764 ], [ -122.082567, 37.515172 ], [ -122.082438, 37.515581 ], [ -122.082224, 37.515887 ], [ -122.081923, 37.516126 ], [ -122.080851, 37.516602 ], [ -122.080679, 37.516602 ], [ -122.080464, 37.516704 ], [ -122.079949, 37.516704 ], [ -122.079520, 37.516432 ], [ -122.079563, 37.516023 ], [ -122.080207, 37.515445 ], [ -122.080207, 37.514968 ], [ -122.079992, 37.514798 ], [ -122.079391, 37.514798 ], [ -122.079177, 37.514832 ], [ -122.079091, 37.514934 ], [ -122.078662, 37.514968 ], [ -122.077889, 37.515275 ], [ -122.077718, 37.515275 ], [ -122.076859, 37.515581 ], [ -122.075486, 37.515921 ], [ -122.075057, 37.516194 ], [ -122.074757, 37.516160 ], [ -122.073941, 37.516330 ], [ -122.072010, 37.517045 ], [ -122.071238, 37.517249 ], [ -122.070594, 37.517487 ], [ -122.070165, 37.517862 ], [ -122.069049, 37.517725 ], [ -122.067161, 37.513470 ], [ -122.063084, 37.514900 ], [ -122.063212, 37.515649 ], [ -122.058277, 37.515717 ], [ -122.057676, 37.511700 ], [ -122.057333, 37.511734 ], [ -122.055531, 37.507070 ], [ -122.057805, 37.501113 ], [ -122.052398, 37.500227 ], [ -122.052612, 37.499274 ], [ -122.043386, 37.495869 ], [ -122.040210, 37.495358 ], [ -122.039223, 37.495086 ], [ -122.035403, 37.494677 ], [ -122.032700, 37.490660 ], [ -122.032099, 37.490796 ], [ -122.031412, 37.490285 ], [ -122.030983, 37.490149 ], [ -122.031155, 37.489093 ], [ -122.031498, 37.488446 ], [ -122.031498, 37.486846 ], [ -122.031155, 37.485211 ], [ -122.030854, 37.481567 ], [ -122.029781, 37.480137 ], [ -122.028193, 37.478775 ], [ -122.027078, 37.478604 ], [ -122.026391, 37.478741 ], [ -122.025833, 37.478979 ], [ -122.025361, 37.480614 ], [ -122.025275, 37.482419 ], [ -122.024846, 37.483236 ], [ -122.023859, 37.484155 ], [ -122.023129, 37.484700 ], [ -122.021499, 37.484837 ], [ -122.019782, 37.484598 ], [ -122.017894, 37.483849 ], [ -122.016521, 37.483032 ], [ -122.015276, 37.481874 ], [ -122.014289, 37.481363 ], [ -122.013817, 37.481635 ], [ -122.013302, 37.482317 ], [ -122.012916, 37.483134 ], [ -122.012572, 37.483883 ], [ -122.011971, 37.485654 ], [ -122.011456, 37.486539 ], [ -122.009954, 37.488514 ], [ -122.009740, 37.488991 ], [ -122.010770, 37.492362 ], [ -122.010684, 37.492839 ], [ -122.010298, 37.493350 ], [ -122.009997, 37.493622 ], [ -122.009225, 37.493792 ], [ -122.007980, 37.494201 ], [ -122.006907, 37.494303 ], [ -122.006392, 37.494882 ], [ -122.005920, 37.494848 ], [ -122.005320, 37.494643 ], [ -122.005148, 37.494780 ], [ -122.005105, 37.495154 ], [ -122.000299, 37.494882 ], [ -121.999826, 37.496686 ], [ -121.999226, 37.498014 ], [ -121.998453, 37.499274 ], [ -121.997123, 37.500432 ], [ -121.995192, 37.499785 ], [ -121.994333, 37.499410 ], [ -121.993303, 37.499444 ], [ -121.997981, 37.503836 ], [ -121.997981, 37.503904 ], [ -121.997681, 37.504824 ], [ -121.995320, 37.510951 ], [ -121.994762, 37.514015 ], [ -121.993690, 37.515445 ], [ -121.992188, 37.517215 ], [ -121.989655, 37.520483 ], [ -121.988754, 37.521333 ], [ -121.988754, 37.463482 ], [ -121.992188, 37.464504 ], [ -121.992660, 37.464640 ], [ -121.994290, 37.466036 ], [ -121.995492, 37.466752 ], [ -121.996479, 37.467024 ], [ -121.996651, 37.467229 ], [ -121.997166, 37.467126 ], [ -121.997766, 37.467126 ], [ -122.001071, 37.466854 ], [ -122.020855, 37.465151 ], [ -122.021155, 37.465083 ], [ -122.022529, 37.465151 ], [ -122.023816, 37.465423 ], [ -122.025404, 37.465628 ], [ -122.029910, 37.465321 ], [ -122.036176, 37.464980 ], [ -122.037249, 37.464708 ], [ -122.038364, 37.464163 ], [ -122.040682, 37.462971 ], [ -122.042527, 37.461813 ], [ -122.044587, 37.460654 ], [ -122.045703, 37.461813 ], [ -122.048707, 37.461642 ], [ -122.055960, 37.463959 ], [ -122.059865, 37.469477 ], [ -122.060766, 37.474926 ], [ -122.061582, 37.486675 ], [ -122.061496, 37.491613 ], [ -122.065916, 37.492941 ], [ -122.072868, 37.494507 ], [ -122.078018, 37.495120 ], [ -122.086000, 37.495018 ], [ -122.091064, 37.495018 ], [ -122.098575, 37.494882 ], [ -122.103982, 37.493690 ], [ -122.109604, 37.497674 ], [ -122.115698, 37.504858 ], [ -122.116213, 37.505538 ], [ -122.117372, 37.506832 ], [ -122.117286, 37.513675 ], [ -122.118530, 37.526405 ], [ -122.120419, 37.532837 ], [ -122.122092, 37.536104 ], [ -122.128572, 37.548116 ], [ -122.135782, 37.558867 ], [ -122.131619, 37.562881 ], [ -122.131405, 37.562847 ], [ -122.130203, 37.563936 ], [ -122.127628, 37.566998 ], [ -122.126083, 37.568970 ], [ -122.125568, 37.569413 ], [ -122.124968, 37.570059 ], [ -122.122607, 37.571113 ], [ -122.119646, 37.571318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.049651, 37.582133 ], [ -122.049136, 37.580875 ], [ -122.048621, 37.579413 ], [ -122.048364, 37.578596 ], [ -122.050037, 37.579413 ], [ -122.051411, 37.580093 ], [ -122.052054, 37.580331 ], [ -122.052569, 37.580671 ], [ -122.054672, 37.581725 ], [ -122.054930, 37.581249 ], [ -122.055659, 37.580365 ], [ -122.056561, 37.579413 ], [ -122.059865, 37.575603 ], [ -122.060037, 37.575365 ], [ -122.060423, 37.574889 ], [ -122.061410, 37.579413 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441523", "GEOID10": "06001441523", "NAME10": "4415.23", "NAMELSAD10": "Census Tract 4415.23", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 467502, "AWATER10": 0, "INTPTLAT10": "+37.5647793", "INTPTLON10": "-122.0464869" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.045016, 37.567814 ], [ -122.043128, 37.567746 ], [ -122.041798, 37.566453 ], [ -122.041626, 37.566351 ], [ -122.041326, 37.565127 ], [ -122.041454, 37.565059 ], [ -122.041841, 37.564480 ], [ -122.043042, 37.563086 ], [ -122.043257, 37.562915 ], [ -122.048492, 37.560772 ], [ -122.050424, 37.563188 ], [ -122.050638, 37.563562 ], [ -122.050810, 37.563970 ], [ -122.050939, 37.565535 ], [ -122.051239, 37.566283 ], [ -122.051625, 37.566793 ], [ -122.049694, 37.567032 ], [ -122.046003, 37.567712 ], [ -122.045403, 37.567780 ], [ -122.045016, 37.567814 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441402", "GEOID10": "06001441402", "NAME10": "4414.02", "NAMELSAD10": "Census Tract 4414.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1634599, "AWATER10": 0, "INTPTLAT10": "+37.5823791", "INTPTLON10": "-122.0398734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.029095, 37.582133 ], [ -122.028580, 37.581691 ], [ -122.026348, 37.579413 ], [ -122.025576, 37.578732 ], [ -122.025361, 37.578460 ], [ -122.026820, 37.576930 ], [ -122.028322, 37.577848 ], [ -122.029438, 37.578902 ], [ -122.030082, 37.579413 ], [ -122.031412, 37.580331 ], [ -122.033129, 37.581385 ], [ -122.033944, 37.581623 ], [ -122.034802, 37.581657 ], [ -122.035832, 37.581453 ], [ -122.036605, 37.581045 ], [ -122.037034, 37.580671 ], [ -122.038021, 37.579413 ], [ -122.041197, 37.575093 ], [ -122.045016, 37.576964 ], [ -122.044845, 37.577066 ], [ -122.047119, 37.578188 ], [ -122.047205, 37.578256 ], [ -122.047119, 37.578562 ], [ -122.047720, 37.579413 ], [ -122.048492, 37.580399 ], [ -122.049265, 37.581793 ], [ -122.049222, 37.581045 ], [ -122.049651, 37.582133 ], [ -122.029095, 37.582133 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441402", "GEOID10": "06001441402", "NAME10": "4414.02", "NAMELSAD10": "Census Tract 4414.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1634599, "AWATER10": 0, "INTPTLAT10": "+37.5823791", "INTPTLON10": "-122.0398734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.029052, 37.582133 ], [ -122.026348, 37.579413 ], [ -122.025576, 37.578732 ], [ -122.025361, 37.578460 ], [ -122.026820, 37.576930 ], [ -122.028322, 37.577848 ], [ -122.029438, 37.578902 ], [ -122.030082, 37.579413 ], [ -122.031412, 37.580331 ], [ -122.033129, 37.581385 ], [ -122.033944, 37.581623 ], [ -122.034802, 37.581657 ], [ -122.035832, 37.581453 ], [ -122.036605, 37.581045 ], [ -122.037034, 37.580671 ], [ -122.038021, 37.579413 ], [ -122.041197, 37.575093 ], [ -122.045016, 37.576964 ], [ -122.044845, 37.577066 ], [ -122.047119, 37.578188 ], [ -122.047205, 37.578256 ], [ -122.047119, 37.578562 ], [ -122.047720, 37.579413 ], [ -122.048492, 37.580399 ], [ -122.049265, 37.581793 ], [ -122.049222, 37.581045 ], [ -122.049651, 37.582133 ], [ -122.029052, 37.582133 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441401", "GEOID10": "06001441401", "NAME10": "4414.01", "NAMELSAD10": "Census Tract 4414.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1888786, "AWATER10": 0, "INTPTLAT10": "+37.5735681", "INTPTLON10": "-122.0376753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.049265, 37.581793 ], [ -122.048492, 37.580399 ], [ -122.047720, 37.579413 ], [ -122.047119, 37.578562 ], [ -122.047205, 37.578256 ], [ -122.047119, 37.578188 ], [ -122.044845, 37.577066 ], [ -122.045016, 37.576964 ], [ -122.041197, 37.575093 ], [ -122.038021, 37.579413 ], [ -122.037034, 37.580671 ], [ -122.036605, 37.581045 ], [ -122.035832, 37.581453 ], [ -122.034802, 37.581657 ], [ -122.033944, 37.581623 ], [ -122.033129, 37.581385 ], [ -122.031412, 37.580331 ], [ -122.030082, 37.579413 ], [ -122.029438, 37.578902 ], [ -122.028322, 37.577848 ], [ -122.026820, 37.576930 ], [ -122.029138, 37.574243 ], [ -122.030983, 37.572236 ], [ -122.032442, 37.570807 ], [ -122.034245, 37.568664 ], [ -122.035360, 37.567610 ], [ -122.036562, 37.566283 ], [ -122.036304, 37.566215 ], [ -122.036433, 37.566011 ], [ -122.038493, 37.563392 ], [ -122.043514, 37.568086 ], [ -122.044115, 37.568800 ], [ -122.045188, 37.570263 ], [ -122.045875, 37.571522 ], [ -122.046390, 37.572814 ], [ -122.048621, 37.579413 ], [ -122.048965, 37.580399 ], [ -122.049222, 37.581045 ], [ -122.049265, 37.581793 ] ] ] } } , @@ -3076,10 +3076,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "444301", "GEOID10": "06001444301", "NAME10": "4443.01", "NAMELSAD10": "Census Tract 4443.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2576462, "AWATER10": 0, "INTPTLAT10": "+37.5365190", "INTPTLON10": "-122.0571016" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.055187, 37.549443 ], [ -122.053556, 37.541651 ], [ -122.053299, 37.540868 ], [ -122.052999, 37.540358 ], [ -122.051969, 37.539303 ], [ -122.047033, 37.535287 ], [ -122.044673, 37.533280 ], [ -122.049136, 37.529842 ], [ -122.050037, 37.529230 ], [ -122.053127, 37.528209 ], [ -122.053385, 37.528719 ], [ -122.054071, 37.528515 ], [ -122.055788, 37.528175 ], [ -122.056775, 37.528039 ], [ -122.057934, 37.527188 ], [ -122.057934, 37.527120 ], [ -122.062397, 37.528719 ], [ -122.062912, 37.529025 ], [ -122.063513, 37.529570 ], [ -122.063813, 37.530115 ], [ -122.064071, 37.530931 ], [ -122.064328, 37.533484 ], [ -122.064500, 37.534267 ], [ -122.064714, 37.534811 ], [ -122.065272, 37.535832 ], [ -122.066646, 37.538690 ], [ -122.066946, 37.539541 ], [ -122.067332, 37.540222 ], [ -122.063513, 37.543114 ], [ -122.062526, 37.543931 ], [ -122.055187, 37.549443 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441601", "GEOID10": "06001441601", "NAME10": "4416.01", "NAMELSAD10": "Census Tract 4416.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1291642, "AWATER10": 0, "INTPTLAT10": "+37.5635007", "INTPTLON10": "-122.0305372" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.032442, 37.570807 ], [ -122.027850, 37.568494 ], [ -122.022786, 37.566045 ], [ -122.023387, 37.565229 ], [ -122.023902, 37.564752 ], [ -122.024503, 37.564004 ], [ -122.024932, 37.563290 ], [ -122.024975, 37.562677 ], [ -122.024546, 37.560976 ], [ -122.024546, 37.560738 ], [ -122.024803, 37.560296 ], [ -122.027593, 37.556690 ], [ -122.027979, 37.556894 ], [ -122.028151, 37.556928 ], [ -122.029481, 37.556282 ], [ -122.029653, 37.556350 ], [ -122.030425, 37.557064 ], [ -122.031198, 37.556588 ], [ -122.031283, 37.556622 ], [ -122.032056, 37.557404 ], [ -122.038493, 37.563392 ], [ -122.036433, 37.566011 ], [ -122.036304, 37.566215 ], [ -122.036562, 37.566283 ], [ -122.035360, 37.567610 ], [ -122.034245, 37.568664 ], [ -122.032442, 37.570807 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441602", "GEOID10": "06001441602", "NAME10": "4416.02", "NAMELSAD10": "Census Tract 4416.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1682393, "AWATER10": 0, "INTPTLAT10": "+37.5569600", "INTPTLON10": "-122.0212345" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.022786, 37.566045 ], [ -122.011714, 37.560602 ], [ -122.015791, 37.555125 ], [ -122.016220, 37.554683 ], [ -122.017422, 37.553152 ], [ -122.019095, 37.551178 ], [ -122.021027, 37.548728 ], [ -122.022872, 37.546551 ], [ -122.023001, 37.546551 ], [ -122.023473, 37.547299 ], [ -122.025490, 37.550021 ], [ -122.028666, 37.554138 ], [ -122.031198, 37.556588 ], [ -122.030425, 37.557064 ], [ -122.029524, 37.556282 ], [ -122.028151, 37.556928 ], [ -122.027979, 37.556894 ], [ -122.027593, 37.556690 ], [ -122.024803, 37.560296 ], [ -122.024546, 37.560738 ], [ -122.024632, 37.561487 ], [ -122.024975, 37.562677 ], [ -122.024932, 37.563290 ], [ -122.024503, 37.564004 ], [ -122.023902, 37.564752 ], [ -122.023387, 37.565229 ], [ -122.022786, 37.566045 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441601", "GEOID10": "06001441601", "NAME10": "4416.01", "NAMELSAD10": "Census Tract 4416.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1291642, "AWATER10": 0, "INTPTLAT10": "+37.5635007", "INTPTLON10": "-122.0305372" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.032442, 37.570807 ], [ -122.027850, 37.568494 ], [ -122.022786, 37.566045 ], [ -122.023387, 37.565229 ], [ -122.023902, 37.564752 ], [ -122.024503, 37.564004 ], [ -122.024932, 37.563290 ], [ -122.024975, 37.562677 ], [ -122.024546, 37.560976 ], [ -122.024546, 37.560738 ], [ -122.024803, 37.560296 ], [ -122.027593, 37.556690 ], [ -122.027979, 37.556894 ], [ -122.028151, 37.556928 ], [ -122.029481, 37.556282 ], [ -122.029653, 37.556350 ], [ -122.030425, 37.557064 ], [ -122.031198, 37.556588 ], [ -122.031283, 37.556622 ], [ -122.032056, 37.557404 ], [ -122.038493, 37.563392 ], [ -122.036433, 37.566011 ], [ -122.036304, 37.566215 ], [ -122.036562, 37.566283 ], [ -122.035360, 37.567610 ], [ -122.034245, 37.568664 ], [ -122.032442, 37.570807 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441302", "GEOID10": "06001441302", "NAME10": "4413.02", "NAMELSAD10": "Census Tract 4413.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1994668, "AWATER10": 0, "INTPTLAT10": "+37.5693426", "INTPTLON10": "-122.0194346" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.025361, 37.578494 ], [ -122.023859, 37.577032 ], [ -122.021241, 37.575637 ], [ -122.020855, 37.575569 ], [ -122.017422, 37.574039 ], [ -122.014117, 37.572066 ], [ -122.014546, 37.571726 ], [ -122.014246, 37.571522 ], [ -122.012959, 37.570875 ], [ -122.010770, 37.569617 ], [ -122.010384, 37.569345 ], [ -122.009997, 37.569004 ], [ -122.009397, 37.568290 ], [ -122.009139, 37.567780 ], [ -122.008796, 37.566589 ], [ -122.008495, 37.565977 ], [ -122.007809, 37.565161 ], [ -122.007122, 37.564650 ], [ -122.009182, 37.562779 ], [ -122.010856, 37.561691 ], [ -122.011714, 37.560602 ], [ -122.023988, 37.566657 ], [ -122.027850, 37.568494 ], [ -122.032442, 37.570807 ], [ -122.030725, 37.572508 ], [ -122.027936, 37.575603 ], [ -122.026820, 37.576930 ], [ -122.025361, 37.578494 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441200", "GEOID10": "06001441200", "NAME10": "4412", "NAMELSAD10": "Census Tract 4412", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3241560, "AWATER10": 11692, "INTPTLAT10": "+37.5780625", "INTPTLON10": "-121.9910071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.992359, 37.582133 ], [ -121.991200, 37.581181 ], [ -121.990643, 37.580841 ], [ -121.990042, 37.580535 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.569141 ], [ -121.992188, 37.571760 ], [ -121.995492, 37.574243 ], [ -121.996264, 37.574923 ], [ -121.996737, 37.575229 ], [ -121.999440, 37.577372 ], [ -122.002187, 37.579413 ], [ -122.005663, 37.582133 ], [ -121.992359, 37.582133 ] ] ] } } @@ -3118,7 +3118,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.171402, 37.671932 ], [ -122.170887, 37.671117 ], [ -122.167969, 37.668162 ], [ -122.167068, 37.667245 ], [ -122.163849, 37.655354 ], [ -122.161145, 37.646791 ], [ -122.160201, 37.641049 ], [ -122.158484, 37.632926 ], [ -122.157540, 37.621608 ], [ -122.162476, 37.614741 ], [ -122.155867, 37.611546 ], [ -122.152433, 37.599102 ], [ -122.155008, 37.591111 ], [ -122.153506, 37.582167 ], [ -122.151790, 37.579413 ], [ -122.150073, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671932 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "990000", "GEOID10": "06001990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 139280135, "INTPTLAT10": "+37.6836979", "INTPTLON10": "-122.2281492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.171402, 37.671966 ], [ -122.170887, 37.671117 ], [ -122.167969, 37.668162 ], [ -122.167068, 37.667245 ], [ -122.163849, 37.655354 ], [ -122.161145, 37.646791 ], [ -122.160201, 37.641049 ], [ -122.158484, 37.632926 ], [ -122.157540, 37.621608 ], [ -122.162476, 37.614741 ], [ -122.155867, 37.611546 ], [ -122.152433, 37.599102 ], [ -122.155008, 37.591111 ], [ -122.153506, 37.582167 ], [ -122.151790, 37.579413 ], [ -122.150073, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671966 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432502", "GEOID10": "06001432502", "NAME10": "4325.02", "NAMELSAD10": "Census Tract 4325.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 819968, "AWATER10": 0, "INTPTLAT10": "+37.7234343", "INTPTLON10": "-122.1734869" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.169342, 37.721306 ], [ -122.171402, 37.720797 ], [ -122.171402, 37.721306 ], [ -122.169342, 37.721306 ] ] ] } } , @@ -3130,7 +3130,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432800", "GEOID10": "06001432800", "NAME10": "4328", "NAMELSAD10": "Census Tract 4328", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3661599, "AWATER10": 0, "INTPTLAT10": "+37.7212241", "INTPTLON10": "-122.1245218" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.113080, 37.721306 ], [ -122.112393, 37.720491 ], [ -122.109904, 37.718590 ], [ -122.105870, 37.715365 ], [ -122.104712, 37.714754 ], [ -122.105312, 37.714551 ], [ -122.106857, 37.713736 ], [ -122.107630, 37.713396 ], [ -122.108531, 37.713125 ], [ -122.110162, 37.712887 ], [ -122.111149, 37.712887 ], [ -122.112222, 37.713023 ], [ -122.113423, 37.713328 ], [ -122.115097, 37.713872 ], [ -122.115912, 37.714347 ], [ -122.116513, 37.715128 ], [ -122.116985, 37.716180 ], [ -122.117286, 37.716655 ], [ -122.117758, 37.717097 ], [ -122.118230, 37.717402 ], [ -122.118788, 37.717640 ], [ -122.119431, 37.717810 ], [ -122.120118, 37.717810 ], [ -122.120504, 37.717742 ], [ -122.121277, 37.717300 ], [ -122.121577, 37.716927 ], [ -122.121749, 37.716553 ], [ -122.121706, 37.714788 ], [ -122.121620, 37.714279 ], [ -122.121449, 37.713736 ], [ -122.120762, 37.712276 ], [ -122.120676, 37.712004 ], [ -122.120676, 37.711427 ], [ -122.120848, 37.710986 ], [ -122.121105, 37.710578 ], [ -122.122092, 37.709390 ], [ -122.122564, 37.708541 ], [ -122.124882, 37.710273 ], [ -122.128315, 37.712072 ], [ -122.129259, 37.712717 ], [ -122.130075, 37.713430 ], [ -122.130675, 37.714075 ], [ -122.131276, 37.714958 ], [ -122.133121, 37.718590 ], [ -122.134151, 37.720390 ], [ -122.134838, 37.721306 ], [ -122.113080, 37.721306 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.037592, 37.721306 ], [ -122.037849, 37.720593 ], [ -122.038279, 37.719778 ], [ -122.038279, 37.719303 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718183 ], [ -122.038064, 37.717640 ], [ -122.038493, 37.716995 ], [ -122.038579, 37.717198 ], [ -122.039008, 37.716893 ], [ -122.039566, 37.715976 ], [ -122.039781, 37.715331 ], [ -122.039952, 37.714517 ], [ -122.039781, 37.714381 ], [ -122.039781, 37.714143 ], [ -122.039866, 37.714007 ], [ -122.039866, 37.713838 ], [ -122.040038, 37.713430 ], [ -122.040424, 37.712038 ], [ -122.040381, 37.711325 ], [ -122.040253, 37.710816 ], [ -122.040296, 37.709933 ], [ -122.040467, 37.709696 ], [ -122.040467, 37.709085 ], [ -122.040854, 37.707896 ], [ -122.041025, 37.707455 ], [ -122.041411, 37.706776 ], [ -122.041454, 37.706844 ], [ -122.041841, 37.706199 ], [ -122.042270, 37.705893 ], [ -122.042999, 37.705689 ], [ -122.043300, 37.705553 ], [ -122.043471, 37.705452 ], [ -122.043772, 37.705112 ], [ -122.043943, 37.704739 ], [ -122.043986, 37.704433 ], [ -122.043729, 37.703754 ], [ -122.043729, 37.703414 ], [ -122.043815, 37.703177 ], [ -122.044115, 37.702803 ], [ -122.044544, 37.702532 ], [ -122.044973, 37.702396 ], [ -122.045574, 37.702362 ], [ -122.050080, 37.702939 ], [ -122.050939, 37.702735 ], [ -122.051497, 37.702837 ], [ -122.052054, 37.702837 ], [ -122.052569, 37.702735 ], [ -122.052913, 37.702600 ], [ -122.053385, 37.702260 ], [ -122.053471, 37.702328 ], [ -122.053986, 37.702022 ], [ -122.054458, 37.701581 ], [ -122.054415, 37.701751 ], [ -122.054543, 37.702022 ], [ -122.055659, 37.702769 ], [ -122.055788, 37.702769 ], [ -122.055831, 37.703109 ], [ -122.055402, 37.703618 ], [ -122.055359, 37.703822 ], [ -122.055445, 37.703924 ], [ -122.056003, 37.703958 ], [ -122.056561, 37.704127 ], [ -122.056432, 37.704467 ], [ -122.056518, 37.705214 ], [ -122.056389, 37.705452 ], [ -122.056174, 37.705587 ], [ -122.056046, 37.706097 ], [ -122.055831, 37.706504 ], [ -122.055745, 37.707081 ], [ -122.055745, 37.707998 ], [ -122.055573, 37.708847 ], [ -122.055616, 37.709458 ], [ -122.056003, 37.710307 ], [ -122.056174, 37.710544 ], [ -122.056217, 37.710850 ], [ -122.056131, 37.711020 ], [ -122.055745, 37.711122 ], [ -122.055745, 37.711223 ], [ -122.056088, 37.711597 ], [ -122.056088, 37.711767 ], [ -122.055573, 37.711970 ], [ -122.055745, 37.712717 ], [ -122.055745, 37.713023 ], [ -122.055659, 37.713159 ], [ -122.055445, 37.713294 ], [ -122.055445, 37.713396 ], [ -122.055745, 37.713736 ], [ -122.055831, 37.713905 ], [ -122.055831, 37.714143 ], [ -122.055702, 37.714347 ], [ -122.055316, 37.714551 ], [ -122.055016, 37.714856 ], [ -122.054286, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054200, 37.716757 ], [ -122.054501, 37.717368 ], [ -122.054458, 37.717402 ], [ -122.054543, 37.717674 ], [ -122.054415, 37.718590 ], [ -122.054372, 37.718726 ], [ -122.054458, 37.719269 ], [ -122.054200, 37.719880 ], [ -122.054071, 37.720390 ], [ -122.054071, 37.720559 ], [ -122.054329, 37.721034 ], [ -122.054286, 37.721306 ], [ -122.037592, 37.721306 ] ] ], [ [ [ -122.065058, 37.721306 ], [ -122.065573, 37.720186 ], [ -122.065701, 37.720186 ], [ -122.068105, 37.720593 ], [ -122.075272, 37.720729 ], [ -122.075830, 37.721306 ], [ -122.065058, 37.721306 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.037592, 37.721306 ], [ -122.037849, 37.720593 ], [ -122.038279, 37.719778 ], [ -122.038279, 37.719303 ], [ -122.037935, 37.718353 ], [ -122.037935, 37.718149 ], [ -122.038064, 37.717640 ], [ -122.038493, 37.716995 ], [ -122.038579, 37.717198 ], [ -122.039008, 37.716893 ], [ -122.039566, 37.715976 ], [ -122.039781, 37.715331 ], [ -122.039952, 37.714517 ], [ -122.039781, 37.714381 ], [ -122.039781, 37.714143 ], [ -122.040424, 37.712038 ], [ -122.040381, 37.711325 ], [ -122.040253, 37.710816 ], [ -122.040296, 37.709933 ], [ -122.040467, 37.709696 ], [ -122.040467, 37.709085 ], [ -122.040854, 37.707896 ], [ -122.041025, 37.707455 ], [ -122.041411, 37.706776 ], [ -122.041454, 37.706844 ], [ -122.041841, 37.706199 ], [ -122.042270, 37.705893 ], [ -122.042999, 37.705689 ], [ -122.043300, 37.705553 ], [ -122.043471, 37.705452 ], [ -122.043772, 37.705112 ], [ -122.043943, 37.704739 ], [ -122.043986, 37.704433 ], [ -122.043729, 37.703754 ], [ -122.043729, 37.703414 ], [ -122.043815, 37.703177 ], [ -122.044115, 37.702803 ], [ -122.044544, 37.702532 ], [ -122.044973, 37.702396 ], [ -122.045574, 37.702362 ], [ -122.050080, 37.702939 ], [ -122.050939, 37.702735 ], [ -122.051497, 37.702837 ], [ -122.052054, 37.702837 ], [ -122.052569, 37.702735 ], [ -122.052913, 37.702600 ], [ -122.053385, 37.702260 ], [ -122.053471, 37.702328 ], [ -122.053986, 37.702022 ], [ -122.054458, 37.701581 ], [ -122.054415, 37.701751 ], [ -122.054543, 37.702022 ], [ -122.055659, 37.702769 ], [ -122.055788, 37.702769 ], [ -122.055831, 37.703109 ], [ -122.055402, 37.703618 ], [ -122.055359, 37.703822 ], [ -122.055445, 37.703924 ], [ -122.056003, 37.703958 ], [ -122.056561, 37.704127 ], [ -122.056432, 37.704467 ], [ -122.056518, 37.705214 ], [ -122.056389, 37.705452 ], [ -122.056174, 37.705587 ], [ -122.056046, 37.706097 ], [ -122.055831, 37.706504 ], [ -122.055745, 37.707081 ], [ -122.055745, 37.707998 ], [ -122.055573, 37.708847 ], [ -122.055616, 37.709458 ], [ -122.056003, 37.710307 ], [ -122.056174, 37.710544 ], [ -122.056217, 37.710850 ], [ -122.056131, 37.711020 ], [ -122.055745, 37.711122 ], [ -122.055745, 37.711223 ], [ -122.056088, 37.711597 ], [ -122.056088, 37.711767 ], [ -122.055573, 37.711970 ], [ -122.055745, 37.712717 ], [ -122.055745, 37.713023 ], [ -122.055659, 37.713159 ], [ -122.055445, 37.713294 ], [ -122.055445, 37.713396 ], [ -122.055745, 37.713736 ], [ -122.055831, 37.713905 ], [ -122.055831, 37.714143 ], [ -122.055702, 37.714347 ], [ -122.055316, 37.714551 ], [ -122.055016, 37.714856 ], [ -122.054286, 37.715128 ], [ -122.054071, 37.715331 ], [ -122.054200, 37.716757 ], [ -122.054501, 37.717368 ], [ -122.054458, 37.717402 ], [ -122.054543, 37.717674 ], [ -122.054415, 37.718590 ], [ -122.054372, 37.718726 ], [ -122.054458, 37.719269 ], [ -122.054200, 37.719880 ], [ -122.054071, 37.720390 ], [ -122.054071, 37.720559 ], [ -122.054329, 37.721034 ], [ -122.054286, 37.721306 ], [ -122.037592, 37.721306 ] ] ], [ [ [ -122.065058, 37.721306 ], [ -122.065573, 37.720186 ], [ -122.065701, 37.720186 ], [ -122.068105, 37.720593 ], [ -122.075272, 37.720729 ], [ -122.075830, 37.721306 ], [ -122.065058, 37.721306 ] ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432400", "GEOID10": "06001432400", "NAME10": "4324", "NAMELSAD10": "Census Tract 4324", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6437229, "AWATER10": 1351272, "INTPTLAT10": "+37.7097451", "INTPTLON10": "-122.1898921" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.171402, 37.713838 ], [ -122.170630, 37.713159 ], [ -122.167969, 37.711325 ], [ -122.166681, 37.710409 ], [ -122.167969, 37.709899 ], [ -122.170801, 37.708711 ], [ -122.167969, 37.704365 ], [ -122.167540, 37.703686 ], [ -122.168741, 37.703211 ], [ -122.171402, 37.702090 ], [ -122.171402, 37.713838 ] ] ] } } , @@ -3148,13 +3148,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433600", "GEOID10": "06001433600", "NAME10": "4336", "NAMELSAD10": "Census Tract 4336", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1579636, "AWATER10": 0, "INTPTLAT10": "+37.6860081", "INTPTLON10": "-122.1437942" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.140846, 37.692345 ], [ -122.138872, 37.690850 ], [ -122.138786, 37.690681 ], [ -122.136555, 37.689424 ], [ -122.135525, 37.688915 ], [ -122.129002, 37.684398 ], [ -122.129045, 37.684364 ], [ -122.129345, 37.684432 ], [ -122.129946, 37.684432 ], [ -122.130761, 37.684907 ], [ -122.131405, 37.685111 ], [ -122.132435, 37.684941 ], [ -122.132735, 37.685009 ], [ -122.133079, 37.684975 ], [ -122.133465, 37.684534 ], [ -122.133851, 37.684398 ], [ -122.134194, 37.684364 ], [ -122.134495, 37.684364 ], [ -122.134881, 37.684466 ], [ -122.136340, 37.684432 ], [ -122.137070, 37.684601 ], [ -122.137370, 37.684568 ], [ -122.138186, 37.684737 ], [ -122.138915, 37.684703 ], [ -122.140031, 37.684398 ], [ -122.140803, 37.683922 ], [ -122.141533, 37.682971 ], [ -122.141919, 37.682666 ], [ -122.143250, 37.682088 ], [ -122.144065, 37.681579 ], [ -122.144237, 37.681171 ], [ -122.144237, 37.680798 ], [ -122.144408, 37.680152 ], [ -122.144494, 37.680050 ], [ -122.144494, 37.679745 ], [ -122.144580, 37.679541 ], [ -122.150974, 37.676858 ], [ -122.151403, 37.677333 ], [ -122.149858, 37.678012 ], [ -122.150030, 37.678386 ], [ -122.150073, 37.681001 ], [ -122.150545, 37.681647 ], [ -122.150803, 37.682835 ], [ -122.151232, 37.683922 ], [ -122.151275, 37.684703 ], [ -122.151060, 37.685586 ], [ -122.151189, 37.689696 ], [ -122.151318, 37.690103 ], [ -122.151747, 37.690613 ], [ -122.151790, 37.691258 ], [ -122.150502, 37.691326 ], [ -122.144837, 37.691428 ], [ -122.143850, 37.691496 ], [ -122.140760, 37.691563 ], [ -122.140503, 37.691530 ], [ -122.140160, 37.691631 ], [ -122.140245, 37.691801 ], [ -122.140846, 37.692345 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703686 ], [ -122.165866, 37.701207 ], [ -122.165694, 37.700698 ], [ -122.165694, 37.700087 ], [ -122.163978, 37.697235 ], [ -122.162604, 37.695129 ], [ -122.162347, 37.692820 ], [ -122.162476, 37.692650 ], [ -122.163076, 37.692480 ], [ -122.162862, 37.690918 ], [ -122.162390, 37.689186 ], [ -122.161961, 37.688032 ], [ -122.161617, 37.687454 ], [ -122.160587, 37.686028 ], [ -122.155867, 37.679813 ], [ -122.158313, 37.679201 ], [ -122.158399, 37.679099 ], [ -122.155995, 37.676484 ], [ -122.152305, 37.672578 ], [ -122.154837, 37.671287 ], [ -122.156296, 37.670336 ], [ -122.157798, 37.669453 ], [ -122.158055, 37.669792 ], [ -122.162433, 37.667346 ], [ -122.165523, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167068, 37.667245 ], [ -122.167969, 37.668162 ], [ -122.170887, 37.671117 ], [ -122.171402, 37.671932 ], [ -122.171402, 37.702090 ], [ -122.167969, 37.703516 ], [ -122.167540, 37.703686 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433400", "GEOID10": "06001433400", "NAME10": "4334", "NAMELSAD10": "Census Tract 4334", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5474772, "AWATER10": 2188973, "INTPTLAT10": "+37.6845280", "INTPTLON10": "-122.1689582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.167540, 37.703686 ], [ -122.165866, 37.701207 ], [ -122.165694, 37.700698 ], [ -122.165694, 37.700087 ], [ -122.163978, 37.697235 ], [ -122.162604, 37.695129 ], [ -122.162347, 37.692820 ], [ -122.162476, 37.692650 ], [ -122.163076, 37.692480 ], [ -122.162862, 37.690918 ], [ -122.162390, 37.689186 ], [ -122.161961, 37.688032 ], [ -122.161617, 37.687454 ], [ -122.160587, 37.686028 ], [ -122.155867, 37.679813 ], [ -122.158313, 37.679201 ], [ -122.158399, 37.679099 ], [ -122.155995, 37.676484 ], [ -122.152305, 37.672578 ], [ -122.154837, 37.671287 ], [ -122.156296, 37.670336 ], [ -122.157798, 37.669453 ], [ -122.158055, 37.669792 ], [ -122.162433, 37.667346 ], [ -122.165523, 37.666769 ], [ -122.166939, 37.666769 ], [ -122.167068, 37.667245 ], [ -122.167969, 37.668162 ], [ -122.170887, 37.671117 ], [ -122.171402, 37.671966 ], [ -122.171402, 37.702090 ], [ -122.167969, 37.703516 ], [ -122.167540, 37.703686 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433500", "GEOID10": "06001433500", "NAME10": "4335", "NAMELSAD10": "Census Tract 4335", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1234823, "AWATER10": 0, "INTPTLAT10": "+37.6845009", "INTPTLON10": "-122.1553145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.151790, 37.691258 ], [ -122.151747, 37.690613 ], [ -122.151318, 37.690103 ], [ -122.151189, 37.689696 ], [ -122.151060, 37.685586 ], [ -122.151275, 37.684703 ], [ -122.151232, 37.683922 ], [ -122.150803, 37.682835 ], [ -122.150545, 37.681647 ], [ -122.150073, 37.681001 ], [ -122.150030, 37.678386 ], [ -122.149858, 37.678012 ], [ -122.151403, 37.677333 ], [ -122.150974, 37.676858 ], [ -122.152905, 37.676042 ], [ -122.154708, 37.675159 ], [ -122.158399, 37.679099 ], [ -122.158313, 37.679201 ], [ -122.155867, 37.679813 ], [ -122.160587, 37.686028 ], [ -122.161703, 37.687590 ], [ -122.162132, 37.688405 ], [ -122.162862, 37.690918 ], [ -122.162004, 37.690986 ], [ -122.158012, 37.691054 ], [ -122.155995, 37.691156 ], [ -122.151790, 37.691258 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435900", "GEOID10": "06001435900", "NAME10": "4359", "NAMELSAD10": "Census Tract 4359", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2411345, "AWATER10": 17052, "INTPTLAT10": "+37.6724681", "INTPTLON10": "-122.1473050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138700, 37.684737 ], [ -122.136984, 37.679609 ], [ -122.140031, 37.678420 ], [ -122.137671, 37.674684 ], [ -122.140160, 37.673665 ], [ -122.138143, 37.670981 ], [ -122.138228, 37.670845 ], [ -122.138486, 37.670845 ], [ -122.144408, 37.667992 ], [ -122.146983, 37.666837 ], [ -122.141876, 37.661367 ], [ -122.144494, 37.661537 ], [ -122.146983, 37.664425 ], [ -122.160845, 37.664493 ], [ -122.162690, 37.667312 ], [ -122.162433, 37.667346 ], [ -122.158055, 37.669792 ], [ -122.157798, 37.669453 ], [ -122.156296, 37.670336 ], [ -122.154837, 37.671287 ], [ -122.152305, 37.672578 ], [ -122.154708, 37.675159 ], [ -122.152905, 37.676042 ], [ -122.144580, 37.679541 ], [ -122.144494, 37.679745 ], [ -122.144494, 37.680050 ], [ -122.144408, 37.680152 ], [ -122.144237, 37.680798 ], [ -122.144237, 37.681171 ], [ -122.144065, 37.681579 ], [ -122.143250, 37.682088 ], [ -122.141919, 37.682666 ], [ -122.141533, 37.682971 ], [ -122.140803, 37.683922 ], [ -122.140288, 37.684262 ], [ -122.140031, 37.684398 ], [ -122.138700, 37.684737 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436000", "GEOID10": "06001436000", "NAME10": "4360", "NAMELSAD10": "Census Tract 4360", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1314438, "AWATER10": 0, "INTPTLAT10": "+37.6691812", "INTPTLON10": "-122.1375262" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.136984, 37.679609 ], [ -122.131276, 37.670743 ], [ -122.131362, 37.669622 ], [ -122.130976, 37.665138 ], [ -122.134366, 37.664629 ], [ -122.134881, 37.663813 ], [ -122.134795, 37.663270 ], [ -122.134838, 37.663168 ], [ -122.134967, 37.663100 ], [ -122.139516, 37.662862 ], [ -122.140803, 37.663134 ], [ -122.143764, 37.663338 ], [ -122.146983, 37.666837 ], [ -122.144408, 37.667992 ], [ -122.138486, 37.670845 ], [ -122.138228, 37.670845 ], [ -122.138143, 37.670981 ], [ -122.140160, 37.673665 ], [ -122.137671, 37.674684 ], [ -122.140031, 37.678420 ], [ -122.136984, 37.679609 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435800", "GEOID10": "06001435800", "NAME10": "4358", "NAMELSAD10": "Census Tract 4358", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1304875, "AWATER10": 0, "INTPTLAT10": "+37.6793691", "INTPTLON10": "-122.1296018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.131405, 37.685111 ], [ -122.130761, 37.684907 ], [ -122.129946, 37.684432 ], [ -122.129345, 37.684432 ], [ -122.129045, 37.684364 ], [ -122.129002, 37.684398 ], [ -122.122951, 37.680152 ], [ -122.120118, 37.678216 ], [ -122.117543, 37.676552 ], [ -122.123551, 37.674208 ], [ -122.124538, 37.675839 ], [ -122.126212, 37.678386 ], [ -122.127070, 37.678046 ], [ -122.125826, 37.676178 ], [ -122.132950, 37.673291 ], [ -122.133293, 37.673936 ], [ -122.136984, 37.679609 ], [ -122.138700, 37.684737 ], [ -122.138186, 37.684737 ], [ -122.137370, 37.684568 ], [ -122.137070, 37.684601 ], [ -122.136340, 37.684432 ], [ -122.134881, 37.684466 ], [ -122.134495, 37.684364 ], [ -122.134194, 37.684364 ], [ -122.133851, 37.684398 ], [ -122.133465, 37.684534 ], [ -122.133079, 37.684975 ], [ -122.132735, 37.685009 ], [ -122.132435, 37.684941 ], [ -122.131405, 37.685111 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436000", "GEOID10": "06001436000", "NAME10": "4360", "NAMELSAD10": "Census Tract 4360", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1314438, "AWATER10": 0, "INTPTLAT10": "+37.6691812", "INTPTLON10": "-122.1375262" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.136984, 37.679609 ], [ -122.131276, 37.670743 ], [ -122.131362, 37.669622 ], [ -122.130976, 37.665138 ], [ -122.134366, 37.664629 ], [ -122.134881, 37.663813 ], [ -122.134795, 37.663270 ], [ -122.134838, 37.663168 ], [ -122.134967, 37.663100 ], [ -122.139516, 37.662862 ], [ -122.140803, 37.663134 ], [ -122.143764, 37.663338 ], [ -122.146983, 37.666837 ], [ -122.144408, 37.667992 ], [ -122.138486, 37.670845 ], [ -122.138228, 37.670845 ], [ -122.138143, 37.670981 ], [ -122.138186, 37.671083 ], [ -122.140160, 37.673665 ], [ -122.137671, 37.674684 ], [ -122.140031, 37.678420 ], [ -122.136984, 37.679609 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430500", "GEOID10": "06001430500", "NAME10": "4305", "NAMELSAD10": "Census Tract 4305", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2610283, "AWATER10": 0, "INTPTLAT10": "+37.7049110", "INTPTLON10": "-122.1091519" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.119431, 37.717810 ], [ -122.118788, 37.717640 ], [ -122.118230, 37.717402 ], [ -122.117758, 37.717097 ], [ -122.117286, 37.716655 ], [ -122.116985, 37.716180 ], [ -122.116513, 37.715128 ], [ -122.115912, 37.714347 ], [ -122.115569, 37.714109 ], [ -122.115097, 37.713872 ], [ -122.113423, 37.713328 ], [ -122.112393, 37.713057 ], [ -122.111578, 37.712921 ], [ -122.110162, 37.712887 ], [ -122.108831, 37.713057 ], [ -122.107973, 37.713260 ], [ -122.107630, 37.713396 ], [ -122.105055, 37.714652 ], [ -122.104583, 37.714788 ], [ -122.103381, 37.714754 ], [ -122.103896, 37.714551 ], [ -122.104497, 37.714177 ], [ -122.104754, 37.714245 ], [ -122.105055, 37.714483 ], [ -122.105184, 37.714449 ], [ -122.105227, 37.714381 ], [ -122.105355, 37.713226 ], [ -122.105570, 37.712921 ], [ -122.105570, 37.712683 ], [ -122.105355, 37.712106 ], [ -122.105312, 37.711529 ], [ -122.105141, 37.711156 ], [ -122.105184, 37.710816 ], [ -122.105527, 37.710544 ], [ -122.105784, 37.710171 ], [ -122.105999, 37.710069 ], [ -122.106385, 37.709696 ], [ -122.106643, 37.709152 ], [ -122.106729, 37.708779 ], [ -122.106042, 37.707760 ], [ -122.105527, 37.707217 ], [ -122.103767, 37.705621 ], [ -122.103639, 37.704671 ], [ -122.103467, 37.704161 ], [ -122.103510, 37.703992 ], [ -122.103209, 37.703347 ], [ -122.103038, 37.703143 ], [ -122.102308, 37.702735 ], [ -122.101836, 37.702667 ], [ -122.101793, 37.702362 ], [ -122.102351, 37.701615 ], [ -122.102351, 37.701377 ], [ -122.102222, 37.701207 ], [ -122.102008, 37.701139 ], [ -122.101150, 37.701241 ], [ -122.100892, 37.701105 ], [ -122.100291, 37.700189 ], [ -122.099733, 37.699170 ], [ -122.099733, 37.699034 ], [ -122.099090, 37.697948 ], [ -122.097802, 37.695503 ], [ -122.097287, 37.695672 ], [ -122.097030, 37.695639 ], [ -122.096815, 37.695537 ], [ -122.096558, 37.695537 ], [ -122.096171, 37.695706 ], [ -122.096043, 37.695571 ], [ -122.095871, 37.694654 ], [ -122.095742, 37.694314 ], [ -122.095056, 37.693363 ], [ -122.095013, 37.692311 ], [ -122.093768, 37.691156 ], [ -122.093554, 37.691258 ], [ -122.093339, 37.691088 ], [ -122.091837, 37.691835 ], [ -122.093081, 37.690986 ], [ -122.094026, 37.690069 ], [ -122.095828, 37.689899 ], [ -122.097158, 37.690035 ], [ -122.098360, 37.690307 ], [ -122.099991, 37.691020 ], [ -122.100635, 37.691733 ], [ -122.101235, 37.692209 ], [ -122.101879, 37.692854 ], [ -122.102051, 37.693126 ], [ -122.106814, 37.698525 ], [ -122.108274, 37.700019 ], [ -122.108788, 37.700460 ], [ -122.110205, 37.701411 ], [ -122.116642, 37.705316 ], [ -122.120934, 37.707319 ], [ -122.121534, 37.707693 ], [ -122.122564, 37.708541 ], [ -122.122092, 37.709390 ], [ -122.121105, 37.710578 ], [ -122.120848, 37.710986 ], [ -122.120676, 37.711427 ], [ -122.120676, 37.712004 ], [ -122.121577, 37.714075 ], [ -122.121706, 37.714788 ], [ -122.121749, 37.716553 ], [ -122.121577, 37.716927 ], [ -122.121105, 37.717436 ], [ -122.120504, 37.717742 ], [ -122.120118, 37.717810 ], [ -122.119431, 37.717810 ] ] ] } } , @@ -3162,7 +3164,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433800", "GEOID10": "06001433800", "NAME10": "4338", "NAMELSAD10": "Census Tract 4338", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1600719, "AWATER10": 0, "INTPTLAT10": "+37.6988143", "INTPTLON10": "-122.1234820" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124238, 37.709831 ], [ -122.121534, 37.707693 ], [ -122.120934, 37.707319 ], [ -122.116642, 37.705316 ], [ -122.116814, 37.705146 ], [ -122.116942, 37.704874 ], [ -122.117114, 37.703754 ], [ -122.117286, 37.703482 ], [ -122.119646, 37.701105 ], [ -122.120934, 37.699985 ], [ -122.118917, 37.698593 ], [ -122.118831, 37.698355 ], [ -122.118874, 37.694042 ], [ -122.119045, 37.691801 ], [ -122.119045, 37.691224 ], [ -122.118959, 37.690748 ], [ -122.118959, 37.689458 ], [ -122.126513, 37.690647 ], [ -122.127800, 37.690748 ], [ -122.130075, 37.692752 ], [ -122.129989, 37.693465 ], [ -122.130032, 37.696929 ], [ -122.129216, 37.697642 ], [ -122.128530, 37.698117 ], [ -122.125783, 37.699815 ], [ -122.123680, 37.701751 ], [ -122.123680, 37.701920 ], [ -122.123852, 37.702056 ], [ -122.126985, 37.704195 ], [ -122.129302, 37.705859 ], [ -122.125225, 37.708949 ], [ -122.124238, 37.709831 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435700", "GEOID10": "06001435700", "NAME10": "4357", "NAMELSAD10": "Census Tract 4357", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1325907, "AWATER10": 0, "INTPTLAT10": "+37.6786494", "INTPTLON10": "-122.1160735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.117543, 37.686062 ], [ -122.117200, 37.685926 ], [ -122.116814, 37.685654 ], [ -122.116685, 37.684262 ], [ -122.116599, 37.684126 ], [ -122.112093, 37.678997 ], [ -122.110977, 37.677809 ], [ -122.110977, 37.677741 ], [ -122.109733, 37.676416 ], [ -122.110720, 37.675737 ], [ -122.102051, 37.668196 ], [ -122.100248, 37.666565 ], [ -122.101192, 37.666429 ], [ -122.103338, 37.666531 ], [ -122.103510, 37.666803 ], [ -122.105613, 37.668569 ], [ -122.110162, 37.672578 ], [ -122.110248, 37.672612 ], [ -122.110848, 37.672272 ], [ -122.111578, 37.672034 ], [ -122.113037, 37.673291 ], [ -122.115312, 37.674888 ], [ -122.116771, 37.676008 ], [ -122.122951, 37.680152 ], [ -122.129002, 37.684398 ], [ -122.128787, 37.684262 ], [ -122.128658, 37.684703 ], [ -122.128272, 37.685043 ], [ -122.127843, 37.685179 ], [ -122.127113, 37.685179 ], [ -122.126555, 37.685043 ], [ -122.126427, 37.685077 ], [ -122.126384, 37.685179 ], [ -122.126040, 37.685349 ], [ -122.125955, 37.685552 ], [ -122.125783, 37.685722 ], [ -122.125440, 37.685824 ], [ -122.125010, 37.685756 ], [ -122.124410, 37.685756 ], [ -122.123938, 37.685858 ], [ -122.119346, 37.685790 ], [ -122.118702, 37.685858 ], [ -122.117844, 37.686062 ], [ -122.117543, 37.686062 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435700", "GEOID10": "06001435700", "NAME10": "4357", "NAMELSAD10": "Census Tract 4357", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1325907, "AWATER10": 0, "INTPTLAT10": "+37.6786494", "INTPTLON10": "-122.1160735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.117543, 37.686062 ], [ -122.117200, 37.685926 ], [ -122.116814, 37.685654 ], [ -122.116685, 37.684262 ], [ -122.116599, 37.684126 ], [ -122.112093, 37.678997 ], [ -122.110977, 37.677809 ], [ -122.110977, 37.677741 ], [ -122.109733, 37.676416 ], [ -122.110720, 37.675737 ], [ -122.102051, 37.668196 ], [ -122.100248, 37.666565 ], [ -122.101192, 37.666429 ], [ -122.103338, 37.666531 ], [ -122.103510, 37.666803 ], [ -122.105613, 37.668569 ], [ -122.110162, 37.672578 ], [ -122.110248, 37.672612 ], [ -122.110848, 37.672272 ], [ -122.111578, 37.672034 ], [ -122.112393, 37.672782 ], [ -122.113338, 37.673529 ], [ -122.115312, 37.674888 ], [ -122.116771, 37.676008 ], [ -122.122951, 37.680152 ], [ -122.129002, 37.684398 ], [ -122.128787, 37.684262 ], [ -122.128658, 37.684703 ], [ -122.128272, 37.685043 ], [ -122.127843, 37.685179 ], [ -122.127113, 37.685179 ], [ -122.126555, 37.685043 ], [ -122.126427, 37.685077 ], [ -122.126384, 37.685179 ], [ -122.126040, 37.685349 ], [ -122.125955, 37.685552 ], [ -122.125783, 37.685722 ], [ -122.125440, 37.685824 ], [ -122.125010, 37.685756 ], [ -122.124410, 37.685756 ], [ -122.123938, 37.685858 ], [ -122.119346, 37.685790 ], [ -122.118702, 37.685858 ], [ -122.117844, 37.686062 ], [ -122.117543, 37.686062 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "433900", "GEOID10": "06001433900", "NAME10": "4339", "NAMELSAD10": "Census Tract 4339", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 816478, "AWATER10": 0, "INTPTLAT10": "+37.6992653", "INTPTLON10": "-122.1135398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.116642, 37.705316 ], [ -122.110205, 37.701411 ], [ -122.108788, 37.700460 ], [ -122.107673, 37.699408 ], [ -122.106214, 37.697812 ], [ -122.107029, 37.697133 ], [ -122.111878, 37.693635 ], [ -122.120934, 37.699985 ], [ -122.119646, 37.701105 ], [ -122.117286, 37.703482 ], [ -122.117114, 37.703754 ], [ -122.116942, 37.704874 ], [ -122.116814, 37.705146 ], [ -122.116642, 37.705316 ] ] ] } } , @@ -3176,9 +3178,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "434000", "GEOID10": "06001434000", "NAME10": "4340", "NAMELSAD10": "Census Tract 4340", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1205972, "AWATER10": 0, "INTPTLAT10": "+37.6923654", "INTPTLON10": "-122.1103206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.118874, 37.698559 ], [ -122.111878, 37.693635 ], [ -122.107029, 37.697133 ], [ -122.106214, 37.697812 ], [ -122.102051, 37.693126 ], [ -122.101879, 37.692854 ], [ -122.101235, 37.692209 ], [ -122.100635, 37.691733 ], [ -122.099991, 37.691020 ], [ -122.099175, 37.690647 ], [ -122.099047, 37.689696 ], [ -122.103810, 37.689186 ], [ -122.104840, 37.689118 ], [ -122.109947, 37.688541 ], [ -122.111363, 37.688439 ], [ -122.112479, 37.688439 ], [ -122.114239, 37.688609 ], [ -122.118959, 37.689458 ], [ -122.118959, 37.690748 ], [ -122.119045, 37.691224 ], [ -122.119045, 37.691801 ], [ -122.118874, 37.694042 ], [ -122.118874, 37.698559 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435800", "GEOID10": "06001435800", "NAME10": "4358", "NAMELSAD10": "Census Tract 4358", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1304875, "AWATER10": 0, "INTPTLAT10": "+37.6793691", "INTPTLON10": "-122.1296018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.131405, 37.685111 ], [ -122.130761, 37.684907 ], [ -122.129946, 37.684432 ], [ -122.129345, 37.684432 ], [ -122.129045, 37.684364 ], [ -122.129002, 37.684398 ], [ -122.122951, 37.680152 ], [ -122.120118, 37.678216 ], [ -122.117543, 37.676552 ], [ -122.123551, 37.674208 ], [ -122.124538, 37.675839 ], [ -122.126212, 37.678386 ], [ -122.127070, 37.678046 ], [ -122.125826, 37.676178 ], [ -122.132950, 37.673291 ], [ -122.133293, 37.673936 ], [ -122.136984, 37.679609 ], [ -122.138700, 37.684737 ], [ -122.138186, 37.684737 ], [ -122.137370, 37.684568 ], [ -122.137070, 37.684601 ], [ -122.136340, 37.684432 ], [ -122.134881, 37.684466 ], [ -122.134495, 37.684364 ], [ -122.134194, 37.684364 ], [ -122.133851, 37.684398 ], [ -122.133465, 37.684534 ], [ -122.133079, 37.684975 ], [ -122.132735, 37.685009 ], [ -122.132435, 37.684941 ], [ -122.131405, 37.685111 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436100", "GEOID10": "06001436100", "NAME10": "4361", "NAMELSAD10": "Census Tract 4361", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1248056, "AWATER10": 0, "INTPTLAT10": "+37.6718054", "INTPTLON10": "-122.1235777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.126212, 37.678386 ], [ -122.124538, 37.675839 ], [ -122.123551, 37.674208 ], [ -122.117543, 37.676552 ], [ -122.115312, 37.674888 ], [ -122.113037, 37.673291 ], [ -122.111578, 37.672034 ], [ -122.120118, 37.668705 ], [ -122.120633, 37.669588 ], [ -122.123594, 37.668671 ], [ -122.123466, 37.668230 ], [ -122.128015, 37.667890 ], [ -122.128143, 37.665648 ], [ -122.128272, 37.665512 ], [ -122.127972, 37.665444 ], [ -122.127757, 37.665036 ], [ -122.128186, 37.665138 ], [ -122.130976, 37.665138 ], [ -122.131362, 37.669622 ], [ -122.131276, 37.670743 ], [ -122.132950, 37.673291 ], [ -122.125826, 37.676178 ], [ -122.127070, 37.678046 ], [ -122.126212, 37.678386 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436100", "GEOID10": "06001436100", "NAME10": "4361", "NAMELSAD10": "Census Tract 4361", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1248056, "AWATER10": 0, "INTPTLAT10": "+37.6718054", "INTPTLON10": "-122.1235777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.126212, 37.678386 ], [ -122.124538, 37.675839 ], [ -122.123551, 37.674208 ], [ -122.117543, 37.676552 ], [ -122.115312, 37.674888 ], [ -122.113338, 37.673529 ], [ -122.112393, 37.672782 ], [ -122.111578, 37.672034 ], [ -122.120118, 37.668705 ], [ -122.120633, 37.669588 ], [ -122.123594, 37.668671 ], [ -122.123466, 37.668230 ], [ -122.128015, 37.667890 ], [ -122.128143, 37.665648 ], [ -122.128272, 37.665512 ], [ -122.127972, 37.665444 ], [ -122.127757, 37.665036 ], [ -122.128186, 37.665138 ], [ -122.130976, 37.665138 ], [ -122.131362, 37.669622 ], [ -122.131276, 37.670743 ], [ -122.132950, 37.673291 ], [ -122.125826, 37.676178 ], [ -122.127070, 37.678046 ], [ -122.126212, 37.678386 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "436900", "GEOID10": "06001436900", "NAME10": "4369", "NAMELSAD10": "Census Tract 4369", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1207024, "AWATER10": 0, "INTPTLAT10": "+37.6603503", "INTPTLON10": "-122.1097202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.107759, 37.666361 ], [ -122.101622, 37.656407 ], [ -122.107329, 37.654267 ], [ -122.110076, 37.653179 ], [ -122.110419, 37.653145 ], [ -122.111278, 37.654504 ], [ -122.111621, 37.654946 ], [ -122.115097, 37.660518 ], [ -122.118144, 37.665580 ], [ -122.117586, 37.665818 ], [ -122.107759, 37.666361 ] ] ] } } , @@ -3226,7 +3226,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "431000", "GEOID10": "06001431000", "NAME10": "4310", "NAMELSAD10": "Census Tract 4310", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 954199, "AWATER10": 0, "INTPTLAT10": "+37.6929313", "INTPTLON10": "-122.0784575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.074671, 37.695672 ], [ -122.073340, 37.695537 ], [ -122.072310, 37.695231 ], [ -122.066131, 37.693058 ], [ -122.065573, 37.692922 ], [ -122.064929, 37.692888 ], [ -122.064500, 37.692956 ], [ -122.062440, 37.693499 ], [ -122.062526, 37.692888 ], [ -122.065659, 37.692005 ], [ -122.068834, 37.691292 ], [ -122.070122, 37.691088 ], [ -122.072482, 37.690952 ], [ -122.093296, 37.690748 ], [ -122.093081, 37.690986 ], [ -122.091837, 37.691835 ], [ -122.091107, 37.692243 ], [ -122.089949, 37.692820 ], [ -122.089434, 37.692990 ], [ -122.086644, 37.694314 ], [ -122.085743, 37.694620 ], [ -122.082996, 37.695367 ], [ -122.081409, 37.695605 ], [ -122.074671, 37.695672 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.988754, 37.721306 ], [ -121.988754, 37.714584 ], [ -121.991115, 37.712547 ], [ -121.992188, 37.711529 ], [ -122.001286, 37.703720 ], [ -122.003260, 37.703686 ], [ -122.007980, 37.703414 ], [ -122.015233, 37.703109 ], [ -122.016907, 37.702871 ], [ -122.017851, 37.702667 ], [ -122.021198, 37.701479 ], [ -122.021027, 37.700936 ], [ -122.020383, 37.699985 ], [ -122.021456, 37.699815 ], [ -122.022099, 37.699544 ], [ -122.024374, 37.698287 ], [ -122.025061, 37.698049 ], [ -122.025661, 37.697982 ], [ -122.026520, 37.698016 ], [ -122.027464, 37.698253 ], [ -122.031884, 37.699917 ], [ -122.032528, 37.700223 ], [ -122.034416, 37.701377 ], [ -122.035317, 37.701785 ], [ -122.036047, 37.701988 ], [ -122.036948, 37.701751 ], [ -122.038279, 37.701275 ], [ -122.038879, 37.701004 ], [ -122.039866, 37.700426 ], [ -122.040639, 37.699815 ], [ -122.042141, 37.698457 ], [ -122.044587, 37.696148 ], [ -122.045789, 37.695299 ], [ -122.046862, 37.694722 ], [ -122.047892, 37.694280 ], [ -122.048492, 37.694076 ], [ -122.049823, 37.693771 ], [ -122.050810, 37.693635 ], [ -122.052183, 37.693567 ], [ -122.053385, 37.693635 ], [ -122.054501, 37.693771 ], [ -122.054973, 37.694246 ], [ -122.055016, 37.694620 ], [ -122.056432, 37.694552 ], [ -122.056947, 37.693975 ], [ -122.058706, 37.693839 ], [ -122.059951, 37.693601 ], [ -122.059908, 37.693703 ], [ -122.059693, 37.693839 ], [ -122.058535, 37.695299 ], [ -122.058492, 37.695537 ], [ -122.058277, 37.695740 ], [ -122.058105, 37.695740 ], [ -122.057891, 37.695639 ], [ -122.057376, 37.694925 ], [ -122.057118, 37.694993 ], [ -122.056603, 37.695435 ], [ -122.056432, 37.695706 ], [ -122.056389, 37.696250 ], [ -122.056475, 37.696352 ], [ -122.056646, 37.696420 ], [ -122.056990, 37.696861 ], [ -122.057033, 37.697404 ], [ -122.056947, 37.697676 ], [ -122.056646, 37.698049 ], [ -122.056303, 37.698253 ], [ -122.055659, 37.698355 ], [ -122.055273, 37.699034 ], [ -122.055359, 37.699849 ], [ -122.055488, 37.700223 ], [ -122.055531, 37.700936 ], [ -122.055359, 37.701072 ], [ -122.054715, 37.701343 ], [ -122.053986, 37.702022 ], [ -122.053471, 37.702328 ], [ -122.053385, 37.702260 ], [ -122.052913, 37.702600 ], [ -122.052269, 37.702803 ], [ -122.051497, 37.702837 ], [ -122.050939, 37.702735 ], [ -122.050166, 37.702939 ], [ -122.045918, 37.702396 ], [ -122.045231, 37.702362 ], [ -122.044544, 37.702532 ], [ -122.043986, 37.702905 ], [ -122.043729, 37.703414 ], [ -122.043729, 37.703754 ], [ -122.043986, 37.704433 ], [ -122.043858, 37.704976 ], [ -122.043471, 37.705452 ], [ -122.042999, 37.705689 ], [ -122.042270, 37.705893 ], [ -122.041841, 37.706199 ], [ -122.041454, 37.706844 ], [ -122.041411, 37.706776 ], [ -122.041025, 37.707455 ], [ -122.040854, 37.707896 ], [ -122.040467, 37.709085 ], [ -122.040467, 37.709696 ], [ -122.040296, 37.709933 ], [ -122.040253, 37.710816 ], [ -122.040381, 37.711325 ], [ -122.040424, 37.712038 ], [ -122.040038, 37.713430 ], [ -122.039866, 37.713838 ], [ -122.039866, 37.714007 ], [ -122.039781, 37.714143 ], [ -122.039781, 37.714381 ], [ -122.039952, 37.714517 ], [ -122.039781, 37.715331 ], [ -122.039566, 37.715976 ], [ -122.039008, 37.716893 ], [ -122.038579, 37.717198 ], [ -122.038493, 37.716995 ], [ -122.038064, 37.717640 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719303 ], [ -122.038279, 37.719778 ], [ -122.037849, 37.720593 ], [ -122.037592, 37.721306 ], [ -121.988754, 37.721306 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.988754, 37.721306 ], [ -121.988754, 37.714584 ], [ -121.991115, 37.712547 ], [ -121.992188, 37.711529 ], [ -122.001286, 37.703720 ], [ -122.003260, 37.703686 ], [ -122.007980, 37.703414 ], [ -122.015233, 37.703109 ], [ -122.016907, 37.702871 ], [ -122.017851, 37.702667 ], [ -122.021198, 37.701479 ], [ -122.021027, 37.700936 ], [ -122.020383, 37.699985 ], [ -122.021456, 37.699815 ], [ -122.022099, 37.699544 ], [ -122.024374, 37.698287 ], [ -122.025061, 37.698049 ], [ -122.025661, 37.697982 ], [ -122.026520, 37.698016 ], [ -122.027464, 37.698253 ], [ -122.031884, 37.699917 ], [ -122.032528, 37.700223 ], [ -122.034416, 37.701377 ], [ -122.035317, 37.701785 ], [ -122.036047, 37.701988 ], [ -122.036948, 37.701751 ], [ -122.038279, 37.701275 ], [ -122.038879, 37.701004 ], [ -122.039866, 37.700426 ], [ -122.040639, 37.699815 ], [ -122.042141, 37.698457 ], [ -122.044587, 37.696148 ], [ -122.045789, 37.695299 ], [ -122.046862, 37.694722 ], [ -122.047892, 37.694280 ], [ -122.048492, 37.694076 ], [ -122.049823, 37.693771 ], [ -122.050810, 37.693635 ], [ -122.052183, 37.693567 ], [ -122.053385, 37.693635 ], [ -122.054501, 37.693771 ], [ -122.054973, 37.694246 ], [ -122.055016, 37.694620 ], [ -122.056432, 37.694552 ], [ -122.056947, 37.693975 ], [ -122.058706, 37.693839 ], [ -122.059951, 37.693601 ], [ -122.059908, 37.693703 ], [ -122.059693, 37.693839 ], [ -122.058535, 37.695299 ], [ -122.058492, 37.695537 ], [ -122.058277, 37.695740 ], [ -122.058105, 37.695740 ], [ -122.057891, 37.695639 ], [ -122.057376, 37.694925 ], [ -122.057118, 37.694993 ], [ -122.056603, 37.695435 ], [ -122.056432, 37.695706 ], [ -122.056389, 37.696250 ], [ -122.056475, 37.696352 ], [ -122.056646, 37.696420 ], [ -122.056990, 37.696861 ], [ -122.057033, 37.697404 ], [ -122.056947, 37.697676 ], [ -122.056646, 37.698049 ], [ -122.056303, 37.698253 ], [ -122.055659, 37.698355 ], [ -122.055273, 37.699034 ], [ -122.055359, 37.699849 ], [ -122.055488, 37.700223 ], [ -122.055531, 37.700936 ], [ -122.055359, 37.701072 ], [ -122.054715, 37.701343 ], [ -122.053986, 37.702022 ], [ -122.053471, 37.702328 ], [ -122.053385, 37.702260 ], [ -122.052913, 37.702600 ], [ -122.052269, 37.702803 ], [ -122.051497, 37.702837 ], [ -122.050939, 37.702735 ], [ -122.050166, 37.702939 ], [ -122.045918, 37.702396 ], [ -122.045231, 37.702362 ], [ -122.044544, 37.702532 ], [ -122.043986, 37.702905 ], [ -122.043729, 37.703414 ], [ -122.043729, 37.703754 ], [ -122.043986, 37.704433 ], [ -122.043858, 37.704976 ], [ -122.043471, 37.705452 ], [ -122.042999, 37.705689 ], [ -122.042270, 37.705893 ], [ -122.041841, 37.706199 ], [ -122.041454, 37.706844 ], [ -122.041411, 37.706776 ], [ -122.041025, 37.707455 ], [ -122.040854, 37.707896 ], [ -122.040467, 37.709085 ], [ -122.040467, 37.709696 ], [ -122.040296, 37.709933 ], [ -122.040253, 37.710816 ], [ -122.040381, 37.711325 ], [ -122.040424, 37.712038 ], [ -122.039781, 37.714143 ], [ -122.039781, 37.714381 ], [ -122.039952, 37.714517 ], [ -122.039781, 37.715331 ], [ -122.039566, 37.715976 ], [ -122.039008, 37.716893 ], [ -122.038579, 37.717198 ], [ -122.038493, 37.716995 ], [ -122.038064, 37.717640 ], [ -122.037935, 37.718149 ], [ -122.037935, 37.718353 ], [ -122.038279, 37.719303 ], [ -122.038279, 37.719778 ], [ -122.037849, 37.720593 ], [ -122.037592, 37.721306 ], [ -121.988754, 37.721306 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435200", "GEOID10": "06001435200", "NAME10": "4352", "NAMELSAD10": "Census Tract 4352", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2266078, "AWATER10": 61590, "INTPTLAT10": "+37.6874049", "INTPTLON10": "-122.0517821" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.045274, 37.695672 ], [ -122.044930, 37.695469 ], [ -122.044845, 37.695469 ], [ -122.043943, 37.694484 ], [ -122.044029, 37.693533 ], [ -122.044158, 37.692956 ], [ -122.044501, 37.692446 ], [ -122.046132, 37.692005 ], [ -122.047291, 37.690952 ], [ -122.047162, 37.689662 ], [ -122.046776, 37.688881 ], [ -122.046518, 37.688677 ], [ -122.045746, 37.688473 ], [ -122.045016, 37.687794 ], [ -122.044287, 37.687318 ], [ -122.043600, 37.686571 ], [ -122.043257, 37.685247 ], [ -122.042570, 37.683311 ], [ -122.042012, 37.682054 ], [ -122.041540, 37.681307 ], [ -122.040982, 37.680220 ], [ -122.040553, 37.679643 ], [ -122.044415, 37.674989 ], [ -122.044845, 37.675193 ], [ -122.045875, 37.675499 ], [ -122.047977, 37.675805 ], [ -122.048192, 37.675907 ], [ -122.049952, 37.678386 ], [ -122.049952, 37.678488 ], [ -122.050166, 37.678692 ], [ -122.050509, 37.678760 ], [ -122.052484, 37.681545 ], [ -122.053514, 37.682801 ], [ -122.054543, 37.684296 ], [ -122.054543, 37.684534 ], [ -122.054629, 37.684568 ], [ -122.062140, 37.683888 ], [ -122.063599, 37.683820 ], [ -122.063813, 37.683752 ], [ -122.063212, 37.685960 ], [ -122.062826, 37.685824 ], [ -122.062397, 37.685790 ], [ -122.062225, 37.685824 ], [ -122.061882, 37.686164 ], [ -122.061496, 37.686979 ], [ -122.060938, 37.688473 ], [ -122.060552, 37.689084 ], [ -122.060509, 37.689288 ], [ -122.059951, 37.690171 ], [ -122.059779, 37.690307 ], [ -122.059436, 37.690850 ], [ -122.059135, 37.691190 ], [ -122.059093, 37.691360 ], [ -122.058749, 37.691869 ], [ -122.058749, 37.692039 ], [ -122.059007, 37.692311 ], [ -122.059650, 37.692480 ], [ -122.059865, 37.692480 ], [ -122.060080, 37.692616 ], [ -122.060165, 37.692786 ], [ -122.060165, 37.693160 ], [ -122.059951, 37.693601 ], [ -122.058706, 37.693839 ], [ -122.056947, 37.693975 ], [ -122.056432, 37.694552 ], [ -122.055016, 37.694620 ], [ -122.054973, 37.694246 ], [ -122.054501, 37.693771 ], [ -122.053385, 37.693635 ], [ -122.052183, 37.693567 ], [ -122.050810, 37.693635 ], [ -122.049823, 37.693771 ], [ -122.048492, 37.694076 ], [ -122.047634, 37.694382 ], [ -122.046218, 37.695061 ], [ -122.045274, 37.695672 ] ] ] } } , @@ -3268,9 +3268,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "438100", "GEOID10": "06001438100", "NAME10": "4381", "NAMELSAD10": "Census Tract 4381", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2007039, "AWATER10": 0, "INTPTLAT10": "+37.6181516", "INTPTLON10": "-122.0389490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.046776, 37.629663 ], [ -122.031713, 37.616543 ], [ -122.023258, 37.609064 ], [ -122.032313, 37.608928 ], [ -122.034373, 37.608962 ], [ -122.039781, 37.613654 ], [ -122.042956, 37.616509 ], [ -122.050338, 37.622968 ], [ -122.051668, 37.625755 ], [ -122.049050, 37.627930 ], [ -122.046905, 37.629630 ], [ -122.046776, 37.629663 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440334", "GEOID10": "06001440334", "NAME10": "4403.34", "NAMELSAD10": "Census Tract 4403.34", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1024273, "AWATER10": 0, "INTPTLAT10": "+37.5937913", "INTPTLON10": "-122.0648512" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.061067, 37.598694 ], [ -122.056603, 37.592472 ], [ -122.060208, 37.591757 ], [ -122.064285, 37.586792 ], [ -122.064371, 37.586758 ], [ -122.068062, 37.590397 ], [ -122.072954, 37.595430 ], [ -122.073083, 37.595498 ], [ -122.073770, 37.596450 ], [ -122.072697, 37.596450 ], [ -122.071967, 37.596586 ], [ -122.070079, 37.597300 ], [ -122.067204, 37.597980 ], [ -122.066603, 37.598082 ], [ -122.062740, 37.598388 ], [ -122.061496, 37.598660 ], [ -122.061067, 37.598694 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440334", "GEOID10": "06001440334", "NAME10": "4403.34", "NAMELSAD10": "Census Tract 4403.34", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1024273, "AWATER10": 0, "INTPTLAT10": "+37.5937913", "INTPTLON10": "-122.0648512" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.061067, 37.598694 ], [ -122.056603, 37.592472 ], [ -122.060208, 37.591757 ], [ -122.064285, 37.586792 ], [ -122.064371, 37.586758 ], [ -122.068062, 37.590397 ], [ -122.072954, 37.595430 ], [ -122.073083, 37.595498 ], [ -122.073727, 37.596416 ], [ -122.072740, 37.596484 ], [ -122.072697, 37.596450 ], [ -122.071967, 37.596586 ], [ -122.070079, 37.597300 ], [ -122.067204, 37.597980 ], [ -122.066603, 37.598082 ], [ -122.062740, 37.598388 ], [ -122.061496, 37.598660 ], [ -122.061067, 37.598694 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440333", "GEOID10": "06001440333", "NAME10": "4403.33", "NAMELSAD10": "Census Tract 4403.33", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2512242, "AWATER10": 0, "INTPTLAT10": "+37.6053389", "INTPTLON10": "-122.0738117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.077932, 37.613484 ], [ -122.066603, 37.613144 ], [ -122.066517, 37.612838 ], [ -122.066946, 37.611546 ], [ -122.067118, 37.610492 ], [ -122.068534, 37.605698 ], [ -122.066388, 37.605290 ], [ -122.065744, 37.604950 ], [ -122.065487, 37.604916 ], [ -122.061067, 37.598694 ], [ -122.061496, 37.598660 ], [ -122.062740, 37.598388 ], [ -122.066603, 37.598082 ], [ -122.067204, 37.597980 ], [ -122.070079, 37.597300 ], [ -122.071967, 37.596586 ], [ -122.072697, 37.596450 ], [ -122.073770, 37.596450 ], [ -122.074499, 37.596926 ], [ -122.076731, 37.598966 ], [ -122.087417, 37.608180 ], [ -122.086816, 37.608622 ], [ -122.085700, 37.609234 ], [ -122.083426, 37.610016 ], [ -122.081194, 37.611002 ], [ -122.080250, 37.611546 ], [ -122.079778, 37.611886 ], [ -122.079005, 37.612872 ], [ -122.078490, 37.613314 ], [ -122.077932, 37.613484 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440333", "GEOID10": "06001440333", "NAME10": "4403.33", "NAMELSAD10": "Census Tract 4403.33", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2512242, "AWATER10": 0, "INTPTLAT10": "+37.6053389", "INTPTLON10": "-122.0738117" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.077932, 37.613484 ], [ -122.066603, 37.613144 ], [ -122.066517, 37.612838 ], [ -122.066946, 37.611546 ], [ -122.067118, 37.610492 ], [ -122.068534, 37.605698 ], [ -122.066388, 37.605290 ], [ -122.065744, 37.604950 ], [ -122.065487, 37.604916 ], [ -122.061067, 37.598694 ], [ -122.061496, 37.598660 ], [ -122.062740, 37.598388 ], [ -122.066603, 37.598082 ], [ -122.067204, 37.597980 ], [ -122.070079, 37.597300 ], [ -122.071967, 37.596586 ], [ -122.072697, 37.596450 ], [ -122.072740, 37.596484 ], [ -122.073770, 37.596416 ], [ -122.074499, 37.596926 ], [ -122.076731, 37.598966 ], [ -122.087417, 37.608180 ], [ -122.086816, 37.608622 ], [ -122.085700, 37.609234 ], [ -122.083426, 37.610016 ], [ -122.081194, 37.611002 ], [ -122.080250, 37.611546 ], [ -122.079778, 37.611886 ], [ -122.079005, 37.612872 ], [ -122.078490, 37.613314 ], [ -122.077932, 37.613484 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440301", "GEOID10": "06001440301", "NAME10": "4403.01", "NAMELSAD10": "Census Tract 4403.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4279533, "AWATER10": 0, "INTPTLAT10": "+37.6011866", "INTPTLON10": "-122.0427542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.041454, 37.611648 ], [ -122.035317, 37.606378 ], [ -122.034802, 37.605970 ], [ -122.033987, 37.605732 ], [ -122.032914, 37.605902 ], [ -122.032313, 37.605868 ], [ -122.030940, 37.605936 ], [ -122.034373, 37.608962 ], [ -122.032313, 37.608928 ], [ -122.023258, 37.609064 ], [ -122.020040, 37.606242 ], [ -122.020168, 37.606242 ], [ -122.020211, 37.606174 ], [ -122.020984, 37.605902 ], [ -122.027121, 37.605970 ], [ -122.027292, 37.605698 ], [ -122.028322, 37.605120 ], [ -122.028408, 37.604882 ], [ -122.028494, 37.604066 ], [ -122.028666, 37.603590 ], [ -122.028708, 37.602638 ], [ -122.029266, 37.602094 ], [ -122.029395, 37.601856 ], [ -122.029352, 37.601516 ], [ -122.029567, 37.601040 ], [ -122.029395, 37.600394 ], [ -122.029781, 37.600598 ], [ -122.030125, 37.597130 ], [ -122.030382, 37.596586 ], [ -122.030425, 37.595634 ], [ -122.030597, 37.595430 ], [ -122.030983, 37.595226 ], [ -122.031927, 37.594920 ], [ -122.032485, 37.594546 ], [ -122.032614, 37.594274 ], [ -122.032614, 37.593832 ], [ -122.032743, 37.593390 ], [ -122.033472, 37.592233 ], [ -122.033601, 37.591791 ], [ -122.033558, 37.591383 ], [ -122.033644, 37.591179 ], [ -122.033815, 37.591043 ], [ -122.034287, 37.590907 ], [ -122.034502, 37.590771 ], [ -122.056475, 37.596824 ], [ -122.057676, 37.597334 ], [ -122.059221, 37.598252 ], [ -122.059908, 37.598524 ], [ -122.060509, 37.598660 ], [ -122.061067, 37.598694 ], [ -122.065487, 37.604916 ], [ -122.064843, 37.604780 ], [ -122.063341, 37.604712 ], [ -122.062526, 37.604508 ], [ -122.059393, 37.603896 ], [ -122.058706, 37.606038 ], [ -122.043300, 37.605970 ], [ -122.042785, 37.611648 ], [ -122.041454, 37.611648 ] ] ] } } , @@ -3282,6 +3282,8 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441501", "GEOID10": "06001441501", "NAME10": "4415.01", "NAMELSAD10": "Census Tract 4415.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2624991, "AWATER10": 0, "INTPTLAT10": "+37.5699748", "INTPTLON10": "-122.0724418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.062912, 37.584888 ], [ -122.062440, 37.584004 ], [ -122.062097, 37.582916 ], [ -122.061410, 37.579413 ], [ -122.060809, 37.576692 ], [ -122.069993, 37.576692 ], [ -122.067633, 37.579413 ], [ -122.064114, 37.583426 ], [ -122.062955, 37.584616 ], [ -122.062912, 37.584854 ], [ -122.062912, 37.584888 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.056603, 37.592472 ], [ -122.055144, 37.590363 ], [ -122.051368, 37.585160 ], [ -122.050681, 37.584072 ], [ -122.049866, 37.582643 ], [ -122.049136, 37.580875 ], [ -122.048621, 37.579413 ], [ -122.048364, 37.578596 ], [ -122.050037, 37.579413 ], [ -122.051411, 37.580093 ], [ -122.052054, 37.580331 ], [ -122.052569, 37.580671 ], [ -122.054672, 37.581725 ], [ -122.054930, 37.581249 ], [ -122.055659, 37.580365 ], [ -122.056561, 37.579413 ], [ -122.056732, 37.579174 ], [ -122.058878, 37.576692 ], [ -122.060809, 37.576692 ], [ -122.061410, 37.579413 ], [ -122.062097, 37.582916 ], [ -122.062440, 37.584004 ], [ -122.062912, 37.584888 ], [ -122.062526, 37.585704 ], [ -122.063341, 37.586112 ], [ -122.064328, 37.586758 ], [ -122.060208, 37.591757 ], [ -122.056603, 37.592472 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440100", "GEOID10": "06001440100", "NAME10": "4401", "NAMELSAD10": "Census Tract 4401", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 27751537, "AWATER10": 0, "INTPTLAT10": "+37.6163011", "INTPTLON10": "-121.9815046" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.988754, 37.633912 ], [ -121.988754, 37.599204 ], [ -121.988840, 37.599000 ], [ -121.992188, 37.596620 ], [ -121.993046, 37.596042 ], [ -122.001371, 37.589615 ], [ -122.001457, 37.589683 ], [ -122.006521, 37.594172 ], [ -122.009826, 37.597198 ], [ -122.012787, 37.599748 ], [ -122.020040, 37.606242 ], [ -122.019653, 37.606446 ], [ -122.019396, 37.606718 ], [ -122.019224, 37.606752 ], [ -122.019010, 37.606888 ], [ -122.017980, 37.607806 ], [ -122.017894, 37.608316 ], [ -122.018023, 37.608486 ], [ -122.016864, 37.609268 ], [ -122.017164, 37.610016 ], [ -122.017207, 37.610322 ], [ -122.017078, 37.610730 ], [ -122.017164, 37.611138 ], [ -122.017078, 37.611308 ], [ -122.016606, 37.611818 ], [ -122.016821, 37.612056 ], [ -122.017293, 37.612090 ], [ -122.017336, 37.612192 ], [ -122.017207, 37.612396 ], [ -122.017121, 37.612804 ], [ -122.016735, 37.613110 ], [ -122.016821, 37.613314 ], [ -122.017035, 37.613450 ], [ -122.016778, 37.614027 ], [ -122.016778, 37.614265 ], [ -122.017035, 37.614673 ], [ -122.017293, 37.614673 ], [ -122.017465, 37.614809 ], [ -122.017508, 37.615047 ], [ -122.017379, 37.615455 ], [ -122.017679, 37.615693 ], [ -122.017765, 37.615965 ], [ -122.017937, 37.616135 ], [ -122.017808, 37.616373 ], [ -122.017851, 37.616611 ], [ -122.018666, 37.616985 ], [ -122.018924, 37.617291 ], [ -122.019010, 37.617699 ], [ -122.019310, 37.617903 ], [ -122.019911, 37.617801 ], [ -122.020125, 37.617869 ], [ -122.020340, 37.618073 ], [ -122.020640, 37.618991 ], [ -122.021027, 37.619127 ], [ -122.021542, 37.619161 ], [ -122.021885, 37.619296 ], [ -122.022185, 37.619772 ], [ -122.022572, 37.620010 ], [ -122.022657, 37.620384 ], [ -122.022529, 37.620758 ], [ -122.022572, 37.620894 ], [ -122.023087, 37.620962 ], [ -122.023344, 37.621098 ], [ -122.023773, 37.621744 ], [ -122.023816, 37.622186 ], [ -122.023602, 37.622730 ], [ -122.023602, 37.622934 ], [ -122.023773, 37.623070 ], [ -122.024331, 37.623138 ], [ -122.024589, 37.623307 ], [ -122.024674, 37.623307 ], [ -122.024975, 37.623206 ], [ -122.025361, 37.622866 ], [ -122.025962, 37.622526 ], [ -122.026219, 37.622526 ], [ -122.026434, 37.622628 ], [ -122.026649, 37.623070 ], [ -122.026649, 37.623240 ], [ -122.028022, 37.622764 ], [ -122.029610, 37.625075 ], [ -122.029438, 37.627284 ], [ -122.029910, 37.627760 ], [ -122.030039, 37.628848 ], [ -122.029653, 37.628712 ], [ -122.029266, 37.628746 ], [ -122.028966, 37.628576 ], [ -122.028108, 37.628440 ], [ -122.027764, 37.628848 ], [ -122.027164, 37.628950 ], [ -122.026734, 37.629086 ], [ -122.026305, 37.629290 ], [ -122.025619, 37.629833 ], [ -122.025533, 37.629969 ], [ -122.024589, 37.630241 ], [ -122.023301, 37.631567 ], [ -122.023044, 37.632077 ], [ -122.022872, 37.632247 ], [ -122.022700, 37.632314 ], [ -122.021885, 37.632314 ], [ -122.021284, 37.632858 ], [ -122.020984, 37.633232 ], [ -122.020769, 37.633334 ], [ -122.019911, 37.633334 ], [ -122.019224, 37.633470 ], [ -122.018967, 37.633402 ], [ -122.018709, 37.633096 ], [ -122.018366, 37.632858 ], [ -122.017593, 37.632620 ], [ -122.017078, 37.632314 ], [ -122.016177, 37.632179 ], [ -122.015104, 37.632179 ], [ -122.014503, 37.631975 ], [ -122.013302, 37.631261 ], [ -122.011971, 37.630581 ], [ -122.011499, 37.630241 ], [ -122.010984, 37.630139 ], [ -122.010555, 37.629969 ], [ -122.009568, 37.629256 ], [ -122.009225, 37.629086 ], [ -122.008667, 37.628916 ], [ -122.008152, 37.628576 ], [ -122.007766, 37.628168 ], [ -122.007551, 37.627488 ], [ -122.007337, 37.627318 ], [ -122.006907, 37.627114 ], [ -122.006607, 37.627046 ], [ -122.005405, 37.627522 ], [ -122.003517, 37.627148 ], [ -122.002916, 37.627114 ], [ -122.002487, 37.627148 ], [ -122.002144, 37.627250 ], [ -122.001414, 37.627964 ], [ -121.999912, 37.628406 ], [ -121.999269, 37.628814 ], [ -121.999097, 37.629018 ], [ -121.999097, 37.629290 ], [ -121.999269, 37.629460 ], [ -121.999140, 37.629901 ], [ -121.998882, 37.630411 ], [ -121.998582, 37.630683 ], [ -121.997681, 37.631091 ], [ -121.996651, 37.631465 ], [ -121.995749, 37.631499 ], [ -121.994934, 37.631227 ], [ -121.994505, 37.631159 ], [ -121.993690, 37.630717 ], [ -121.992574, 37.630513 ], [ -121.992188, 37.630377 ], [ -121.991758, 37.630343 ], [ -121.991544, 37.630445 ], [ -121.991415, 37.630581 ], [ -121.991329, 37.630819 ], [ -121.991329, 37.631499 ], [ -121.991286, 37.631601 ], [ -121.991115, 37.631703 ], [ -121.990986, 37.632179 ], [ -121.990857, 37.632348 ], [ -121.990471, 37.633266 ], [ -121.990128, 37.633674 ], [ -121.989870, 37.633844 ], [ -121.988754, 37.633912 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "438000", "GEOID10": "06001438000", "NAME10": "4380", "NAMELSAD10": "Census Tract 4380", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2422520, "AWATER10": 0, "INTPTLAT10": "+37.6191280", "INTPTLON10": "-122.0285144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.039180, 37.629222 ], [ -122.038879, 37.629154 ], [ -122.036262, 37.629154 ], [ -122.036004, 37.628916 ], [ -122.035875, 37.628576 ], [ -122.035704, 37.628440 ], [ -122.034802, 37.628032 ], [ -122.034416, 37.628032 ], [ -122.033687, 37.628134 ], [ -122.030425, 37.628882 ], [ -122.030039, 37.628848 ], [ -122.029910, 37.627760 ], [ -122.029438, 37.627284 ], [ -122.029610, 37.625075 ], [ -122.028022, 37.622764 ], [ -122.026649, 37.623240 ], [ -122.026649, 37.623070 ], [ -122.026434, 37.622628 ], [ -122.026219, 37.622526 ], [ -122.025962, 37.622526 ], [ -122.025361, 37.622866 ], [ -122.024975, 37.623206 ], [ -122.024674, 37.623307 ], [ -122.024589, 37.623307 ], [ -122.024331, 37.623138 ], [ -122.023773, 37.623070 ], [ -122.023602, 37.622934 ], [ -122.023602, 37.622730 ], [ -122.023816, 37.622186 ], [ -122.023773, 37.621744 ], [ -122.023344, 37.621098 ], [ -122.023087, 37.620962 ], [ -122.022572, 37.620894 ], [ -122.022529, 37.620758 ], [ -122.022657, 37.620384 ], [ -122.022572, 37.620010 ], [ -122.022185, 37.619772 ], [ -122.021885, 37.619296 ], [ -122.021542, 37.619161 ], [ -122.021027, 37.619127 ], [ -122.020640, 37.618991 ], [ -122.020340, 37.618073 ], [ -122.020125, 37.617869 ], [ -122.019911, 37.617801 ], [ -122.019310, 37.617903 ], [ -122.019010, 37.617699 ], [ -122.018924, 37.617291 ], [ -122.018666, 37.616985 ], [ -122.017851, 37.616611 ], [ -122.017808, 37.616373 ], [ -122.017937, 37.616135 ], [ -122.017765, 37.615965 ], [ -122.017679, 37.615693 ], [ -122.017379, 37.615455 ], [ -122.017508, 37.615047 ], [ -122.017465, 37.614809 ], [ -122.017293, 37.614673 ], [ -122.017035, 37.614673 ], [ -122.016778, 37.614265 ], [ -122.016778, 37.614027 ], [ -122.017035, 37.613450 ], [ -122.016821, 37.613314 ], [ -122.016735, 37.613110 ], [ -122.017121, 37.612804 ], [ -122.017207, 37.612396 ], [ -122.017336, 37.612192 ], [ -122.017293, 37.612090 ], [ -122.016821, 37.612056 ], [ -122.016606, 37.611818 ], [ -122.017078, 37.611308 ], [ -122.017164, 37.611138 ], [ -122.017078, 37.610730 ], [ -122.017207, 37.610322 ], [ -122.017164, 37.610016 ], [ -122.016864, 37.609268 ], [ -122.018023, 37.608486 ], [ -122.017894, 37.608316 ], [ -122.017937, 37.607874 ], [ -122.019010, 37.606888 ], [ -122.019224, 37.606752 ], [ -122.019396, 37.606718 ], [ -122.019653, 37.606446 ], [ -122.020040, 37.606242 ], [ -122.031713, 37.616543 ], [ -122.044630, 37.627760 ], [ -122.044544, 37.627862 ], [ -122.044115, 37.627930 ], [ -122.042785, 37.627896 ], [ -122.040210, 37.629052 ], [ -122.039652, 37.629222 ], [ -122.039180, 37.629222 ] ] ] } } @@ -3298,8 +3300,6 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "440336", "GEOID10": "06001440336", "NAME10": "4403.36", "NAMELSAD10": "Census Tract 4403.36", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1141556, "AWATER10": 0, "INTPTLAT10": "+37.5811633", "INTPTLON10": "-122.0175013" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.021499, 37.587167 ], [ -122.010942, 37.584174 ], [ -122.009611, 37.583698 ], [ -122.008066, 37.582950 ], [ -122.006521, 37.582677 ], [ -122.006650, 37.582201 ], [ -122.008109, 37.579685 ], [ -122.009439, 37.580195 ], [ -122.009869, 37.580773 ], [ -122.010641, 37.581419 ], [ -122.013345, 37.580977 ], [ -122.014289, 37.579413 ], [ -122.015018, 37.578426 ], [ -122.016435, 37.576692 ], [ -122.023215, 37.576692 ], [ -122.023859, 37.577032 ], [ -122.025361, 37.578494 ], [ -122.024503, 37.579413 ], [ -122.024074, 37.579991 ], [ -122.023730, 37.580773 ], [ -122.021499, 37.587167 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441522", "GEOID10": "06001441522", "NAME10": "4415.22", "NAMELSAD10": "Census Tract 4415.22", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1307697, "AWATER10": 0, "INTPTLAT10": "+37.5845579", "INTPTLON10": "-122.0572528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.056603, 37.592472 ], [ -122.055144, 37.590363 ], [ -122.051368, 37.585160 ], [ -122.050681, 37.584072 ], [ -122.049866, 37.582643 ], [ -122.049136, 37.580875 ], [ -122.048621, 37.579413 ], [ -122.048364, 37.578596 ], [ -122.050037, 37.579413 ], [ -122.051411, 37.580093 ], [ -122.052054, 37.580331 ], [ -122.052569, 37.580671 ], [ -122.054672, 37.581725 ], [ -122.054930, 37.581249 ], [ -122.055659, 37.580365 ], [ -122.056561, 37.579413 ], [ -122.056732, 37.579174 ], [ -122.058878, 37.576692 ], [ -122.060809, 37.576692 ], [ -122.061410, 37.579413 ], [ -122.062097, 37.582916 ], [ -122.062440, 37.584004 ], [ -122.062912, 37.584888 ], [ -122.062526, 37.585704 ], [ -122.063341, 37.586112 ], [ -122.064328, 37.586758 ], [ -122.060208, 37.591757 ], [ -122.056603, 37.592472 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441402", "GEOID10": "06001441402", "NAME10": "4414.02", "NAMELSAD10": "Census Tract 4414.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1634599, "AWATER10": 0, "INTPTLAT10": "+37.5823791", "INTPTLON10": "-122.0398734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.041454, 37.588119 ], [ -122.040424, 37.588051 ], [ -122.039695, 37.587881 ], [ -122.038407, 37.587745 ], [ -122.037420, 37.587541 ], [ -122.036605, 37.587303 ], [ -122.034760, 37.586656 ], [ -122.033515, 37.586112 ], [ -122.033129, 37.585874 ], [ -122.031584, 37.584616 ], [ -122.028580, 37.581691 ], [ -122.026348, 37.579413 ], [ -122.025576, 37.578732 ], [ -122.025361, 37.578460 ], [ -122.026820, 37.576930 ], [ -122.028322, 37.577848 ], [ -122.029438, 37.578902 ], [ -122.030082, 37.579413 ], [ -122.031412, 37.580331 ], [ -122.033129, 37.581385 ], [ -122.033944, 37.581623 ], [ -122.034802, 37.581657 ], [ -122.035832, 37.581453 ], [ -122.036605, 37.581045 ], [ -122.037034, 37.580671 ], [ -122.038021, 37.579413 ], [ -122.039995, 37.576692 ], [ -122.044458, 37.576692 ], [ -122.045016, 37.576964 ], [ -122.044845, 37.577066 ], [ -122.047205, 37.578256 ], [ -122.047119, 37.578562 ], [ -122.047720, 37.579413 ], [ -122.048492, 37.580399 ], [ -122.049265, 37.581793 ], [ -122.049222, 37.581045 ], [ -122.049866, 37.582643 ], [ -122.050338, 37.583494 ], [ -122.048578, 37.585602 ], [ -122.046518, 37.586792 ], [ -122.044845, 37.587473 ], [ -122.042184, 37.588017 ], [ -122.041454, 37.588119 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441401", "GEOID10": "06001441401", "NAME10": "4414.01", "NAMELSAD10": "Census Tract 4414.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1888786, "AWATER10": 0, "INTPTLAT10": "+37.5735681", "INTPTLON10": "-122.0376753" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.049265, 37.581793 ], [ -122.048492, 37.580399 ], [ -122.047720, 37.579413 ], [ -122.047119, 37.578562 ], [ -122.047205, 37.578256 ], [ -122.044845, 37.577066 ], [ -122.045016, 37.576964 ], [ -122.044458, 37.576692 ], [ -122.047720, 37.576692 ], [ -122.048621, 37.579413 ], [ -122.048965, 37.580399 ], [ -122.049222, 37.581045 ], [ -122.049265, 37.581793 ] ] ], [ [ [ -122.039995, 37.576692 ], [ -122.038021, 37.579413 ], [ -122.037034, 37.580671 ], [ -122.036605, 37.581045 ], [ -122.035832, 37.581453 ], [ -122.034802, 37.581657 ], [ -122.033944, 37.581623 ], [ -122.033129, 37.581385 ], [ -122.031412, 37.580331 ], [ -122.030082, 37.579413 ], [ -122.029438, 37.578902 ], [ -122.028322, 37.577848 ], [ -122.026820, 37.576930 ], [ -122.026992, 37.576692 ], [ -122.039995, 37.576692 ] ] ] ] } } @@ -3354,7 +3354,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410400", "GEOID10": "06001410400", "NAME10": "4104", "NAMELSAD10": "Census Tract 4104", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 706609, "AWATER10": 0, "INTPTLAT10": "+37.7408161", "INTPTLON10": "-122.1621741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.159514, 37.745064 ], [ -122.157583, 37.742485 ], [ -122.156982, 37.741501 ], [ -122.156553, 37.741026 ], [ -122.155137, 37.739092 ], [ -122.160802, 37.737496 ], [ -122.164149, 37.735935 ], [ -122.167969, 37.741094 ], [ -122.169042, 37.742553 ], [ -122.169170, 37.742723 ], [ -122.169213, 37.742757 ], [ -122.167969, 37.743096 ], [ -122.164364, 37.744012 ], [ -122.160544, 37.745064 ], [ -122.159514, 37.745064 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410100", "GEOID10": "06001410100", "NAME10": "4101", "NAMELSAD10": "Census Tract 4101", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 784677, "AWATER10": 0, "INTPTLAT10": "+37.7478642", "INTPTLON10": "-122.1535285" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.152090, 37.754158 ], [ -122.151875, 37.753955 ], [ -122.151189, 37.753649 ], [ -122.151361, 37.753378 ], [ -122.151661, 37.752428 ], [ -122.151704, 37.751240 ], [ -122.151618, 37.750799 ], [ -122.151403, 37.750256 ], [ -122.149558, 37.746524 ], [ -122.148914, 37.745438 ], [ -122.148657, 37.745132 ], [ -122.149472, 37.744623 ], [ -122.147241, 37.743232 ], [ -122.146511, 37.742485 ], [ -122.147326, 37.741365 ], [ -122.147541, 37.741196 ], [ -122.148442, 37.740890 ], [ -122.148743, 37.740856 ], [ -122.151489, 37.742180 ], [ -122.152605, 37.742994 ], [ -122.153463, 37.743944 ], [ -122.153893, 37.744318 ], [ -122.156339, 37.746015 ], [ -122.159815, 37.751274 ], [ -122.160416, 37.752903 ], [ -122.159386, 37.753378 ], [ -122.157369, 37.753819 ], [ -122.156553, 37.753480 ], [ -122.156425, 37.753344 ], [ -122.156339, 37.753073 ], [ -122.155867, 37.752496 ], [ -122.154365, 37.751647 ], [ -122.153893, 37.751885 ], [ -122.152820, 37.753582 ], [ -122.152433, 37.753955 ], [ -122.152090, 37.754158 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410100", "GEOID10": "06001410100", "NAME10": "4101", "NAMELSAD10": "Census Tract 4101", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 784677, "AWATER10": 0, "INTPTLAT10": "+37.7478642", "INTPTLON10": "-122.1535285" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.152090, 37.754158 ], [ -122.151875, 37.753955 ], [ -122.151189, 37.753649 ], [ -122.151361, 37.753378 ], [ -122.151661, 37.752428 ], [ -122.151704, 37.751240 ], [ -122.151618, 37.750799 ], [ -122.151403, 37.750324 ], [ -122.149558, 37.746524 ], [ -122.148914, 37.745438 ], [ -122.148657, 37.745132 ], [ -122.149472, 37.744623 ], [ -122.147241, 37.743232 ], [ -122.146511, 37.742485 ], [ -122.147326, 37.741365 ], [ -122.147541, 37.741196 ], [ -122.148442, 37.740890 ], [ -122.148743, 37.740856 ], [ -122.151489, 37.742180 ], [ -122.152605, 37.742994 ], [ -122.153463, 37.743944 ], [ -122.153893, 37.744318 ], [ -122.156339, 37.746015 ], [ -122.159815, 37.751274 ], [ -122.160416, 37.752903 ], [ -122.159386, 37.753378 ], [ -122.157369, 37.753819 ], [ -122.156553, 37.753480 ], [ -122.156425, 37.753344 ], [ -122.156339, 37.753073 ], [ -122.155867, 37.752496 ], [ -122.154365, 37.751647 ], [ -122.153893, 37.751885 ], [ -122.152820, 37.753582 ], [ -122.152433, 37.753955 ], [ -122.152090, 37.754158 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410200", "GEOID10": "06001410200", "NAME10": "4102", "NAMELSAD10": "Census Tract 4102", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 585845, "AWATER10": 0, "INTPTLAT10": "+37.7453063", "INTPTLON10": "-122.1571742" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.160416, 37.752903 ], [ -122.159815, 37.751274 ], [ -122.156339, 37.746015 ], [ -122.153893, 37.744318 ], [ -122.153463, 37.743944 ], [ -122.152605, 37.742994 ], [ -122.151747, 37.742349 ], [ -122.150846, 37.741840 ], [ -122.148743, 37.740856 ], [ -122.155137, 37.739092 ], [ -122.156553, 37.741026 ], [ -122.156982, 37.741501 ], [ -122.157583, 37.742485 ], [ -122.164063, 37.751206 ], [ -122.160416, 37.752903 ] ] ] } } , @@ -3376,9 +3376,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "409900", "GEOID10": "06001409900", "NAME10": "4099", "NAMELSAD10": "Census Tract 4099", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4498557, "AWATER10": 0, "INTPTLAT10": "+37.7619882", "INTPTLON10": "-122.1353845" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.144194, 37.773191 ], [ -122.143507, 37.773055 ], [ -122.142262, 37.772547 ], [ -122.141747, 37.772275 ], [ -122.141147, 37.771766 ], [ -122.140031, 37.770511 ], [ -122.139215, 37.770002 ], [ -122.138271, 37.769595 ], [ -122.137928, 37.769527 ], [ -122.137456, 37.769527 ], [ -122.137027, 37.769629 ], [ -122.136383, 37.769833 ], [ -122.135310, 37.770274 ], [ -122.134409, 37.770783 ], [ -122.133851, 37.770986 ], [ -122.133594, 37.771020 ], [ -122.131705, 37.770918 ], [ -122.131062, 37.770749 ], [ -122.130547, 37.770409 ], [ -122.129774, 37.769629 ], [ -122.129388, 37.769493 ], [ -122.128916, 37.769460 ], [ -122.128787, 37.769493 ], [ -122.128658, 37.769629 ], [ -122.128615, 37.769595 ], [ -122.128186, 37.769697 ], [ -122.126212, 37.767594 ], [ -122.122307, 37.760537 ], [ -122.118530, 37.754532 ], [ -122.118444, 37.754158 ], [ -122.116127, 37.749883 ], [ -122.115955, 37.748424 ], [ -122.120633, 37.745981 ], [ -122.120805, 37.746422 ], [ -122.121534, 37.747711 ], [ -122.122307, 37.748763 ], [ -122.122951, 37.749204 ], [ -122.123466, 37.750188 ], [ -122.124152, 37.751206 ], [ -122.124023, 37.751308 ], [ -122.124624, 37.751614 ], [ -122.125053, 37.751919 ], [ -122.125869, 37.752530 ], [ -122.126298, 37.752937 ], [ -122.127113, 37.754192 ], [ -122.128057, 37.755142 ], [ -122.128572, 37.755380 ], [ -122.129345, 37.755991 ], [ -122.129517, 37.756058 ], [ -122.131834, 37.756533 ], [ -122.133164, 37.756601 ], [ -122.134323, 37.757144 ], [ -122.135439, 37.757517 ], [ -122.136168, 37.757619 ], [ -122.137542, 37.757653 ], [ -122.137799, 37.757721 ], [ -122.138228, 37.757959 ], [ -122.138572, 37.757925 ], [ -122.139344, 37.757619 ], [ -122.139988, 37.757212 ], [ -122.140417, 37.757246 ], [ -122.141061, 37.757517 ], [ -122.141662, 37.757517 ], [ -122.143464, 37.757110 ], [ -122.143979, 37.756873 ], [ -122.144494, 37.756567 ], [ -122.144666, 37.756398 ], [ -122.145267, 37.756194 ], [ -122.145481, 37.755991 ], [ -122.145653, 37.755685 ], [ -122.146039, 37.755414 ], [ -122.148228, 37.754294 ], [ -122.148485, 37.754192 ], [ -122.148914, 37.754158 ], [ -122.149043, 37.754023 ], [ -122.149215, 37.753615 ], [ -122.149343, 37.753514 ], [ -122.150159, 37.753344 ], [ -122.150459, 37.753344 ], [ -122.151060, 37.753548 ], [ -122.151189, 37.753649 ], [ -122.150803, 37.754226 ], [ -122.149000, 37.755855 ], [ -122.148185, 37.756873 ], [ -122.147756, 37.758060 ], [ -122.147756, 37.759112 ], [ -122.147927, 37.759960 ], [ -122.148228, 37.760673 ], [ -122.148829, 37.761725 ], [ -122.150803, 37.764574 ], [ -122.152004, 37.765965 ], [ -122.153935, 37.769086 ], [ -122.154922, 37.770545 ], [ -122.155309, 37.771054 ], [ -122.156296, 37.772004 ], [ -122.155824, 37.772343 ], [ -122.155266, 37.772513 ], [ -122.154493, 37.772547 ], [ -122.154150, 37.772479 ], [ -122.153807, 37.772343 ], [ -122.153506, 37.772106 ], [ -122.152648, 37.771088 ], [ -122.152176, 37.770715 ], [ -122.151661, 37.770511 ], [ -122.151189, 37.770409 ], [ -122.150588, 37.770409 ], [ -122.149386, 37.770647 ], [ -122.148700, 37.770884 ], [ -122.148056, 37.771190 ], [ -122.145395, 37.772988 ], [ -122.144580, 37.773191 ], [ -122.144194, 37.773191 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410000", "GEOID10": "06001410000", "NAME10": "4100", "NAMELSAD10": "Census Tract 4100", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6784422, "AWATER10": 139197, "INTPTLAT10": "+37.7447566", "INTPTLON10": "-122.1332163" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138228, 37.757959 ], [ -122.137799, 37.757721 ], [ -122.137542, 37.757653 ], [ -122.136168, 37.757619 ], [ -122.135439, 37.757517 ], [ -122.134323, 37.757144 ], [ -122.133164, 37.756601 ], [ -122.131834, 37.756533 ], [ -122.129517, 37.756058 ], [ -122.129345, 37.755991 ], [ -122.128572, 37.755380 ], [ -122.128057, 37.755142 ], [ -122.127113, 37.754192 ], [ -122.126298, 37.752937 ], [ -122.125869, 37.752530 ], [ -122.125053, 37.751919 ], [ -122.124624, 37.751614 ], [ -122.124023, 37.751308 ], [ -122.124152, 37.751206 ], [ -122.123466, 37.750188 ], [ -122.122951, 37.749204 ], [ -122.122307, 37.748763 ], [ -122.121534, 37.747711 ], [ -122.120805, 37.746422 ], [ -122.120633, 37.745981 ], [ -122.113123, 37.749917 ], [ -122.113080, 37.749611 ], [ -122.112823, 37.748967 ], [ -122.112479, 37.748526 ], [ -122.112007, 37.748118 ], [ -122.111664, 37.747575 ], [ -122.111664, 37.747033 ], [ -122.111835, 37.746693 ], [ -122.112050, 37.746524 ], [ -122.112179, 37.746286 ], [ -122.112265, 37.745913 ], [ -122.112265, 37.744861 ], [ -122.112436, 37.743843 ], [ -122.112479, 37.743707 ], [ -122.113209, 37.742960 ], [ -122.113423, 37.742180 ], [ -122.113724, 37.741705 ], [ -122.113895, 37.741230 ], [ -122.114582, 37.740754 ], [ -122.114668, 37.740347 ], [ -122.115569, 37.739227 ], [ -122.115355, 37.736716 ], [ -122.115612, 37.735901 ], [ -122.116513, 37.734340 ], [ -122.117972, 37.732575 ], [ -122.119818, 37.731625 ], [ -122.120976, 37.730878 ], [ -122.122307, 37.729860 ], [ -122.124023, 37.729011 ], [ -122.124410, 37.729011 ], [ -122.125483, 37.729385 ], [ -122.126083, 37.729419 ], [ -122.126641, 37.729520 ], [ -122.127371, 37.729690 ], [ -122.127414, 37.729758 ], [ -122.130589, 37.730098 ], [ -122.130976, 37.730369 ], [ -122.131319, 37.730742 ], [ -122.131791, 37.731421 ], [ -122.131577, 37.731523 ], [ -122.131491, 37.731489 ], [ -122.131276, 37.731727 ], [ -122.131019, 37.731862 ], [ -122.130761, 37.732168 ], [ -122.130761, 37.732270 ], [ -122.130289, 37.732779 ], [ -122.130461, 37.732813 ], [ -122.130375, 37.733627 ], [ -122.130632, 37.733797 ], [ -122.131190, 37.733593 ], [ -122.131619, 37.733661 ], [ -122.132735, 37.734001 ], [ -122.134538, 37.734238 ], [ -122.134838, 37.734103 ], [ -122.135224, 37.733729 ], [ -122.136083, 37.732507 ], [ -122.136726, 37.731761 ], [ -122.136898, 37.731659 ], [ -122.137413, 37.731523 ], [ -122.137971, 37.731082 ], [ -122.138357, 37.730946 ], [ -122.138572, 37.731421 ], [ -122.138529, 37.731489 ], [ -122.138228, 37.731625 ], [ -122.138443, 37.731998 ], [ -122.138486, 37.731964 ], [ -122.138700, 37.732406 ], [ -122.138872, 37.732881 ], [ -122.138872, 37.733322 ], [ -122.139215, 37.733831 ], [ -122.139301, 37.734680 ], [ -122.139645, 37.734510 ], [ -122.140203, 37.734442 ], [ -122.140675, 37.736071 ], [ -122.141061, 37.736750 ], [ -122.141533, 37.737327 ], [ -122.141833, 37.737598 ], [ -122.142177, 37.737802 ], [ -122.142348, 37.737836 ], [ -122.142649, 37.738243 ], [ -122.147069, 37.743096 ], [ -122.149472, 37.744623 ], [ -122.148657, 37.745132 ], [ -122.148914, 37.745438 ], [ -122.149558, 37.746524 ], [ -122.151403, 37.750256 ], [ -122.151618, 37.750799 ], [ -122.151704, 37.751240 ], [ -122.151661, 37.752428 ], [ -122.151361, 37.753378 ], [ -122.151189, 37.753649 ], [ -122.151060, 37.753548 ], [ -122.150459, 37.753344 ], [ -122.150159, 37.753344 ], [ -122.149343, 37.753514 ], [ -122.149215, 37.753615 ], [ -122.149043, 37.754023 ], [ -122.148914, 37.754158 ], [ -122.148485, 37.754192 ], [ -122.148228, 37.754294 ], [ -122.146039, 37.755414 ], [ -122.145653, 37.755685 ], [ -122.145481, 37.755991 ], [ -122.145267, 37.756194 ], [ -122.144666, 37.756398 ], [ -122.144494, 37.756567 ], [ -122.143979, 37.756873 ], [ -122.143464, 37.757110 ], [ -122.141662, 37.757517 ], [ -122.141061, 37.757517 ], [ -122.140417, 37.757246 ], [ -122.139988, 37.757212 ], [ -122.139344, 37.757619 ], [ -122.138572, 37.757925 ], [ -122.138228, 37.757959 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "410000", "GEOID10": "06001410000", "NAME10": "4100", "NAMELSAD10": "Census Tract 4100", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6784422, "AWATER10": 139197, "INTPTLAT10": "+37.7447566", "INTPTLON10": "-122.1332163" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.138228, 37.757959 ], [ -122.137799, 37.757721 ], [ -122.137542, 37.757653 ], [ -122.136168, 37.757619 ], [ -122.135439, 37.757517 ], [ -122.134323, 37.757144 ], [ -122.133164, 37.756601 ], [ -122.131834, 37.756533 ], [ -122.129517, 37.756058 ], [ -122.129345, 37.755991 ], [ -122.128572, 37.755380 ], [ -122.128057, 37.755142 ], [ -122.127113, 37.754192 ], [ -122.126298, 37.752937 ], [ -122.125869, 37.752530 ], [ -122.125053, 37.751919 ], [ -122.124624, 37.751614 ], [ -122.124023, 37.751308 ], [ -122.124152, 37.751206 ], [ -122.123466, 37.750188 ], [ -122.122951, 37.749204 ], [ -122.122307, 37.748763 ], [ -122.121534, 37.747711 ], [ -122.120805, 37.746422 ], [ -122.120633, 37.745981 ], [ -122.113123, 37.749917 ], [ -122.113080, 37.749611 ], [ -122.112823, 37.748967 ], [ -122.112479, 37.748526 ], [ -122.112007, 37.748118 ], [ -122.111664, 37.747575 ], [ -122.111664, 37.747033 ], [ -122.111835, 37.746693 ], [ -122.112050, 37.746524 ], [ -122.112179, 37.746286 ], [ -122.112265, 37.745913 ], [ -122.112265, 37.744861 ], [ -122.112436, 37.743843 ], [ -122.112479, 37.743707 ], [ -122.113209, 37.742960 ], [ -122.113423, 37.742180 ], [ -122.113724, 37.741705 ], [ -122.113895, 37.741230 ], [ -122.114582, 37.740754 ], [ -122.114668, 37.740347 ], [ -122.115569, 37.739227 ], [ -122.115355, 37.736716 ], [ -122.115612, 37.735901 ], [ -122.116513, 37.734340 ], [ -122.117972, 37.732575 ], [ -122.119818, 37.731625 ], [ -122.120976, 37.730878 ], [ -122.122307, 37.729860 ], [ -122.124023, 37.729011 ], [ -122.124410, 37.729011 ], [ -122.125483, 37.729385 ], [ -122.126083, 37.729419 ], [ -122.126641, 37.729520 ], [ -122.127371, 37.729690 ], [ -122.127414, 37.729758 ], [ -122.130589, 37.730098 ], [ -122.130976, 37.730369 ], [ -122.131319, 37.730742 ], [ -122.131791, 37.731421 ], [ -122.131577, 37.731523 ], [ -122.131491, 37.731489 ], [ -122.131276, 37.731727 ], [ -122.131019, 37.731862 ], [ -122.130761, 37.732168 ], [ -122.130761, 37.732270 ], [ -122.130289, 37.732779 ], [ -122.130461, 37.732813 ], [ -122.130375, 37.733627 ], [ -122.130632, 37.733797 ], [ -122.131190, 37.733593 ], [ -122.131619, 37.733661 ], [ -122.132735, 37.734001 ], [ -122.134538, 37.734238 ], [ -122.134838, 37.734103 ], [ -122.135224, 37.733729 ], [ -122.136083, 37.732507 ], [ -122.136726, 37.731761 ], [ -122.136898, 37.731659 ], [ -122.137413, 37.731523 ], [ -122.137971, 37.731082 ], [ -122.138357, 37.730946 ], [ -122.138572, 37.731421 ], [ -122.138529, 37.731489 ], [ -122.138228, 37.731625 ], [ -122.138443, 37.731998 ], [ -122.138486, 37.731964 ], [ -122.138700, 37.732406 ], [ -122.138872, 37.732881 ], [ -122.138872, 37.733322 ], [ -122.139215, 37.733831 ], [ -122.139301, 37.734680 ], [ -122.139645, 37.734510 ], [ -122.140203, 37.734442 ], [ -122.140675, 37.736071 ], [ -122.141061, 37.736750 ], [ -122.141533, 37.737327 ], [ -122.141833, 37.737598 ], [ -122.142177, 37.737802 ], [ -122.142348, 37.737836 ], [ -122.142649, 37.738243 ], [ -122.147069, 37.743096 ], [ -122.149472, 37.744623 ], [ -122.148657, 37.745132 ], [ -122.148914, 37.745438 ], [ -122.149558, 37.746524 ], [ -122.151403, 37.750324 ], [ -122.151618, 37.750799 ], [ -122.151704, 37.751240 ], [ -122.151661, 37.752428 ], [ -122.151361, 37.753378 ], [ -122.151189, 37.753649 ], [ -122.151060, 37.753548 ], [ -122.150459, 37.753344 ], [ -122.150159, 37.753344 ], [ -122.149343, 37.753514 ], [ -122.149215, 37.753615 ], [ -122.149043, 37.754023 ], [ -122.148914, 37.754158 ], [ -122.148485, 37.754192 ], [ -122.148228, 37.754294 ], [ -122.146039, 37.755414 ], [ -122.145653, 37.755685 ], [ -122.145481, 37.755991 ], [ -122.145267, 37.756194 ], [ -122.144666, 37.756398 ], [ -122.144494, 37.756567 ], [ -122.143979, 37.756873 ], [ -122.143464, 37.757110 ], [ -122.141662, 37.757517 ], [ -122.141061, 37.757517 ], [ -122.140417, 37.757246 ], [ -122.139988, 37.757212 ], [ -122.139344, 37.757619 ], [ -122.138572, 37.757925 ], [ -122.138228, 37.757959 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.157412, 37.817955 ], [ -122.156854, 37.817683 ], [ -122.156510, 37.817412 ], [ -122.156081, 37.816836 ], [ -122.155738, 37.816531 ], [ -122.155523, 37.816429 ], [ -122.154665, 37.816226 ], [ -122.154365, 37.816090 ], [ -122.153764, 37.815717 ], [ -122.153034, 37.815073 ], [ -122.148829, 37.813751 ], [ -122.145953, 37.810733 ], [ -122.144279, 37.807682 ], [ -122.140546, 37.804596 ], [ -122.138786, 37.804359 ], [ -122.134924, 37.804223 ], [ -122.132993, 37.804020 ], [ -122.113595, 37.802731 ], [ -122.094412, 37.801273 ], [ -122.071967, 37.799917 ], [ -122.045488, 37.798120 ], [ -122.037978, 37.793033 ], [ -122.036090, 37.791642 ], [ -122.030468, 37.787742 ], [ -122.021971, 37.784215 ], [ -122.017765, 37.781230 ], [ -122.014074, 37.780213 ], [ -122.004676, 37.770443 ], [ -122.004247, 37.770070 ], [ -122.006607, 37.768578 ], [ -122.006950, 37.768306 ], [ -122.007294, 37.768170 ], [ -122.008667, 37.767899 ], [ -122.010126, 37.767458 ], [ -122.011285, 37.767187 ], [ -122.012014, 37.767051 ], [ -122.013345, 37.767017 ], [ -122.013774, 37.766915 ], [ -122.014589, 37.766610 ], [ -122.016091, 37.766474 ], [ -122.017078, 37.765999 ], [ -122.017894, 37.765355 ], [ -122.018237, 37.765151 ], [ -122.018623, 37.765015 ], [ -122.020040, 37.764710 ], [ -122.021155, 37.764032 ], [ -122.022357, 37.763523 ], [ -122.023344, 37.763251 ], [ -122.023773, 37.762980 ], [ -122.024503, 37.762267 ], [ -122.025661, 37.761725 ], [ -122.027078, 37.760775 ], [ -122.027464, 37.760401 ], [ -122.028580, 37.758841 ], [ -122.029481, 37.755414 ], [ -122.029781, 37.753921 ], [ -122.029738, 37.753514 ], [ -122.029309, 37.752496 ], [ -122.029352, 37.752021 ], [ -122.029610, 37.751546 ], [ -122.030897, 37.750154 ], [ -122.031155, 37.749713 ], [ -122.031283, 37.749204 ], [ -122.031369, 37.748051 ], [ -122.031283, 37.745200 ], [ -122.031670, 37.743096 ], [ -122.031841, 37.740449 ], [ -122.032571, 37.735867 ], [ -122.032571, 37.735256 ], [ -122.032399, 37.734069 ], [ -122.032442, 37.733492 ], [ -122.032700, 37.732779 ], [ -122.032957, 37.732372 ], [ -122.033772, 37.731455 ], [ -122.033901, 37.731184 ], [ -122.034030, 37.730776 ], [ -122.034030, 37.730505 ], [ -122.033772, 37.729792 ], [ -122.033772, 37.729453 ], [ -122.033901, 37.729113 ], [ -122.036862, 37.723512 ], [ -122.037206, 37.722698 ], [ -122.037764, 37.720797 ], [ -122.038279, 37.719778 ], [ -122.038279, 37.719303 ], [ -122.038021, 37.718590 ], [ -122.037935, 37.718183 ], [ -122.038064, 37.717640 ], [ -122.038493, 37.716995 ], [ -122.038579, 37.717198 ], [ -122.039008, 37.716893 ], [ -122.039609, 37.715875 ], [ -122.054114, 37.715875 ], [ -122.054200, 37.716757 ], [ -122.054501, 37.717368 ], [ -122.054458, 37.717402 ], [ -122.054543, 37.717674 ], [ -122.054415, 37.718590 ], [ -122.054372, 37.718726 ], [ -122.054458, 37.719269 ], [ -122.054200, 37.719880 ], [ -122.054071, 37.720390 ], [ -122.054071, 37.720559 ], [ -122.054329, 37.721034 ], [ -122.054286, 37.721340 ], [ -122.052999, 37.722358 ], [ -122.052140, 37.723682 ], [ -122.052183, 37.724022 ], [ -122.052312, 37.724191 ], [ -122.052398, 37.724870 ], [ -122.052355, 37.725990 ], [ -122.052526, 37.726534 ], [ -122.052655, 37.726703 ], [ -122.052698, 37.727043 ], [ -122.052698, 37.727246 ], [ -122.052441, 37.727993 ], [ -122.052569, 37.728842 ], [ -122.052441, 37.729317 ], [ -122.051582, 37.730064 ], [ -122.051497, 37.730301 ], [ -122.051497, 37.730844 ], [ -122.051411, 37.731082 ], [ -122.051282, 37.731218 ], [ -122.051239, 37.731489 ], [ -122.051325, 37.731659 ], [ -122.051840, 37.732134 ], [ -122.052011, 37.732507 ], [ -122.052011, 37.733050 ], [ -122.051926, 37.733492 ], [ -122.052140, 37.733627 ], [ -122.052312, 37.733831 ], [ -122.052269, 37.734476 ], [ -122.052355, 37.734544 ], [ -122.052655, 37.734544 ], [ -122.052741, 37.734680 ], [ -122.052741, 37.735223 ], [ -122.052827, 37.735494 ], [ -122.053084, 37.735766 ], [ -122.053385, 37.735867 ], [ -122.053428, 37.735935 ], [ -122.053256, 37.736376 ], [ -122.053471, 37.736682 ], [ -122.053514, 37.736919 ], [ -122.053986, 37.737463 ], [ -122.053943, 37.737734 ], [ -122.053642, 37.738175 ], [ -122.053685, 37.738311 ], [ -122.053943, 37.738515 ], [ -122.053900, 37.739058 ], [ -122.054029, 37.739193 ], [ -122.053986, 37.739567 ], [ -122.054071, 37.739804 ], [ -122.053943, 37.740042 ], [ -122.054329, 37.740042 ], [ -122.054458, 37.740144 ], [ -122.054415, 37.740449 ], [ -122.054543, 37.740653 ], [ -122.054543, 37.740822 ], [ -122.054415, 37.741162 ], [ -122.054415, 37.741501 ], [ -122.054672, 37.742112 ], [ -122.055230, 37.742417 ], [ -122.055659, 37.742892 ], [ -122.055788, 37.743198 ], [ -122.055831, 37.744725 ], [ -122.056003, 37.745641 ], [ -122.056217, 37.746015 ], [ -122.056518, 37.746795 ], [ -122.057033, 37.747474 ], [ -122.056947, 37.747677 ], [ -122.056646, 37.747949 ], [ -122.056689, 37.748220 ], [ -122.057462, 37.748763 ], [ -122.057719, 37.749136 ], [ -122.057762, 37.749340 ], [ -122.058148, 37.749611 ], [ -122.058234, 37.749747 ], [ -122.058363, 37.750053 ], [ -122.058363, 37.750426 ], [ -122.057891, 37.750799 ], [ -122.057805, 37.751003 ], [ -122.057891, 37.751071 ], [ -122.058191, 37.751138 ], [ -122.058191, 37.751512 ], [ -122.058535, 37.751410 ], [ -122.058663, 37.751444 ], [ -122.058706, 37.751512 ], [ -122.058449, 37.751987 ], [ -122.058492, 37.752122 ], [ -122.058749, 37.752224 ], [ -122.058964, 37.752394 ], [ -122.059221, 37.752699 ], [ -122.062225, 37.748424 ], [ -122.062140, 37.746965 ], [ -122.061496, 37.743673 ], [ -122.059994, 37.739261 ], [ -122.059951, 37.738786 ], [ -122.061625, 37.729826 ], [ -122.062440, 37.727688 ], [ -122.065573, 37.720186 ], [ -122.068105, 37.720593 ], [ -122.075272, 37.720729 ], [ -122.075958, 37.721408 ], [ -122.077374, 37.722358 ], [ -122.078662, 37.723377 ], [ -122.079434, 37.724259 ], [ -122.079735, 37.724701 ], [ -122.079821, 37.725006 ], [ -122.079821, 37.725345 ], [ -122.079649, 37.727348 ], [ -122.080293, 37.729419 ], [ -122.081022, 37.732915 ], [ -122.081022, 37.733593 ], [ -122.080894, 37.733797 ], [ -122.079692, 37.735053 ], [ -122.078533, 37.735698 ], [ -122.077031, 37.736105 ], [ -122.076774, 37.736241 ], [ -122.075787, 37.737225 ], [ -122.075572, 37.737632 ], [ -122.075529, 37.737938 ], [ -122.095699, 37.728536 ], [ -122.095485, 37.728740 ], [ -122.096000, 37.728672 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.727993 ], [ -122.094584, 37.728129 ], [ -122.097802, 37.726737 ], [ -122.100935, 37.727823 ], [ -122.107329, 37.721476 ], [ -122.117243, 37.726873 ], [ -122.118101, 37.727688 ], [ -122.119818, 37.731625 ], [ -122.117972, 37.732575 ], [ -122.116513, 37.734340 ], [ -122.115612, 37.735901 ], [ -122.115355, 37.736716 ], [ -122.115569, 37.739227 ], [ -122.114668, 37.740347 ], [ -122.114582, 37.740754 ], [ -122.113895, 37.741230 ], [ -122.113724, 37.741705 ], [ -122.113423, 37.742180 ], [ -122.113209, 37.742960 ], [ -122.112479, 37.743707 ], [ -122.112265, 37.744861 ], [ -122.112308, 37.745675 ], [ -122.112222, 37.746116 ], [ -122.112050, 37.746524 ], [ -122.111835, 37.746693 ], [ -122.111664, 37.747033 ], [ -122.111664, 37.747575 ], [ -122.112007, 37.748118 ], [ -122.112479, 37.748526 ], [ -122.112823, 37.748967 ], [ -122.113080, 37.749611 ], [ -122.113123, 37.749917 ], [ -122.115955, 37.748424 ], [ -122.116127, 37.749883 ], [ -122.118444, 37.754158 ], [ -122.118530, 37.754532 ], [ -122.122307, 37.760537 ], [ -122.126212, 37.767594 ], [ -122.130375, 37.772139 ], [ -122.132821, 37.775667 ], [ -122.134280, 37.777126 ], [ -122.133679, 37.777533 ], [ -122.134366, 37.778313 ], [ -122.135096, 37.778042 ], [ -122.144065, 37.787674 ], [ -122.142220, 37.790116 ], [ -122.143378, 37.790930 ], [ -122.144065, 37.790388 ], [ -122.145524, 37.791608 ], [ -122.146254, 37.792355 ], [ -122.151189, 37.792422 ], [ -122.151489, 37.796390 ], [ -122.156854, 37.796458 ], [ -122.156854, 37.796865 ], [ -122.157884, 37.797374 ], [ -122.158570, 37.796967 ], [ -122.159257, 37.797441 ], [ -122.158570, 37.798154 ], [ -122.160072, 37.799747 ], [ -122.161875, 37.799951 ], [ -122.162218, 37.800731 ], [ -122.161875, 37.800934 ], [ -122.161918, 37.801341 ], [ -122.164278, 37.803240 ], [ -122.164750, 37.804393 ], [ -122.164493, 37.804427 ], [ -122.164793, 37.805105 ], [ -122.166939, 37.805647 ], [ -122.167969, 37.805410 ], [ -122.170587, 37.804732 ], [ -122.170200, 37.802324 ], [ -122.169385, 37.801070 ], [ -122.168612, 37.801172 ], [ -122.168484, 37.800663 ], [ -122.168698, 37.800358 ], [ -122.168698, 37.799035 ], [ -122.170801, 37.799679 ], [ -122.171402, 37.800052 ], [ -122.171402, 37.815276 ], [ -122.167969, 37.813852 ], [ -122.166853, 37.813412 ], [ -122.166681, 37.813615 ], [ -122.157412, 37.817955 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430102", "GEOID10": "06001430102", "NAME10": "4301.02", "NAMELSAD10": "Census Tract 4301.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 76698501, "AWATER10": 3764999, "INTPTLAT10": "+37.7726562", "INTPTLON10": "-122.0747102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.157412, 37.817955 ], [ -122.156854, 37.817683 ], [ -122.156510, 37.817412 ], [ -122.156081, 37.816836 ], [ -122.155738, 37.816531 ], [ -122.155523, 37.816429 ], [ -122.154665, 37.816226 ], [ -122.154365, 37.816090 ], [ -122.153764, 37.815717 ], [ -122.153034, 37.815073 ], [ -122.148829, 37.813751 ], [ -122.145953, 37.810733 ], [ -122.144279, 37.807682 ], [ -122.140546, 37.804596 ], [ -122.138786, 37.804359 ], [ -122.134924, 37.804223 ], [ -122.132993, 37.804020 ], [ -122.113595, 37.802731 ], [ -122.094412, 37.801273 ], [ -122.071967, 37.799917 ], [ -122.045488, 37.798120 ], [ -122.037978, 37.793033 ], [ -122.036090, 37.791642 ], [ -122.030468, 37.787742 ], [ -122.021971, 37.784215 ], [ -122.017765, 37.781230 ], [ -122.014074, 37.780213 ], [ -122.004676, 37.770443 ], [ -122.004247, 37.770070 ], [ -122.006607, 37.768578 ], [ -122.006950, 37.768306 ], [ -122.007294, 37.768170 ], [ -122.008667, 37.767899 ], [ -122.010126, 37.767458 ], [ -122.011285, 37.767187 ], [ -122.012014, 37.767051 ], [ -122.013345, 37.767017 ], [ -122.013774, 37.766915 ], [ -122.014589, 37.766610 ], [ -122.016091, 37.766474 ], [ -122.017078, 37.765999 ], [ -122.017894, 37.765355 ], [ -122.018237, 37.765151 ], [ -122.018623, 37.765015 ], [ -122.020040, 37.764710 ], [ -122.021155, 37.764032 ], [ -122.022357, 37.763523 ], [ -122.023344, 37.763251 ], [ -122.023773, 37.762980 ], [ -122.024503, 37.762267 ], [ -122.025661, 37.761725 ], [ -122.027078, 37.760775 ], [ -122.027464, 37.760401 ], [ -122.028580, 37.758841 ], [ -122.029481, 37.755414 ], [ -122.029781, 37.753921 ], [ -122.029738, 37.753514 ], [ -122.029309, 37.752496 ], [ -122.029352, 37.752021 ], [ -122.029610, 37.751546 ], [ -122.030897, 37.750154 ], [ -122.031155, 37.749713 ], [ -122.031283, 37.749204 ], [ -122.031369, 37.748051 ], [ -122.031283, 37.745200 ], [ -122.031670, 37.743096 ], [ -122.031841, 37.740449 ], [ -122.032571, 37.735867 ], [ -122.032571, 37.735256 ], [ -122.032399, 37.734069 ], [ -122.032442, 37.733492 ], [ -122.032700, 37.732779 ], [ -122.032957, 37.732372 ], [ -122.033772, 37.731455 ], [ -122.033901, 37.731184 ], [ -122.034030, 37.730776 ], [ -122.034030, 37.730505 ], [ -122.033772, 37.729792 ], [ -122.033772, 37.729453 ], [ -122.033901, 37.729113 ], [ -122.036862, 37.723512 ], [ -122.037206, 37.722698 ], [ -122.037764, 37.720797 ], [ -122.038279, 37.719778 ], [ -122.038279, 37.719303 ], [ -122.037935, 37.718353 ], [ -122.037935, 37.718149 ], [ -122.038064, 37.717640 ], [ -122.038493, 37.716995 ], [ -122.038579, 37.717198 ], [ -122.039008, 37.716893 ], [ -122.039609, 37.715875 ], [ -122.054114, 37.715875 ], [ -122.054200, 37.716757 ], [ -122.054501, 37.717368 ], [ -122.054458, 37.717402 ], [ -122.054543, 37.717674 ], [ -122.054415, 37.718590 ], [ -122.054372, 37.718726 ], [ -122.054458, 37.719269 ], [ -122.054200, 37.719880 ], [ -122.054071, 37.720390 ], [ -122.054071, 37.720559 ], [ -122.054329, 37.721034 ], [ -122.054286, 37.721340 ], [ -122.052999, 37.722358 ], [ -122.052140, 37.723682 ], [ -122.052183, 37.724022 ], [ -122.052312, 37.724191 ], [ -122.052398, 37.724870 ], [ -122.052355, 37.725990 ], [ -122.052526, 37.726534 ], [ -122.052655, 37.726703 ], [ -122.052698, 37.727043 ], [ -122.052698, 37.727246 ], [ -122.052441, 37.727993 ], [ -122.052569, 37.728842 ], [ -122.052441, 37.729317 ], [ -122.051582, 37.730064 ], [ -122.051497, 37.730301 ], [ -122.051497, 37.730844 ], [ -122.051411, 37.731082 ], [ -122.051282, 37.731218 ], [ -122.051239, 37.731489 ], [ -122.051325, 37.731659 ], [ -122.051840, 37.732134 ], [ -122.052011, 37.732507 ], [ -122.052011, 37.733050 ], [ -122.051926, 37.733492 ], [ -122.052140, 37.733627 ], [ -122.052312, 37.733831 ], [ -122.052269, 37.734476 ], [ -122.052355, 37.734544 ], [ -122.052655, 37.734544 ], [ -122.052741, 37.734680 ], [ -122.052741, 37.735223 ], [ -122.052827, 37.735494 ], [ -122.053084, 37.735766 ], [ -122.053385, 37.735867 ], [ -122.053428, 37.735935 ], [ -122.053256, 37.736376 ], [ -122.053471, 37.736682 ], [ -122.053514, 37.736919 ], [ -122.053986, 37.737463 ], [ -122.053943, 37.737734 ], [ -122.053642, 37.738175 ], [ -122.053685, 37.738311 ], [ -122.053943, 37.738515 ], [ -122.053900, 37.739058 ], [ -122.054029, 37.739193 ], [ -122.053986, 37.739567 ], [ -122.054071, 37.739804 ], [ -122.053943, 37.740042 ], [ -122.054329, 37.740042 ], [ -122.054458, 37.740144 ], [ -122.054415, 37.740449 ], [ -122.054543, 37.740653 ], [ -122.054543, 37.740822 ], [ -122.054415, 37.741162 ], [ -122.054415, 37.741501 ], [ -122.054672, 37.742112 ], [ -122.055230, 37.742417 ], [ -122.055659, 37.742892 ], [ -122.055788, 37.743198 ], [ -122.055831, 37.744725 ], [ -122.056003, 37.745641 ], [ -122.056217, 37.746015 ], [ -122.056518, 37.746795 ], [ -122.057033, 37.747474 ], [ -122.056947, 37.747677 ], [ -122.056646, 37.747949 ], [ -122.056689, 37.748220 ], [ -122.057462, 37.748763 ], [ -122.057719, 37.749136 ], [ -122.057762, 37.749340 ], [ -122.058148, 37.749611 ], [ -122.058234, 37.749747 ], [ -122.058363, 37.750053 ], [ -122.058363, 37.750426 ], [ -122.057891, 37.750799 ], [ -122.057805, 37.751003 ], [ -122.057891, 37.751071 ], [ -122.058191, 37.751138 ], [ -122.058191, 37.751512 ], [ -122.058535, 37.751410 ], [ -122.058663, 37.751444 ], [ -122.058706, 37.751512 ], [ -122.058449, 37.751987 ], [ -122.058492, 37.752122 ], [ -122.058749, 37.752224 ], [ -122.058964, 37.752394 ], [ -122.059221, 37.752699 ], [ -122.062225, 37.748424 ], [ -122.062140, 37.746965 ], [ -122.061496, 37.743673 ], [ -122.059994, 37.739261 ], [ -122.059951, 37.738786 ], [ -122.061625, 37.729826 ], [ -122.062440, 37.727688 ], [ -122.065573, 37.720186 ], [ -122.068105, 37.720593 ], [ -122.075272, 37.720729 ], [ -122.075958, 37.721408 ], [ -122.077374, 37.722358 ], [ -122.078662, 37.723377 ], [ -122.079434, 37.724259 ], [ -122.079735, 37.724701 ], [ -122.079821, 37.725006 ], [ -122.079821, 37.725345 ], [ -122.079649, 37.727348 ], [ -122.080293, 37.729419 ], [ -122.081022, 37.732915 ], [ -122.081022, 37.733593 ], [ -122.080894, 37.733797 ], [ -122.079692, 37.735053 ], [ -122.078533, 37.735698 ], [ -122.078276, 37.735800 ], [ -122.077074, 37.736071 ], [ -122.076774, 37.736241 ], [ -122.075787, 37.737225 ], [ -122.075572, 37.737632 ], [ -122.075529, 37.737938 ], [ -122.095699, 37.728536 ], [ -122.095485, 37.728740 ], [ -122.096000, 37.728672 ], [ -122.096386, 37.728434 ], [ -122.095957, 37.727993 ], [ -122.094584, 37.728129 ], [ -122.097802, 37.726737 ], [ -122.100935, 37.727823 ], [ -122.107329, 37.721476 ], [ -122.117243, 37.726873 ], [ -122.118101, 37.727688 ], [ -122.119818, 37.731625 ], [ -122.117972, 37.732575 ], [ -122.116513, 37.734340 ], [ -122.115612, 37.735901 ], [ -122.115355, 37.736716 ], [ -122.115569, 37.739227 ], [ -122.114668, 37.740347 ], [ -122.114582, 37.740754 ], [ -122.113895, 37.741230 ], [ -122.113724, 37.741705 ], [ -122.113423, 37.742180 ], [ -122.113209, 37.742960 ], [ -122.112479, 37.743707 ], [ -122.112265, 37.744861 ], [ -122.112308, 37.745675 ], [ -122.112222, 37.746116 ], [ -122.112050, 37.746524 ], [ -122.111835, 37.746693 ], [ -122.111664, 37.747033 ], [ -122.111664, 37.747575 ], [ -122.112007, 37.748118 ], [ -122.112479, 37.748526 ], [ -122.112823, 37.748967 ], [ -122.113080, 37.749611 ], [ -122.113123, 37.749917 ], [ -122.115955, 37.748424 ], [ -122.116127, 37.749883 ], [ -122.118444, 37.754158 ], [ -122.118530, 37.754532 ], [ -122.122307, 37.760537 ], [ -122.126212, 37.767594 ], [ -122.130375, 37.772139 ], [ -122.132821, 37.775667 ], [ -122.134280, 37.777126 ], [ -122.133679, 37.777533 ], [ -122.134366, 37.778313 ], [ -122.135096, 37.778042 ], [ -122.144065, 37.787674 ], [ -122.142220, 37.790116 ], [ -122.143378, 37.790930 ], [ -122.144065, 37.790388 ], [ -122.145524, 37.791608 ], [ -122.146254, 37.792355 ], [ -122.151189, 37.792422 ], [ -122.151489, 37.796390 ], [ -122.156854, 37.796458 ], [ -122.156854, 37.796865 ], [ -122.157884, 37.797374 ], [ -122.158570, 37.796967 ], [ -122.159257, 37.797441 ], [ -122.158570, 37.798154 ], [ -122.160072, 37.799747 ], [ -122.161875, 37.799951 ], [ -122.162218, 37.800731 ], [ -122.161875, 37.800934 ], [ -122.161918, 37.801341 ], [ -122.164278, 37.803240 ], [ -122.164750, 37.804393 ], [ -122.164493, 37.804427 ], [ -122.164793, 37.805105 ], [ -122.166939, 37.805647 ], [ -122.167969, 37.805410 ], [ -122.170587, 37.804732 ], [ -122.170200, 37.802324 ], [ -122.169385, 37.801070 ], [ -122.168612, 37.801172 ], [ -122.168484, 37.800663 ], [ -122.168698, 37.800358 ], [ -122.168698, 37.799035 ], [ -122.170801, 37.799679 ], [ -122.171402, 37.800052 ], [ -122.171402, 37.815276 ], [ -122.167969, 37.813852 ], [ -122.166853, 37.813412 ], [ -122.166681, 37.813615 ], [ -122.157412, 37.817955 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "432501", "GEOID10": "06001432501", "NAME10": "4325.01", "NAMELSAD10": "Census Tract 4325.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1363772, "AWATER10": 0, "INTPTLAT10": "+37.7167153", "INTPTLON10": "-122.1661575" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.164235, 37.722664 ], [ -122.159600, 37.718590 ], [ -122.158227, 37.717402 ], [ -122.156510, 37.715875 ], [ -122.171402, 37.715875 ], [ -122.171402, 37.720797 ], [ -122.167969, 37.721646 ], [ -122.165694, 37.722189 ], [ -122.164235, 37.722664 ] ] ] } } , @@ -3386,11 +3386,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430500", "GEOID10": "06001430500", "NAME10": "4305", "NAMELSAD10": "Census Tract 4305", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2610283, "AWATER10": 0, "INTPTLAT10": "+37.7049110", "INTPTLON10": "-122.1091519" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.119431, 37.717810 ], [ -122.118788, 37.717640 ], [ -122.118230, 37.717402 ], [ -122.117758, 37.717097 ], [ -122.117286, 37.716655 ], [ -122.116857, 37.715875 ], [ -122.121749, 37.715875 ], [ -122.121749, 37.716553 ], [ -122.121577, 37.716927 ], [ -122.121277, 37.717300 ], [ -122.120676, 37.717674 ], [ -122.120118, 37.717810 ], [ -122.119431, 37.717810 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430300", "GEOID10": "06001430300", "NAME10": "4303", "NAMELSAD10": "Census Tract 4303", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2964586, "AWATER10": 233357, "INTPTLAT10": "+37.7229094", "INTPTLON10": "-122.0837445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.075529, 37.737938 ], [ -122.075572, 37.737632 ], [ -122.075787, 37.737225 ], [ -122.076774, 37.736241 ], [ -122.077031, 37.736105 ], [ -122.078533, 37.735698 ], [ -122.079692, 37.735053 ], [ -122.080894, 37.733797 ], [ -122.081065, 37.733458 ], [ -122.081065, 37.733186 ], [ -122.080293, 37.729419 ], [ -122.079649, 37.727348 ], [ -122.079821, 37.725345 ], [ -122.079821, 37.725006 ], [ -122.079735, 37.724701 ], [ -122.079434, 37.724259 ], [ -122.078662, 37.723377 ], [ -122.077374, 37.722358 ], [ -122.075701, 37.721204 ], [ -122.075272, 37.720729 ], [ -122.073984, 37.719032 ], [ -122.073770, 37.718726 ], [ -122.073770, 37.718590 ], [ -122.073812, 37.718081 ], [ -122.073727, 37.717843 ], [ -122.073770, 37.715875 ], [ -122.089520, 37.715875 ], [ -122.089434, 37.716248 ], [ -122.088790, 37.717266 ], [ -122.088790, 37.717742 ], [ -122.089005, 37.718590 ], [ -122.089047, 37.720322 ], [ -122.089562, 37.721476 ], [ -122.089477, 37.721849 ], [ -122.090249, 37.721374 ], [ -122.091064, 37.722664 ], [ -122.092309, 37.723377 ], [ -122.093511, 37.725176 ], [ -122.093983, 37.727212 ], [ -122.094584, 37.728129 ], [ -122.095957, 37.727993 ], [ -122.096386, 37.728434 ], [ -122.096000, 37.728672 ], [ -122.095485, 37.728740 ], [ -122.095699, 37.728536 ], [ -122.075529, 37.737938 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430300", "GEOID10": "06001430300", "NAME10": "4303", "NAMELSAD10": "Census Tract 4303", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2964586, "AWATER10": 233357, "INTPTLAT10": "+37.7229094", "INTPTLON10": "-122.0837445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.075529, 37.737938 ], [ -122.075572, 37.737632 ], [ -122.075787, 37.737225 ], [ -122.076774, 37.736241 ], [ -122.077074, 37.736071 ], [ -122.078276, 37.735800 ], [ -122.078533, 37.735698 ], [ -122.079692, 37.735053 ], [ -122.080894, 37.733797 ], [ -122.081065, 37.733458 ], [ -122.081065, 37.733186 ], [ -122.080293, 37.729419 ], [ -122.079649, 37.727348 ], [ -122.079821, 37.725345 ], [ -122.079821, 37.725006 ], [ -122.079735, 37.724701 ], [ -122.079434, 37.724259 ], [ -122.078662, 37.723377 ], [ -122.077374, 37.722358 ], [ -122.075701, 37.721204 ], [ -122.075272, 37.720729 ], [ -122.073984, 37.719032 ], [ -122.073770, 37.718726 ], [ -122.073770, 37.718590 ], [ -122.073812, 37.718081 ], [ -122.073727, 37.717843 ], [ -122.073770, 37.715875 ], [ -122.089520, 37.715875 ], [ -122.089434, 37.716248 ], [ -122.088790, 37.717266 ], [ -122.088790, 37.717742 ], [ -122.089005, 37.718590 ], [ -122.089047, 37.720322 ], [ -122.089562, 37.721476 ], [ -122.089477, 37.721849 ], [ -122.090249, 37.721374 ], [ -122.091064, 37.722664 ], [ -122.092309, 37.723377 ], [ -122.093511, 37.725176 ], [ -122.093983, 37.727212 ], [ -122.094584, 37.728129 ], [ -122.095957, 37.727993 ], [ -122.096386, 37.728434 ], [ -122.096000, 37.728672 ], [ -122.095485, 37.728740 ], [ -122.095699, 37.728536 ], [ -122.075529, 37.737938 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430200", "GEOID10": "06001430200", "NAME10": "4302", "NAMELSAD10": "Census Tract 4302", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5329284, "AWATER10": 0, "INTPTLAT10": "+37.7216743", "INTPTLON10": "-122.0615667" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.059221, 37.752699 ], [ -122.058964, 37.752394 ], [ -122.058749, 37.752224 ], [ -122.058492, 37.752122 ], [ -122.058449, 37.751987 ], [ -122.058706, 37.751512 ], [ -122.058663, 37.751444 ], [ -122.058535, 37.751410 ], [ -122.058191, 37.751512 ], [ -122.058191, 37.751138 ], [ -122.057891, 37.751071 ], [ -122.057805, 37.751003 ], [ -122.057891, 37.750799 ], [ -122.058363, 37.750426 ], [ -122.058363, 37.750053 ], [ -122.058234, 37.749747 ], [ -122.058148, 37.749611 ], [ -122.057762, 37.749340 ], [ -122.057719, 37.749136 ], [ -122.057462, 37.748763 ], [ -122.056689, 37.748220 ], [ -122.056646, 37.747949 ], [ -122.056947, 37.747677 ], [ -122.057033, 37.747474 ], [ -122.056518, 37.746795 ], [ -122.056217, 37.746015 ], [ -122.056003, 37.745641 ], [ -122.055831, 37.744725 ], [ -122.055788, 37.743198 ], [ -122.055659, 37.742892 ], [ -122.055230, 37.742417 ], [ -122.054672, 37.742112 ], [ -122.054415, 37.741501 ], [ -122.054415, 37.741162 ], [ -122.054543, 37.740822 ], [ -122.054543, 37.740653 ], [ -122.054415, 37.740449 ], [ -122.054458, 37.740144 ], [ -122.054329, 37.740042 ], [ -122.053943, 37.740042 ], [ -122.054071, 37.739804 ], [ -122.053986, 37.739567 ], [ -122.054029, 37.739193 ], [ -122.053900, 37.739058 ], [ -122.053943, 37.738515 ], [ -122.053685, 37.738311 ], [ -122.053642, 37.738175 ], [ -122.053943, 37.737734 ], [ -122.053986, 37.737463 ], [ -122.053514, 37.736919 ], [ -122.053471, 37.736682 ], [ -122.053256, 37.736376 ], [ -122.053428, 37.735935 ], [ -122.053385, 37.735867 ], [ -122.053084, 37.735766 ], [ -122.052827, 37.735494 ], [ -122.052741, 37.735223 ], [ -122.052741, 37.734680 ], [ -122.052655, 37.734544 ], [ -122.052355, 37.734544 ], [ -122.052269, 37.734476 ], [ -122.052312, 37.733831 ], [ -122.052140, 37.733627 ], [ -122.051926, 37.733492 ], [ -122.052011, 37.733050 ], [ -122.052011, 37.732507 ], [ -122.051840, 37.732134 ], [ -122.051325, 37.731659 ], [ -122.051239, 37.731489 ], [ -122.051282, 37.731218 ], [ -122.051411, 37.731082 ], [ -122.051497, 37.730844 ], [ -122.051497, 37.730301 ], [ -122.051582, 37.730064 ], [ -122.052441, 37.729317 ], [ -122.052569, 37.728842 ], [ -122.052441, 37.727993 ], [ -122.052698, 37.727246 ], [ -122.052698, 37.727043 ], [ -122.052655, 37.726703 ], [ -122.052526, 37.726534 ], [ -122.052355, 37.725990 ], [ -122.052398, 37.724870 ], [ -122.052312, 37.724191 ], [ -122.052183, 37.724022 ], [ -122.052140, 37.723682 ], [ -122.052999, 37.722358 ], [ -122.054286, 37.721340 ], [ -122.054329, 37.721034 ], [ -122.054071, 37.720559 ], [ -122.054071, 37.720390 ], [ -122.054200, 37.719880 ], [ -122.054458, 37.719269 ], [ -122.054372, 37.718726 ], [ -122.054415, 37.718590 ], [ -122.054543, 37.717674 ], [ -122.054458, 37.717402 ], [ -122.054501, 37.717368 ], [ -122.054200, 37.716757 ], [ -122.054114, 37.715875 ], [ -122.073770, 37.715875 ], [ -122.073727, 37.717843 ], [ -122.073812, 37.718081 ], [ -122.073770, 37.718590 ], [ -122.073770, 37.718726 ], [ -122.075272, 37.720729 ], [ -122.068105, 37.720593 ], [ -122.065573, 37.720186 ], [ -122.065058, 37.721340 ], [ -122.062440, 37.727688 ], [ -122.061625, 37.729826 ], [ -122.059951, 37.738786 ], [ -122.059994, 37.739261 ], [ -122.061496, 37.743673 ], [ -122.062140, 37.746965 ], [ -122.062225, 37.748424 ], [ -122.059221, 37.752699 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.004247, 37.770070 ], [ -122.004032, 37.769901 ], [ -121.997766, 37.763217 ], [ -122.010770, 37.755142 ], [ -122.011371, 37.754023 ], [ -122.011757, 37.747440 ], [ -122.001071, 37.739024 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736410 ], [ -121.989956, 37.733627 ], [ -121.988754, 37.733118 ], [ -121.988754, 37.715875 ], [ -122.039609, 37.715875 ], [ -122.039008, 37.716893 ], [ -122.038579, 37.717198 ], [ -122.038493, 37.716995 ], [ -122.038064, 37.717640 ], [ -122.037935, 37.718183 ], [ -122.038021, 37.718590 ], [ -122.038279, 37.719303 ], [ -122.038279, 37.719778 ], [ -122.037764, 37.720797 ], [ -122.037206, 37.722698 ], [ -122.036862, 37.723512 ], [ -122.033901, 37.729113 ], [ -122.033772, 37.729453 ], [ -122.033772, 37.729792 ], [ -122.034030, 37.730505 ], [ -122.034030, 37.730776 ], [ -122.033901, 37.731184 ], [ -122.033772, 37.731455 ], [ -122.032957, 37.732372 ], [ -122.032700, 37.732779 ], [ -122.032442, 37.733492 ], [ -122.032399, 37.734069 ], [ -122.032571, 37.735256 ], [ -122.032571, 37.735867 ], [ -122.031841, 37.740449 ], [ -122.031670, 37.743096 ], [ -122.031283, 37.745200 ], [ -122.031369, 37.748051 ], [ -122.031283, 37.749204 ], [ -122.031155, 37.749713 ], [ -122.030897, 37.750154 ], [ -122.029610, 37.751546 ], [ -122.029352, 37.752021 ], [ -122.029309, 37.752496 ], [ -122.029738, 37.753514 ], [ -122.029781, 37.753921 ], [ -122.029481, 37.755414 ], [ -122.028580, 37.758841 ], [ -122.027464, 37.760401 ], [ -122.027078, 37.760775 ], [ -122.025661, 37.761725 ], [ -122.024503, 37.762267 ], [ -122.023602, 37.763116 ], [ -122.023344, 37.763251 ], [ -122.022357, 37.763523 ], [ -122.021155, 37.764032 ], [ -122.020040, 37.764710 ], [ -122.018623, 37.765015 ], [ -122.018237, 37.765151 ], [ -122.017894, 37.765355 ], [ -122.017078, 37.765999 ], [ -122.016091, 37.766474 ], [ -122.014589, 37.766610 ], [ -122.013774, 37.766915 ], [ -122.013345, 37.767017 ], [ -122.012014, 37.767051 ], [ -122.011285, 37.767187 ], [ -122.010126, 37.767458 ], [ -122.008667, 37.767899 ], [ -122.007294, 37.768170 ], [ -122.006950, 37.768306 ], [ -122.006607, 37.768578 ], [ -122.004247, 37.770070 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.004247, 37.770070 ], [ -122.004032, 37.769901 ], [ -121.997766, 37.763217 ], [ -122.010770, 37.755142 ], [ -122.011371, 37.754023 ], [ -122.011757, 37.747440 ], [ -122.001071, 37.739024 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736410 ], [ -121.989956, 37.733627 ], [ -121.988754, 37.733118 ], [ -121.988754, 37.715875 ], [ -122.039609, 37.715875 ], [ -122.039008, 37.716893 ], [ -122.038579, 37.717198 ], [ -122.038493, 37.716995 ], [ -122.038064, 37.717640 ], [ -122.037935, 37.718149 ], [ -122.037935, 37.718353 ], [ -122.038279, 37.719303 ], [ -122.038279, 37.719778 ], [ -122.037764, 37.720797 ], [ -122.037206, 37.722698 ], [ -122.036862, 37.723512 ], [ -122.033901, 37.729113 ], [ -122.033772, 37.729453 ], [ -122.033772, 37.729792 ], [ -122.034030, 37.730505 ], [ -122.034030, 37.730776 ], [ -122.033901, 37.731184 ], [ -122.033772, 37.731455 ], [ -122.032957, 37.732372 ], [ -122.032700, 37.732779 ], [ -122.032442, 37.733492 ], [ -122.032399, 37.734069 ], [ -122.032571, 37.735256 ], [ -122.032571, 37.735867 ], [ -122.031841, 37.740449 ], [ -122.031670, 37.743096 ], [ -122.031283, 37.745200 ], [ -122.031369, 37.748051 ], [ -122.031283, 37.749204 ], [ -122.031155, 37.749713 ], [ -122.030897, 37.750154 ], [ -122.029610, 37.751546 ], [ -122.029352, 37.752021 ], [ -122.029309, 37.752496 ], [ -122.029738, 37.753514 ], [ -122.029781, 37.753921 ], [ -122.029481, 37.755414 ], [ -122.028580, 37.758841 ], [ -122.027464, 37.760401 ], [ -122.027078, 37.760775 ], [ -122.025661, 37.761725 ], [ -122.024503, 37.762267 ], [ -122.023602, 37.763116 ], [ -122.023344, 37.763251 ], [ -122.022357, 37.763523 ], [ -122.021155, 37.764032 ], [ -122.020040, 37.764710 ], [ -122.018623, 37.765015 ], [ -122.018237, 37.765151 ], [ -122.017894, 37.765355 ], [ -122.017078, 37.765999 ], [ -122.016091, 37.766474 ], [ -122.014589, 37.766610 ], [ -122.013774, 37.766915 ], [ -122.013345, 37.767017 ], [ -122.012014, 37.767051 ], [ -122.011285, 37.767187 ], [ -122.010126, 37.767458 ], [ -122.008667, 37.767899 ], [ -122.007294, 37.768170 ], [ -122.006950, 37.768306 ], [ -122.006607, 37.768578 ], [ -122.004247, 37.770070 ] ] ] } } ] } ] } , @@ -3448,7 +3448,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443102", "GEOID10": "06001443102", "NAME10": "4431.02", "NAMELSAD10": "Census Tract 4431.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2383411, "AWATER10": 0, "INTPTLAT10": "+37.5071611", "INTPTLON10": "-121.9271478" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.938028, 37.515104 ], [ -121.937342, 37.515070 ], [ -121.936870, 37.514968 ], [ -121.936183, 37.514730 ], [ -121.934638, 37.513981 ], [ -121.934295, 37.513913 ], [ -121.933608, 37.513913 ], [ -121.926827, 37.515070 ], [ -121.925883, 37.515070 ], [ -121.924982, 37.514934 ], [ -121.923351, 37.514355 ], [ -121.923351, 37.514117 ], [ -121.921034, 37.513913 ], [ -121.919231, 37.513607 ], [ -121.919746, 37.510441 ], [ -121.919746, 37.507377 ], [ -121.919661, 37.506696 ], [ -121.919360, 37.500329 ], [ -121.919403, 37.499376 ], [ -121.919489, 37.499104 ], [ -121.920218, 37.497776 ], [ -121.920562, 37.497333 ], [ -121.923008, 37.495563 ], [ -121.926570, 37.498150 ], [ -121.930604, 37.502270 ], [ -121.932836, 37.504245 ], [ -121.933866, 37.505232 ], [ -121.934638, 37.506151 ], [ -121.935325, 37.507241 ], [ -121.937513, 37.511053 ], [ -121.939530, 37.514764 ], [ -121.938028, 37.515104 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443103", "GEOID10": "06001443103", "NAME10": "4431.03", "NAMELSAD10": "Census Tract 4431.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15518521, "AWATER10": 0, "INTPTLAT10": "+37.5273674", "INTPTLON10": "-121.9027992" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915755, 37.555397 ], [ -121.912065, 37.554751 ], [ -121.909661, 37.554240 ], [ -121.908159, 37.551757 ], [ -121.907129, 37.549341 ], [ -121.906443, 37.549375 ], [ -121.906400, 37.549137 ], [ -121.905284, 37.549171 ], [ -121.901035, 37.545904 ], [ -121.891336, 37.549749 ], [ -121.887560, 37.544033 ], [ -121.886830, 37.535662 ], [ -121.880651, 37.528277 ], [ -121.879320, 37.526337 ], [ -121.879535, 37.525690 ], [ -121.879878, 37.525248 ], [ -121.881380, 37.521504 ], [ -121.883612, 37.517215 ], [ -121.884813, 37.513743 ], [ -121.885028, 37.512041 ], [ -121.884255, 37.507956 ], [ -121.883011, 37.503292 ], [ -121.883826, 37.503257 ], [ -121.885285, 37.503598 ], [ -121.885586, 37.503802 ], [ -121.886358, 37.504755 ], [ -121.887131, 37.505845 ], [ -121.888032, 37.506356 ], [ -121.888461, 37.506662 ], [ -121.888890, 37.507070 ], [ -121.889448, 37.507377 ], [ -121.890349, 37.507649 ], [ -121.890993, 37.507956 ], [ -121.891465, 37.508024 ], [ -121.892066, 37.508330 ], [ -121.893139, 37.508534 ], [ -121.893611, 37.508568 ], [ -121.893911, 37.508534 ], [ -121.894126, 37.508398 ], [ -121.895714, 37.508262 ], [ -121.896915, 37.507888 ], [ -121.897516, 37.507513 ], [ -121.898761, 37.507275 ], [ -121.899061, 37.507002 ], [ -121.899061, 37.506866 ], [ -121.899233, 37.506764 ], [ -121.899834, 37.506730 ], [ -121.900306, 37.506594 ], [ -121.900992, 37.506083 ], [ -121.901121, 37.505709 ], [ -121.901250, 37.505538 ], [ -121.901894, 37.505062 ], [ -121.902280, 37.505028 ], [ -121.903181, 37.505096 ], [ -121.903353, 37.505062 ], [ -121.903825, 37.504824 ], [ -121.904426, 37.504755 ], [ -121.905541, 37.504245 ], [ -121.912193, 37.503189 ], [ -121.912279, 37.503394 ], [ -121.914854, 37.502883 ], [ -121.915326, 37.502304 ], [ -121.916227, 37.502032 ], [ -121.917300, 37.502032 ], [ -121.917944, 37.502100 ], [ -121.919446, 37.502066 ], [ -121.919661, 37.506696 ], [ -121.919746, 37.507377 ], [ -121.919746, 37.510441 ], [ -121.919274, 37.513539 ], [ -121.918802, 37.515275 ], [ -121.918073, 37.517385 ], [ -121.917858, 37.518304 ], [ -121.917772, 37.523818 ], [ -121.917858, 37.525826 ], [ -121.919489, 37.531170 ], [ -121.920519, 37.535253 ], [ -121.920819, 37.535832 ], [ -121.921806, 37.537125 ], [ -121.922150, 37.537670 ], [ -121.924424, 37.540596 ], [ -121.923223, 37.541685 ], [ -121.921849, 37.542774 ], [ -121.920991, 37.543693 ], [ -121.920433, 37.544509 ], [ -121.920176, 37.544986 ], [ -121.919875, 37.545870 ], [ -121.919661, 37.548048 ], [ -121.919489, 37.548797 ], [ -121.919317, 37.549239 ], [ -121.918845, 37.550089 ], [ -121.918116, 37.551178 ], [ -121.917729, 37.552165 ], [ -121.916699, 37.554172 ], [ -121.916313, 37.554751 ], [ -121.915755, 37.555397 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443103", "GEOID10": "06001443103", "NAME10": "4431.03", "NAMELSAD10": "Census Tract 4431.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15518521, "AWATER10": 0, "INTPTLAT10": "+37.5273674", "INTPTLON10": "-121.9027992" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915755, 37.555397 ], [ -121.912065, 37.554751 ], [ -121.909661, 37.554240 ], [ -121.908159, 37.551757 ], [ -121.907129, 37.549341 ], [ -121.906443, 37.549375 ], [ -121.906400, 37.549137 ], [ -121.905284, 37.549171 ], [ -121.901035, 37.545904 ], [ -121.891336, 37.549749 ], [ -121.887560, 37.544033 ], [ -121.886830, 37.535662 ], [ -121.880651, 37.528277 ], [ -121.879320, 37.526337 ], [ -121.879535, 37.525690 ], [ -121.879878, 37.525248 ], [ -121.881380, 37.521504 ], [ -121.883612, 37.517215 ], [ -121.884813, 37.513743 ], [ -121.885028, 37.512041 ], [ -121.884255, 37.507956 ], [ -121.883011, 37.503292 ], [ -121.883826, 37.503257 ], [ -121.885285, 37.503598 ], [ -121.885586, 37.503802 ], [ -121.886358, 37.504755 ], [ -121.887131, 37.505845 ], [ -121.888032, 37.506356 ], [ -121.888461, 37.506662 ], [ -121.888890, 37.507070 ], [ -121.889448, 37.507377 ], [ -121.890349, 37.507649 ], [ -121.890993, 37.507956 ], [ -121.891465, 37.508024 ], [ -121.892066, 37.508330 ], [ -121.893139, 37.508534 ], [ -121.893611, 37.508568 ], [ -121.893911, 37.508534 ], [ -121.894126, 37.508398 ], [ -121.895800, 37.508228 ], [ -121.896915, 37.507888 ], [ -121.897516, 37.507513 ], [ -121.898761, 37.507275 ], [ -121.899061, 37.507002 ], [ -121.899061, 37.506866 ], [ -121.899233, 37.506764 ], [ -121.899834, 37.506730 ], [ -121.900306, 37.506594 ], [ -121.900992, 37.506083 ], [ -121.901121, 37.505709 ], [ -121.901250, 37.505538 ], [ -121.901894, 37.505062 ], [ -121.902280, 37.505028 ], [ -121.903181, 37.505096 ], [ -121.903353, 37.505062 ], [ -121.903825, 37.504824 ], [ -121.904426, 37.504755 ], [ -121.905541, 37.504245 ], [ -121.912193, 37.503189 ], [ -121.912279, 37.503394 ], [ -121.914854, 37.502883 ], [ -121.915326, 37.502304 ], [ -121.916227, 37.502032 ], [ -121.917300, 37.502032 ], [ -121.917944, 37.502100 ], [ -121.919446, 37.502066 ], [ -121.919661, 37.506696 ], [ -121.919746, 37.507377 ], [ -121.919746, 37.510441 ], [ -121.919274, 37.513539 ], [ -121.918802, 37.515275 ], [ -121.918073, 37.517385 ], [ -121.917858, 37.518304 ], [ -121.917772, 37.523818 ], [ -121.917858, 37.525826 ], [ -121.919489, 37.531170 ], [ -121.920519, 37.535253 ], [ -121.920819, 37.535832 ], [ -121.921806, 37.537125 ], [ -121.922150, 37.537670 ], [ -121.924424, 37.540596 ], [ -121.923223, 37.541685 ], [ -121.921849, 37.542774 ], [ -121.920991, 37.543693 ], [ -121.920433, 37.544509 ], [ -121.920176, 37.544986 ], [ -121.919875, 37.545870 ], [ -121.919661, 37.548048 ], [ -121.919489, 37.548797 ], [ -121.919317, 37.549239 ], [ -121.918845, 37.550089 ], [ -121.918116, 37.551178 ], [ -121.917729, 37.552165 ], [ -121.916699, 37.554172 ], [ -121.916313, 37.554751 ], [ -121.915755, 37.555397 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443105", "GEOID10": "06001443105", "NAME10": "4431.05", "NAMELSAD10": "Census Tract 4431.05", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3290366, "AWATER10": 0, "INTPTLAT10": "+37.5218333", "INTPTLON10": "-121.9322534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.934037, 37.531646 ], [ -121.933951, 37.531272 ], [ -121.933694, 37.530829 ], [ -121.929274, 37.526099 ], [ -121.928759, 37.525248 ], [ -121.928415, 37.523580 ], [ -121.927514, 37.523682 ], [ -121.926827, 37.523614 ], [ -121.926270, 37.523410 ], [ -121.925540, 37.523035 ], [ -121.925197, 37.522933 ], [ -121.924381, 37.522933 ], [ -121.924038, 37.523035 ], [ -121.923652, 37.523240 ], [ -121.922193, 37.524329 ], [ -121.921935, 37.524635 ], [ -121.921763, 37.525077 ], [ -121.921506, 37.525350 ], [ -121.921034, 37.525520 ], [ -121.919961, 37.525758 ], [ -121.917944, 37.526133 ], [ -121.917815, 37.525452 ], [ -121.917772, 37.523818 ], [ -121.917858, 37.518304 ], [ -121.918073, 37.517385 ], [ -121.918802, 37.515275 ], [ -121.919231, 37.513607 ], [ -121.921034, 37.513913 ], [ -121.923351, 37.514117 ], [ -121.923351, 37.514355 ], [ -121.924982, 37.514934 ], [ -121.925883, 37.515070 ], [ -121.926827, 37.515070 ], [ -121.933608, 37.513913 ], [ -121.934295, 37.513913 ], [ -121.934638, 37.513981 ], [ -121.936183, 37.514730 ], [ -121.936870, 37.514968 ], [ -121.937342, 37.515070 ], [ -121.938028, 37.515104 ], [ -121.939530, 37.514764 ], [ -121.941891, 37.518747 ], [ -121.945410, 37.523682 ], [ -121.945624, 37.524124 ], [ -121.945925, 37.525146 ], [ -121.945882, 37.526609 ], [ -121.945710, 37.527154 ], [ -121.945109, 37.528243 ], [ -121.944551, 37.528855 ], [ -121.944208, 37.529162 ], [ -121.941504, 37.530999 ], [ -121.940775, 37.530931 ], [ -121.939487, 37.530965 ], [ -121.935968, 37.531306 ], [ -121.934509, 37.531510 ], [ -121.934037, 37.531646 ] ] ] } } , @@ -3458,7 +3458,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443301", "GEOID10": "06001443301", "NAME10": "4433.01", "NAMELSAD10": "Census Tract 4433.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1602359, "AWATER10": 0, "INTPTLAT10": "+37.4707218", "INTPTLON10": "-121.9128679" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.915498, 37.483032 ], [ -121.914511, 37.482895 ], [ -121.913352, 37.482895 ], [ -121.910477, 37.473734 ], [ -121.909876, 37.472372 ], [ -121.909490, 37.471622 ], [ -121.908760, 37.470601 ], [ -121.906185, 37.470022 ], [ -121.905456, 37.466411 ], [ -121.903911, 37.464538 ], [ -121.905241, 37.464231 ], [ -121.906013, 37.463925 ], [ -121.906829, 37.463720 ], [ -121.907129, 37.463584 ], [ -121.907086, 37.463379 ], [ -121.907301, 37.463277 ], [ -121.907387, 37.463482 ], [ -121.908588, 37.463039 ], [ -121.909146, 37.463005 ], [ -121.911120, 37.461813 ], [ -121.911077, 37.461676 ], [ -121.911163, 37.461608 ], [ -121.911421, 37.461540 ], [ -121.912451, 37.460927 ], [ -121.912794, 37.460893 ], [ -121.914425, 37.463482 ], [ -121.914940, 37.464470 ], [ -121.921077, 37.474994 ], [ -121.919188, 37.475641 ], [ -121.919403, 37.476050 ], [ -121.916184, 37.477208 ], [ -121.916099, 37.477276 ], [ -121.916485, 37.478025 ], [ -121.914253, 37.478809 ], [ -121.914167, 37.478911 ], [ -121.915069, 37.480920 ], [ -121.915197, 37.481091 ], [ -121.915927, 37.480818 ], [ -121.916571, 37.481908 ], [ -121.916828, 37.482487 ], [ -121.916828, 37.482555 ], [ -121.916699, 37.482623 ], [ -121.915498, 37.483032 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443200", "GEOID10": "06001443200", "NAME10": "4432", "NAMELSAD10": "Census Tract 4432", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13642449, "AWATER10": 0, "INTPTLAT10": "+37.4871497", "INTPTLON10": "-121.8964116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.893611, 37.508568 ], [ -121.893139, 37.508534 ], [ -121.892066, 37.508330 ], [ -121.891465, 37.508024 ], [ -121.890993, 37.507956 ], [ -121.890349, 37.507649 ], [ -121.889448, 37.507377 ], [ -121.888890, 37.507070 ], [ -121.888461, 37.506662 ], [ -121.888032, 37.506356 ], [ -121.887131, 37.505845 ], [ -121.886358, 37.504755 ], [ -121.885586, 37.503802 ], [ -121.885285, 37.503598 ], [ -121.883826, 37.503257 ], [ -121.883011, 37.503292 ], [ -121.882710, 37.501657 ], [ -121.884084, 37.499478 ], [ -121.883740, 37.498014 ], [ -121.882367, 37.493554 ], [ -121.881852, 37.493247 ], [ -121.880779, 37.492430 ], [ -121.876144, 37.489161 ], [ -121.875887, 37.488923 ], [ -121.870179, 37.484734 ], [ -121.867776, 37.483032 ], [ -121.869922, 37.481669 ], [ -121.870093, 37.481295 ], [ -121.870050, 37.480954 ], [ -121.870136, 37.480682 ], [ -121.870565, 37.480205 ], [ -121.870651, 37.479933 ], [ -121.870651, 37.479626 ], [ -121.870866, 37.479354 ], [ -121.872969, 37.478128 ], [ -121.873698, 37.477855 ], [ -121.873999, 37.477412 ], [ -121.874299, 37.476357 ], [ -121.874599, 37.475778 ], [ -121.875200, 37.475199 ], [ -121.875758, 37.474994 ], [ -121.876273, 37.474926 ], [ -121.876488, 37.475131 ], [ -121.876788, 37.475131 ], [ -121.877131, 37.475233 ], [ -121.877432, 37.475199 ], [ -121.877732, 37.474892 ], [ -121.877990, 37.474211 ], [ -121.878119, 37.474041 ], [ -121.878934, 37.473325 ], [ -121.879320, 37.472338 ], [ -121.879449, 37.472167 ], [ -121.879921, 37.471759 ], [ -121.880522, 37.471384 ], [ -121.881981, 37.470703 ], [ -121.882582, 37.470567 ], [ -121.883483, 37.470771 ], [ -121.883912, 37.470771 ], [ -121.884556, 37.471282 ], [ -121.885157, 37.471418 ], [ -121.885972, 37.471384 ], [ -121.887045, 37.471077 ], [ -121.887732, 37.470941 ], [ -121.889191, 37.470260 ], [ -121.889706, 37.469613 ], [ -121.889920, 37.469102 ], [ -121.890392, 37.468319 ], [ -121.890864, 37.467978 ], [ -121.891379, 37.467842 ], [ -121.891937, 37.467808 ], [ -121.892195, 37.467740 ], [ -121.892967, 37.467671 ], [ -121.893783, 37.467671 ], [ -121.894984, 37.467535 ], [ -121.896100, 37.467297 ], [ -121.896315, 37.467297 ], [ -121.896830, 37.467058 ], [ -121.897645, 37.466956 ], [ -121.898289, 37.466650 ], [ -121.898975, 37.465832 ], [ -121.899619, 37.465730 ], [ -121.900392, 37.465423 ], [ -121.901293, 37.464946 ], [ -121.901550, 37.464878 ], [ -121.902065, 37.464810 ], [ -121.902580, 37.464640 ], [ -121.903353, 37.464674 ], [ -121.903911, 37.464538 ], [ -121.905456, 37.466411 ], [ -121.906185, 37.470022 ], [ -121.908760, 37.470601 ], [ -121.909490, 37.471622 ], [ -121.909876, 37.472372 ], [ -121.910477, 37.473734 ], [ -121.913352, 37.482998 ], [ -121.913996, 37.484462 ], [ -121.914468, 37.485211 ], [ -121.919403, 37.492158 ], [ -121.920218, 37.493009 ], [ -121.923008, 37.495597 ], [ -121.921163, 37.496857 ], [ -121.920562, 37.497333 ], [ -121.920218, 37.497776 ], [ -121.919489, 37.499104 ], [ -121.919403, 37.499376 ], [ -121.919360, 37.500329 ], [ -121.919446, 37.502066 ], [ -121.917944, 37.502100 ], [ -121.917300, 37.502032 ], [ -121.916227, 37.502032 ], [ -121.915326, 37.502304 ], [ -121.914854, 37.502883 ], [ -121.912279, 37.503394 ], [ -121.912193, 37.503189 ], [ -121.905541, 37.504245 ], [ -121.904426, 37.504755 ], [ -121.903825, 37.504824 ], [ -121.903353, 37.505062 ], [ -121.903181, 37.505096 ], [ -121.902280, 37.505028 ], [ -121.901894, 37.505062 ], [ -121.901250, 37.505538 ], [ -121.901121, 37.505709 ], [ -121.900992, 37.506083 ], [ -121.900306, 37.506594 ], [ -121.899834, 37.506730 ], [ -121.899233, 37.506764 ], [ -121.899061, 37.506866 ], [ -121.899061, 37.507002 ], [ -121.898761, 37.507275 ], [ -121.897516, 37.507513 ], [ -121.896915, 37.507888 ], [ -121.896615, 37.507990 ], [ -121.895714, 37.508262 ], [ -121.894126, 37.508398 ], [ -121.893911, 37.508534 ], [ -121.893611, 37.508568 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "443200", "GEOID10": "06001443200", "NAME10": "4432", "NAMELSAD10": "Census Tract 4432", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13642449, "AWATER10": 0, "INTPTLAT10": "+37.4871497", "INTPTLON10": "-121.8964116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.893611, 37.508568 ], [ -121.893139, 37.508534 ], [ -121.892066, 37.508330 ], [ -121.891465, 37.508024 ], [ -121.890993, 37.507956 ], [ -121.890349, 37.507649 ], [ -121.889448, 37.507377 ], [ -121.888890, 37.507070 ], [ -121.888461, 37.506662 ], [ -121.888032, 37.506356 ], [ -121.887131, 37.505845 ], [ -121.886358, 37.504755 ], [ -121.885586, 37.503802 ], [ -121.885285, 37.503598 ], [ -121.883826, 37.503257 ], [ -121.883011, 37.503292 ], [ -121.882710, 37.501657 ], [ -121.884084, 37.499478 ], [ -121.883740, 37.498014 ], [ -121.882367, 37.493554 ], [ -121.881852, 37.493247 ], [ -121.880779, 37.492430 ], [ -121.876144, 37.489161 ], [ -121.875887, 37.488923 ], [ -121.870179, 37.484734 ], [ -121.867776, 37.483032 ], [ -121.869922, 37.481669 ], [ -121.870093, 37.481295 ], [ -121.870050, 37.480954 ], [ -121.870136, 37.480682 ], [ -121.870565, 37.480205 ], [ -121.870651, 37.479933 ], [ -121.870651, 37.479626 ], [ -121.870866, 37.479354 ], [ -121.872969, 37.478128 ], [ -121.873698, 37.477855 ], [ -121.873999, 37.477412 ], [ -121.874299, 37.476357 ], [ -121.874599, 37.475778 ], [ -121.875200, 37.475199 ], [ -121.875758, 37.474994 ], [ -121.876273, 37.474926 ], [ -121.876488, 37.475131 ], [ -121.876788, 37.475131 ], [ -121.877131, 37.475233 ], [ -121.877432, 37.475199 ], [ -121.877732, 37.474892 ], [ -121.877990, 37.474211 ], [ -121.878119, 37.474041 ], [ -121.878934, 37.473325 ], [ -121.879320, 37.472338 ], [ -121.879449, 37.472167 ], [ -121.879921, 37.471759 ], [ -121.880522, 37.471384 ], [ -121.881981, 37.470703 ], [ -121.882582, 37.470567 ], [ -121.883483, 37.470771 ], [ -121.883912, 37.470771 ], [ -121.884556, 37.471282 ], [ -121.885157, 37.471418 ], [ -121.885972, 37.471384 ], [ -121.887045, 37.471077 ], [ -121.887732, 37.470941 ], [ -121.889191, 37.470260 ], [ -121.889706, 37.469613 ], [ -121.889920, 37.469102 ], [ -121.890392, 37.468319 ], [ -121.890864, 37.467978 ], [ -121.891379, 37.467842 ], [ -121.891937, 37.467808 ], [ -121.892195, 37.467740 ], [ -121.892967, 37.467671 ], [ -121.893783, 37.467671 ], [ -121.894984, 37.467535 ], [ -121.896100, 37.467297 ], [ -121.896315, 37.467297 ], [ -121.896830, 37.467058 ], [ -121.897645, 37.466956 ], [ -121.898289, 37.466650 ], [ -121.898975, 37.465832 ], [ -121.899619, 37.465730 ], [ -121.900392, 37.465423 ], [ -121.901293, 37.464946 ], [ -121.901550, 37.464878 ], [ -121.902065, 37.464810 ], [ -121.902580, 37.464640 ], [ -121.903353, 37.464674 ], [ -121.903911, 37.464538 ], [ -121.905456, 37.466411 ], [ -121.906185, 37.470022 ], [ -121.908760, 37.470601 ], [ -121.909490, 37.471622 ], [ -121.909876, 37.472372 ], [ -121.910477, 37.473734 ], [ -121.913352, 37.482998 ], [ -121.913996, 37.484462 ], [ -121.914468, 37.485211 ], [ -121.919403, 37.492158 ], [ -121.920218, 37.493009 ], [ -121.923008, 37.495597 ], [ -121.921163, 37.496857 ], [ -121.920562, 37.497333 ], [ -121.920218, 37.497776 ], [ -121.919489, 37.499104 ], [ -121.919403, 37.499376 ], [ -121.919360, 37.500329 ], [ -121.919446, 37.502066 ], [ -121.917944, 37.502100 ], [ -121.917300, 37.502032 ], [ -121.916227, 37.502032 ], [ -121.915326, 37.502304 ], [ -121.914854, 37.502883 ], [ -121.912279, 37.503394 ], [ -121.912193, 37.503189 ], [ -121.905541, 37.504245 ], [ -121.904426, 37.504755 ], [ -121.903825, 37.504824 ], [ -121.903353, 37.505062 ], [ -121.903181, 37.505096 ], [ -121.902280, 37.505028 ], [ -121.901894, 37.505062 ], [ -121.901250, 37.505538 ], [ -121.901121, 37.505709 ], [ -121.900992, 37.506083 ], [ -121.900306, 37.506594 ], [ -121.899834, 37.506730 ], [ -121.899233, 37.506764 ], [ -121.899061, 37.506866 ], [ -121.899061, 37.507002 ], [ -121.898761, 37.507275 ], [ -121.897516, 37.507513 ], [ -121.896915, 37.507888 ], [ -121.896615, 37.507990 ], [ -121.895800, 37.508228 ], [ -121.894126, 37.508398 ], [ -121.893911, 37.508534 ], [ -121.893611, 37.508568 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812973, 37.582133 ], [ -121.812973, 37.484121 ], [ -121.816406, 37.484155 ], [ -121.822844, 37.484224 ], [ -121.831384, 37.484224 ], [ -121.832714, 37.484326 ], [ -121.850653, 37.484428 ], [ -121.857390, 37.484564 ], [ -121.865287, 37.484632 ], [ -121.867776, 37.483032 ], [ -121.870179, 37.484734 ], [ -121.875887, 37.488923 ], [ -121.876144, 37.489161 ], [ -121.880779, 37.492430 ], [ -121.881852, 37.493247 ], [ -121.882367, 37.493554 ], [ -121.884041, 37.499138 ], [ -121.884084, 37.499478 ], [ -121.882710, 37.501657 ], [ -121.883011, 37.503292 ], [ -121.884255, 37.507956 ], [ -121.885028, 37.512041 ], [ -121.884813, 37.513743 ], [ -121.883612, 37.517215 ], [ -121.881380, 37.521504 ], [ -121.879878, 37.525248 ], [ -121.879535, 37.525690 ], [ -121.879320, 37.526337 ], [ -121.880651, 37.528277 ], [ -121.886830, 37.535662 ], [ -121.887560, 37.544033 ], [ -121.891336, 37.549749 ], [ -121.901035, 37.545904 ], [ -121.905284, 37.549171 ], [ -121.906400, 37.549137 ], [ -121.906443, 37.549375 ], [ -121.907129, 37.549341 ], [ -121.908159, 37.551757 ], [ -121.909661, 37.554240 ], [ -121.912065, 37.554751 ], [ -121.915755, 37.555397 ], [ -121.915970, 37.560874 ], [ -121.917901, 37.560568 ], [ -121.917987, 37.561249 ], [ -121.920047, 37.560942 ], [ -121.919918, 37.560194 ], [ -121.922922, 37.559650 ], [ -121.923738, 37.557438 ], [ -121.924853, 37.557234 ], [ -121.923695, 37.559684 ], [ -121.923652, 37.559922 ], [ -121.919188, 37.561487 ], [ -121.918974, 37.565943 ], [ -121.919446, 37.567678 ], [ -121.923137, 37.568222 ], [ -121.923523, 37.569685 ], [ -121.925240, 37.571215 ], [ -121.932149, 37.573324 ], [ -121.932492, 37.573732 ], [ -121.932535, 37.573903 ], [ -121.932707, 37.574107 ], [ -121.932364, 37.574821 ], [ -121.933179, 37.576045 ], [ -121.932364, 37.576385 ], [ -121.931205, 37.576045 ], [ -121.929917, 37.577644 ], [ -121.929746, 37.578766 ], [ -121.928072, 37.579413 ], [ -121.927557, 37.579617 ], [ -121.928587, 37.580705 ], [ -121.926956, 37.581895 ], [ -121.927214, 37.582133 ], [ -121.812973, 37.582133 ] ] ] } } ] } @@ -3476,7 +3476,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "441200", "GEOID10": "06001441200", "NAME10": "4412", "NAMELSAD10": "Census Tract 4412", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3241560, "AWATER10": 11692, "INTPTLAT10": "+37.5780625", "INTPTLON10": "-121.9910071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.995621, 37.584718 ], [ -121.992188, 37.581963 ], [ -121.991200, 37.581181 ], [ -121.990342, 37.580671 ], [ -121.989527, 37.580331 ], [ -121.988497, 37.579991 ], [ -121.987767, 37.579821 ], [ -121.986566, 37.579583 ], [ -121.985149, 37.579413 ], [ -121.980944, 37.578936 ], [ -121.977382, 37.578868 ], [ -121.976094, 37.578664 ], [ -121.974936, 37.578358 ], [ -121.973391, 37.577746 ], [ -121.972146, 37.577032 ], [ -121.971717, 37.576692 ], [ -121.995621, 37.576692 ], [ -121.995621, 37.584718 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450601", "GEOID10": "06001450601", "NAME10": "4506.01", "NAMELSAD10": "Census Tract 4506.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 50375074, "AWATER10": 0, "INTPTLAT10": "+37.6531630", "INTPTLON10": "-121.9307980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.995621, 37.702939 ], [ -121.994033, 37.702498 ], [ -121.992188, 37.701785 ], [ -121.989398, 37.700562 ], [ -121.987681, 37.700019 ], [ -121.987166, 37.699917 ], [ -121.982532, 37.699374 ], [ -121.973133, 37.697744 ], [ -121.970172, 37.697438 ], [ -121.967983, 37.697370 ], [ -121.965451, 37.697472 ], [ -121.964035, 37.697608 ], [ -121.962919, 37.697778 ], [ -121.958456, 37.698559 ], [ -121.957426, 37.698593 ], [ -121.955323, 37.698627 ], [ -121.938200, 37.698457 ], [ -121.935668, 37.698457 ], [ -121.934981, 37.698525 ], [ -121.934638, 37.696895 ], [ -121.934295, 37.695876 ], [ -121.932578, 37.693024 ], [ -121.931763, 37.691360 ], [ -121.931634, 37.691224 ], [ -121.930089, 37.688473 ], [ -121.929746, 37.687692 ], [ -121.929617, 37.686979 ], [ -121.929660, 37.686537 ], [ -121.929574, 37.685383 ], [ -121.929188, 37.684635 ], [ -121.928759, 37.684092 ], [ -121.928372, 37.683752 ], [ -121.927857, 37.683379 ], [ -121.927385, 37.683175 ], [ -121.927385, 37.683073 ], [ -121.925240, 37.682428 ], [ -121.924767, 37.682156 ], [ -121.924038, 37.681477 ], [ -121.923394, 37.680730 ], [ -121.921120, 37.675397 ], [ -121.920691, 37.673801 ], [ -121.920176, 37.673087 ], [ -121.920004, 37.672272 ], [ -121.919274, 37.669962 ], [ -121.919231, 37.668433 ], [ -121.919060, 37.667856 ], [ -121.918287, 37.666769 ], [ -121.917472, 37.665784 ], [ -121.916313, 37.664731 ], [ -121.915712, 37.663678 ], [ -121.914897, 37.663610 ], [ -121.913652, 37.662251 ], [ -121.911592, 37.660416 ], [ -121.910777, 37.659533 ], [ -121.907816, 37.654335 ], [ -121.906743, 37.652228 ], [ -121.904168, 37.647743 ], [ -121.903782, 37.647233 ], [ -121.903481, 37.646961 ], [ -121.900520, 37.644956 ], [ -121.899490, 37.643257 ], [ -121.899233, 37.642952 ], [ -121.898932, 37.642714 ], [ -121.897388, 37.641966 ], [ -121.895285, 37.640607 ], [ -121.891637, 37.638024 ], [ -121.891379, 37.637786 ], [ -121.891122, 37.637378 ], [ -121.886659, 37.638670 ], [ -121.886487, 37.638840 ], [ -121.885757, 37.639281 ], [ -121.884127, 37.640165 ], [ -121.883955, 37.639927 ], [ -121.883869, 37.639621 ], [ -121.883826, 37.638602 ], [ -121.884127, 37.636835 ], [ -121.884170, 37.636121 ], [ -121.883998, 37.634829 ], [ -121.883698, 37.633946 ], [ -121.883268, 37.633164 ], [ -121.881552, 37.630887 ], [ -121.880994, 37.630037 ], [ -121.880608, 37.629256 ], [ -121.880307, 37.628440 ], [ -121.880007, 37.626672 ], [ -121.879921, 37.623002 ], [ -121.879492, 37.621370 ], [ -121.878419, 37.618957 ], [ -121.877003, 37.616237 ], [ -121.875029, 37.612226 ], [ -121.873398, 37.607874 ], [ -121.871853, 37.604304 ], [ -121.871724, 37.603828 ], [ -121.871638, 37.602944 ], [ -121.871724, 37.602060 ], [ -121.872067, 37.601210 ], [ -121.873055, 37.599510 ], [ -121.873269, 37.598660 ], [ -121.873312, 37.597946 ], [ -121.873226, 37.597198 ], [ -121.872969, 37.596348 ], [ -121.872797, 37.595974 ], [ -121.872325, 37.595328 ], [ -121.871810, 37.592369 ], [ -121.870995, 37.591553 ], [ -121.870437, 37.591179 ], [ -121.870008, 37.590533 ], [ -121.870265, 37.589785 ], [ -121.870737, 37.588833 ], [ -121.872196, 37.589207 ], [ -121.874814, 37.589683 ], [ -121.882324, 37.592948 ], [ -121.882324, 37.592880 ], [ -121.882839, 37.592744 ], [ -121.883698, 37.592744 ], [ -121.885586, 37.592540 ], [ -121.886744, 37.592574 ], [ -121.887388, 37.592710 ], [ -121.889191, 37.593254 ], [ -121.890178, 37.593458 ], [ -121.896186, 37.594002 ], [ -121.896958, 37.594512 ], [ -121.898460, 37.595328 ], [ -121.897774, 37.595736 ], [ -121.896358, 37.597334 ], [ -121.897388, 37.597436 ], [ -121.896958, 37.597742 ], [ -121.902752, 37.600632 ], [ -121.902452, 37.601244 ], [ -121.904469, 37.602128 ], [ -121.904769, 37.603726 ], [ -121.908588, 37.606446 ], [ -121.909275, 37.607942 ], [ -121.911464, 37.608622 ], [ -121.916957, 37.614639 ], [ -121.922064, 37.618617 ], [ -121.923952, 37.618923 ], [ -121.925111, 37.621914 ], [ -121.925626, 37.623511 ], [ -121.925626, 37.623987 ], [ -121.925540, 37.624395 ], [ -121.925626, 37.624531 ], [ -121.925969, 37.624667 ], [ -121.926098, 37.624837 ], [ -121.926012, 37.625891 ], [ -121.926098, 37.626435 ], [ -121.926742, 37.627318 ], [ -121.926827, 37.627522 ], [ -121.927342, 37.628032 ], [ -121.927557, 37.628440 ], [ -121.927600, 37.628678 ], [ -121.927814, 37.628848 ], [ -121.928844, 37.628848 ], [ -121.929059, 37.628916 ], [ -121.929231, 37.629052 ], [ -121.929231, 37.629324 ], [ -121.929531, 37.629935 ], [ -121.930046, 37.630309 ], [ -121.930990, 37.630547 ], [ -121.931076, 37.630615 ], [ -121.931334, 37.631023 ], [ -121.931548, 37.631771 ], [ -121.931548, 37.632213 ], [ -121.931977, 37.632620 ], [ -121.932364, 37.632858 ], [ -121.932578, 37.633572 ], [ -121.932964, 37.634048 ], [ -121.933222, 37.634184 ], [ -121.934295, 37.635033 ], [ -121.934166, 37.635407 ], [ -121.934166, 37.635611 ], [ -121.934295, 37.636325 ], [ -121.934767, 37.636835 ], [ -121.934896, 37.637208 ], [ -121.935239, 37.637650 ], [ -121.935239, 37.638058 ], [ -121.935410, 37.638330 ], [ -121.935840, 37.638704 ], [ -121.936312, 37.639247 ], [ -121.937170, 37.639485 ], [ -121.937642, 37.639519 ], [ -121.937985, 37.639689 ], [ -121.938372, 37.640029 ], [ -121.938629, 37.640131 ], [ -121.938715, 37.640233 ], [ -121.938844, 37.640675 ], [ -121.938844, 37.640879 ], [ -121.939573, 37.641660 ], [ -121.939573, 37.641830 ], [ -121.939230, 37.641966 ], [ -121.939144, 37.642068 ], [ -121.939187, 37.642340 ], [ -121.940346, 37.642952 ], [ -121.941419, 37.643155 ], [ -121.941633, 37.643121 ], [ -121.941719, 37.643189 ], [ -121.941504, 37.643529 ], [ -121.941462, 37.643971 ], [ -121.941676, 37.644311 ], [ -121.941719, 37.644549 ], [ -121.941934, 37.644956 ], [ -121.943607, 37.646520 ], [ -121.943865, 37.646621 ], [ -121.944251, 37.646995 ], [ -121.944766, 37.647165 ], [ -121.945152, 37.647437 ], [ -121.945624, 37.647981 ], [ -121.945753, 37.648456 ], [ -121.945753, 37.648864 ], [ -121.945968, 37.649136 ], [ -121.946783, 37.649850 ], [ -121.947598, 37.650121 ], [ -121.948371, 37.650801 ], [ -121.948371, 37.650903 ], [ -121.948285, 37.650971 ], [ -121.948328, 37.651175 ], [ -121.948586, 37.651582 ], [ -121.948714, 37.651990 ], [ -121.949401, 37.652364 ], [ -121.949959, 37.653179 ], [ -121.950173, 37.653383 ], [ -121.950645, 37.653621 ], [ -121.950817, 37.653519 ], [ -121.951203, 37.653111 ], [ -121.951933, 37.652228 ], [ -121.952620, 37.652704 ], [ -121.953821, 37.653689 ], [ -121.955066, 37.654504 ], [ -121.955624, 37.654946 ], [ -121.956267, 37.655660 ], [ -121.956654, 37.656237 ], [ -121.957340, 37.656713 ], [ -121.958113, 37.657053 ], [ -121.958714, 37.657392 ], [ -121.959100, 37.657494 ], [ -121.959400, 37.657732 ], [ -121.959658, 37.658344 ], [ -121.959915, 37.658649 ], [ -121.960559, 37.659023 ], [ -121.962104, 37.660280 ], [ -121.962318, 37.660518 ], [ -121.963263, 37.661096 ], [ -121.963434, 37.661333 ], [ -121.963863, 37.661469 ], [ -121.964078, 37.661707 ], [ -121.964078, 37.661945 ], [ -121.964164, 37.662081 ], [ -121.964378, 37.662285 ], [ -121.964850, 37.662556 ], [ -121.966567, 37.662930 ], [ -121.967211, 37.663270 ], [ -121.967769, 37.663813 ], [ -121.967897, 37.664119 ], [ -121.967769, 37.664527 ], [ -121.967683, 37.664731 ], [ -121.967254, 37.665172 ], [ -121.967168, 37.665410 ], [ -121.967254, 37.665852 ], [ -121.967597, 37.666565 ], [ -121.967554, 37.666701 ], [ -121.966910, 37.667177 ], [ -121.966825, 37.667312 ], [ -121.966782, 37.667618 ], [ -121.966567, 37.667822 ], [ -121.966352, 37.668162 ], [ -121.966181, 37.668298 ], [ -121.965666, 37.668501 ], [ -121.964722, 37.669011 ], [ -121.964121, 37.669487 ], [ -121.963820, 37.669894 ], [ -121.963820, 37.670166 ], [ -121.963992, 37.670879 ], [ -121.963820, 37.671117 ], [ -121.963391, 37.671253 ], [ -121.963348, 37.671355 ], [ -121.963348, 37.671695 ], [ -121.963477, 37.672000 ], [ -121.963692, 37.671525 ], [ -121.963778, 37.671491 ], [ -121.964078, 37.671491 ], [ -121.965408, 37.671695 ], [ -121.965923, 37.671695 ], [ -121.966395, 37.671661 ], [ -121.967468, 37.671423 ], [ -121.967897, 37.671457 ], [ -121.969228, 37.672034 ], [ -121.969743, 37.672170 ], [ -121.970730, 37.672748 ], [ -121.971202, 37.673257 ], [ -121.971459, 37.673427 ], [ -121.972361, 37.673733 ], [ -121.972876, 37.674038 ], [ -121.973348, 37.674140 ], [ -121.973605, 37.674140 ], [ -121.974506, 37.674004 ], [ -121.974850, 37.674038 ], [ -121.975064, 37.674208 ], [ -121.975493, 37.674854 ], [ -121.976051, 37.675193 ], [ -121.976738, 37.675431 ], [ -121.976953, 37.675601 ], [ -121.976953, 37.675771 ], [ -121.976781, 37.676212 ], [ -121.976867, 37.676552 ], [ -121.978283, 37.677843 ], [ -121.978455, 37.678386 ], [ -121.978755, 37.678828 ], [ -121.978970, 37.678963 ], [ -121.979356, 37.678997 ], [ -121.981459, 37.684398 ], [ -121.983519, 37.689084 ], [ -121.984119, 37.689118 ], [ -121.984420, 37.689016 ], [ -121.984849, 37.688507 ], [ -121.985278, 37.688235 ], [ -121.985493, 37.687998 ], [ -121.985836, 37.687930 ], [ -121.986222, 37.687726 ], [ -121.986866, 37.687692 ], [ -121.987982, 37.687828 ], [ -121.988497, 37.688032 ], [ -121.989398, 37.688269 ], [ -121.990085, 37.688643 ], [ -121.991372, 37.688915 ], [ -121.992188, 37.689526 ], [ -121.992831, 37.689967 ], [ -121.993904, 37.690239 ], [ -121.994462, 37.690307 ], [ -121.995621, 37.690205 ], [ -121.995621, 37.702939 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450601", "GEOID10": "06001450601", "NAME10": "4506.01", "NAMELSAD10": "Census Tract 4506.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 50375074, "AWATER10": 0, "INTPTLAT10": "+37.6531630", "INTPTLON10": "-121.9307980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.995621, 37.702939 ], [ -121.994033, 37.702498 ], [ -121.992188, 37.701785 ], [ -121.989398, 37.700562 ], [ -121.987681, 37.700019 ], [ -121.987166, 37.699917 ], [ -121.982532, 37.699374 ], [ -121.973133, 37.697744 ], [ -121.970172, 37.697438 ], [ -121.967983, 37.697370 ], [ -121.965451, 37.697472 ], [ -121.964035, 37.697608 ], [ -121.962919, 37.697778 ], [ -121.958456, 37.698559 ], [ -121.957426, 37.698593 ], [ -121.955323, 37.698627 ], [ -121.938200, 37.698457 ], [ -121.935668, 37.698457 ], [ -121.934981, 37.698525 ], [ -121.934638, 37.696895 ], [ -121.934295, 37.695876 ], [ -121.932578, 37.693024 ], [ -121.931763, 37.691360 ], [ -121.931634, 37.691224 ], [ -121.930089, 37.688473 ], [ -121.929746, 37.687692 ], [ -121.929617, 37.686979 ], [ -121.929660, 37.686537 ], [ -121.929574, 37.685383 ], [ -121.929188, 37.684635 ], [ -121.928759, 37.684092 ], [ -121.928372, 37.683752 ], [ -121.927857, 37.683379 ], [ -121.927385, 37.683175 ], [ -121.927385, 37.683073 ], [ -121.925240, 37.682428 ], [ -121.924767, 37.682156 ], [ -121.924038, 37.681477 ], [ -121.923394, 37.680730 ], [ -121.921120, 37.675397 ], [ -121.920691, 37.673801 ], [ -121.920176, 37.673087 ], [ -121.920004, 37.672272 ], [ -121.919274, 37.669962 ], [ -121.919231, 37.668433 ], [ -121.919060, 37.667856 ], [ -121.918287, 37.666769 ], [ -121.917472, 37.665784 ], [ -121.916313, 37.664731 ], [ -121.915712, 37.663678 ], [ -121.914897, 37.663610 ], [ -121.913652, 37.662251 ], [ -121.911592, 37.660416 ], [ -121.910777, 37.659533 ], [ -121.907816, 37.654335 ], [ -121.906743, 37.652228 ], [ -121.904168, 37.647743 ], [ -121.903782, 37.647233 ], [ -121.903481, 37.646961 ], [ -121.900520, 37.644956 ], [ -121.899490, 37.643257 ], [ -121.899233, 37.642952 ], [ -121.898932, 37.642714 ], [ -121.897388, 37.641966 ], [ -121.895285, 37.640607 ], [ -121.891637, 37.638024 ], [ -121.891379, 37.637786 ], [ -121.891122, 37.637378 ], [ -121.886659, 37.638670 ], [ -121.886487, 37.638840 ], [ -121.885757, 37.639281 ], [ -121.884127, 37.640165 ], [ -121.883955, 37.639927 ], [ -121.883869, 37.639621 ], [ -121.883826, 37.638602 ], [ -121.884127, 37.636835 ], [ -121.884170, 37.636121 ], [ -121.883998, 37.634829 ], [ -121.883698, 37.633946 ], [ -121.883268, 37.633164 ], [ -121.881552, 37.630887 ], [ -121.880994, 37.630037 ], [ -121.880608, 37.629256 ], [ -121.880307, 37.628440 ], [ -121.880007, 37.626672 ], [ -121.879921, 37.623002 ], [ -121.879492, 37.621370 ], [ -121.878419, 37.618957 ], [ -121.877003, 37.616237 ], [ -121.875029, 37.612226 ], [ -121.873398, 37.607874 ], [ -121.871853, 37.604304 ], [ -121.871724, 37.603828 ], [ -121.871638, 37.602944 ], [ -121.871724, 37.602060 ], [ -121.872067, 37.601210 ], [ -121.873055, 37.599510 ], [ -121.873269, 37.598660 ], [ -121.873312, 37.597946 ], [ -121.873140, 37.596790 ], [ -121.872797, 37.595974 ], [ -121.872325, 37.595328 ], [ -121.871810, 37.592369 ], [ -121.870995, 37.591553 ], [ -121.870437, 37.591179 ], [ -121.870008, 37.590533 ], [ -121.870265, 37.589785 ], [ -121.870737, 37.588833 ], [ -121.872196, 37.589207 ], [ -121.874814, 37.589683 ], [ -121.882324, 37.592948 ], [ -121.882324, 37.592880 ], [ -121.882839, 37.592744 ], [ -121.883698, 37.592744 ], [ -121.885586, 37.592540 ], [ -121.886744, 37.592574 ], [ -121.887388, 37.592710 ], [ -121.889191, 37.593254 ], [ -121.890178, 37.593458 ], [ -121.896186, 37.594002 ], [ -121.896958, 37.594512 ], [ -121.898460, 37.595328 ], [ -121.897774, 37.595736 ], [ -121.896358, 37.597334 ], [ -121.897388, 37.597436 ], [ -121.896958, 37.597742 ], [ -121.902752, 37.600632 ], [ -121.902452, 37.601244 ], [ -121.904469, 37.602128 ], [ -121.904769, 37.603726 ], [ -121.908588, 37.606446 ], [ -121.909275, 37.607942 ], [ -121.911464, 37.608622 ], [ -121.916957, 37.614639 ], [ -121.922064, 37.618617 ], [ -121.923952, 37.618923 ], [ -121.925111, 37.621914 ], [ -121.925626, 37.623511 ], [ -121.925626, 37.623987 ], [ -121.925540, 37.624395 ], [ -121.925626, 37.624531 ], [ -121.925969, 37.624667 ], [ -121.926098, 37.624837 ], [ -121.926012, 37.625891 ], [ -121.926098, 37.626435 ], [ -121.926742, 37.627318 ], [ -121.926827, 37.627522 ], [ -121.927342, 37.628032 ], [ -121.927557, 37.628440 ], [ -121.927600, 37.628678 ], [ -121.927814, 37.628848 ], [ -121.928844, 37.628848 ], [ -121.929059, 37.628916 ], [ -121.929231, 37.629052 ], [ -121.929231, 37.629324 ], [ -121.929531, 37.629935 ], [ -121.930046, 37.630309 ], [ -121.930990, 37.630547 ], [ -121.931076, 37.630615 ], [ -121.931334, 37.631023 ], [ -121.931548, 37.631771 ], [ -121.931548, 37.632213 ], [ -121.931977, 37.632620 ], [ -121.932364, 37.632858 ], [ -121.932578, 37.633572 ], [ -121.932964, 37.634048 ], [ -121.933222, 37.634184 ], [ -121.934295, 37.635033 ], [ -121.934166, 37.635407 ], [ -121.934166, 37.635611 ], [ -121.934295, 37.636325 ], [ -121.934767, 37.636835 ], [ -121.934896, 37.637208 ], [ -121.935239, 37.637650 ], [ -121.935239, 37.638058 ], [ -121.935410, 37.638330 ], [ -121.935840, 37.638704 ], [ -121.936312, 37.639247 ], [ -121.937170, 37.639485 ], [ -121.937642, 37.639519 ], [ -121.937985, 37.639689 ], [ -121.938372, 37.640029 ], [ -121.938629, 37.640131 ], [ -121.938715, 37.640233 ], [ -121.938844, 37.640675 ], [ -121.938844, 37.640879 ], [ -121.939573, 37.641660 ], [ -121.939573, 37.641830 ], [ -121.939230, 37.641966 ], [ -121.939144, 37.642068 ], [ -121.939187, 37.642340 ], [ -121.940346, 37.642952 ], [ -121.941419, 37.643155 ], [ -121.941633, 37.643121 ], [ -121.941719, 37.643189 ], [ -121.941504, 37.643529 ], [ -121.941462, 37.643971 ], [ -121.941676, 37.644311 ], [ -121.941719, 37.644549 ], [ -121.941934, 37.644956 ], [ -121.943607, 37.646520 ], [ -121.943865, 37.646621 ], [ -121.944251, 37.646995 ], [ -121.944766, 37.647165 ], [ -121.945152, 37.647437 ], [ -121.945624, 37.647981 ], [ -121.945753, 37.648456 ], [ -121.945753, 37.648864 ], [ -121.945968, 37.649136 ], [ -121.946783, 37.649850 ], [ -121.947598, 37.650121 ], [ -121.948371, 37.650801 ], [ -121.948371, 37.650903 ], [ -121.948285, 37.650971 ], [ -121.948328, 37.651175 ], [ -121.948586, 37.651582 ], [ -121.948714, 37.651990 ], [ -121.949401, 37.652364 ], [ -121.949959, 37.653179 ], [ -121.950173, 37.653383 ], [ -121.950645, 37.653621 ], [ -121.950817, 37.653519 ], [ -121.951203, 37.653111 ], [ -121.951933, 37.652228 ], [ -121.952620, 37.652704 ], [ -121.953821, 37.653689 ], [ -121.955066, 37.654504 ], [ -121.955624, 37.654946 ], [ -121.956267, 37.655660 ], [ -121.956654, 37.656237 ], [ -121.957340, 37.656713 ], [ -121.958113, 37.657053 ], [ -121.958714, 37.657392 ], [ -121.959100, 37.657494 ], [ -121.959400, 37.657732 ], [ -121.959658, 37.658344 ], [ -121.959915, 37.658649 ], [ -121.960559, 37.659023 ], [ -121.961460, 37.659737 ], [ -121.962104, 37.660280 ], [ -121.962276, 37.660518 ], [ -121.963134, 37.660994 ], [ -121.963434, 37.661333 ], [ -121.963863, 37.661469 ], [ -121.964078, 37.661707 ], [ -121.964078, 37.661945 ], [ -121.964164, 37.662081 ], [ -121.964378, 37.662285 ], [ -121.964850, 37.662556 ], [ -121.966567, 37.662930 ], [ -121.967211, 37.663270 ], [ -121.967769, 37.663813 ], [ -121.967897, 37.664119 ], [ -121.967769, 37.664527 ], [ -121.967683, 37.664731 ], [ -121.967254, 37.665172 ], [ -121.967168, 37.665410 ], [ -121.967254, 37.665852 ], [ -121.967597, 37.666565 ], [ -121.967554, 37.666701 ], [ -121.966910, 37.667177 ], [ -121.966825, 37.667312 ], [ -121.966782, 37.667618 ], [ -121.966567, 37.667822 ], [ -121.966352, 37.668162 ], [ -121.966181, 37.668298 ], [ -121.965666, 37.668501 ], [ -121.964722, 37.669011 ], [ -121.964121, 37.669487 ], [ -121.963820, 37.669894 ], [ -121.963820, 37.670166 ], [ -121.963992, 37.670879 ], [ -121.963820, 37.671117 ], [ -121.963391, 37.671253 ], [ -121.963348, 37.671355 ], [ -121.963348, 37.671695 ], [ -121.963477, 37.672000 ], [ -121.963692, 37.671525 ], [ -121.963778, 37.671491 ], [ -121.964078, 37.671491 ], [ -121.965408, 37.671695 ], [ -121.965923, 37.671695 ], [ -121.966395, 37.671661 ], [ -121.967468, 37.671423 ], [ -121.967897, 37.671457 ], [ -121.969228, 37.672034 ], [ -121.969743, 37.672170 ], [ -121.970730, 37.672748 ], [ -121.971202, 37.673257 ], [ -121.971459, 37.673427 ], [ -121.972361, 37.673733 ], [ -121.972876, 37.674038 ], [ -121.973348, 37.674140 ], [ -121.973605, 37.674140 ], [ -121.974506, 37.674004 ], [ -121.974850, 37.674038 ], [ -121.975064, 37.674208 ], [ -121.975493, 37.674854 ], [ -121.976051, 37.675193 ], [ -121.976738, 37.675431 ], [ -121.976953, 37.675601 ], [ -121.976953, 37.675771 ], [ -121.976781, 37.676212 ], [ -121.976867, 37.676552 ], [ -121.978283, 37.677843 ], [ -121.978455, 37.678386 ], [ -121.978755, 37.678828 ], [ -121.978970, 37.678963 ], [ -121.979356, 37.678997 ], [ -121.981459, 37.684398 ], [ -121.983519, 37.689084 ], [ -121.984119, 37.689118 ], [ -121.984420, 37.689016 ], [ -121.984849, 37.688507 ], [ -121.985278, 37.688235 ], [ -121.985493, 37.687998 ], [ -121.985836, 37.687930 ], [ -121.986222, 37.687726 ], [ -121.986866, 37.687692 ], [ -121.987982, 37.687828 ], [ -121.988497, 37.688032 ], [ -121.989398, 37.688269 ], [ -121.990085, 37.688643 ], [ -121.991372, 37.688915 ], [ -121.992188, 37.689526 ], [ -121.992831, 37.689967 ], [ -121.993904, 37.690239 ], [ -121.994462, 37.690307 ], [ -121.995621, 37.690205 ], [ -121.995621, 37.702939 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450502", "GEOID10": "06001450502", "NAME10": "4505.02", "NAMELSAD10": "Census Tract 4505.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11180474, "AWATER10": 3336, "INTPTLAT10": "+37.7144480", "INTPTLON10": "-121.9692968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.941762, 37.721306 ], [ -121.940904, 37.718590 ], [ -121.939487, 37.713905 ], [ -121.940002, 37.713804 ], [ -121.941247, 37.713838 ], [ -121.942105, 37.713600 ], [ -121.942878, 37.713634 ], [ -121.942964, 37.713498 ], [ -121.942964, 37.713091 ], [ -121.944036, 37.713057 ], [ -121.944852, 37.713125 ], [ -121.945238, 37.713226 ], [ -121.945281, 37.712514 ], [ -121.945624, 37.712581 ], [ -121.946654, 37.712581 ], [ -121.946912, 37.712514 ], [ -121.947126, 37.712378 ], [ -121.947384, 37.711970 ], [ -121.947341, 37.711529 ], [ -121.946955, 37.711020 ], [ -121.948113, 37.710477 ], [ -121.948028, 37.709186 ], [ -121.947856, 37.708881 ], [ -121.946311, 37.707828 ], [ -121.946568, 37.707047 ], [ -121.946611, 37.706402 ], [ -121.946526, 37.705893 ], [ -121.945968, 37.704195 ], [ -121.946011, 37.703143 ], [ -121.945839, 37.702498 ], [ -121.944852, 37.700698 ], [ -121.944551, 37.700257 ], [ -121.943951, 37.699747 ], [ -121.943908, 37.699611 ], [ -121.941376, 37.700291 ], [ -121.939702, 37.700868 ], [ -121.938715, 37.701139 ], [ -121.935797, 37.702090 ], [ -121.934981, 37.698525 ], [ -121.935668, 37.698457 ], [ -121.938200, 37.698457 ], [ -121.955323, 37.698627 ], [ -121.957426, 37.698593 ], [ -121.958456, 37.698559 ], [ -121.962919, 37.697778 ], [ -121.964035, 37.697608 ], [ -121.965451, 37.697472 ], [ -121.967983, 37.697370 ], [ -121.970172, 37.697438 ], [ -121.973133, 37.697744 ], [ -121.982532, 37.699374 ], [ -121.987166, 37.699917 ], [ -121.987681, 37.700019 ], [ -121.989398, 37.700562 ], [ -121.992188, 37.701785 ], [ -121.994033, 37.702498 ], [ -121.995621, 37.702939 ], [ -121.995621, 37.708575 ], [ -121.992188, 37.711529 ], [ -121.991115, 37.712547 ], [ -121.984205, 37.718590 ], [ -121.981072, 37.721306 ], [ -121.963949, 37.721306 ], [ -121.960773, 37.718624 ], [ -121.950345, 37.720933 ], [ -121.948929, 37.721306 ], [ -121.941762, 37.721306 ] ] ] } } , @@ -3490,7 +3490,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450602", "GEOID10": "06001450602", "NAME10": "4506.02", "NAMELSAD10": "Census Tract 4506.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6195109, "AWATER10": 0, "INTPTLAT10": "+37.6706482", "INTPTLON10": "-121.9128234" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.922579, 37.701139 ], [ -121.922235, 37.700087 ], [ -121.919532, 37.693329 ], [ -121.914296, 37.679847 ], [ -121.910520, 37.670336 ], [ -121.910262, 37.669554 ], [ -121.908631, 37.665478 ], [ -121.908031, 37.664289 ], [ -121.907558, 37.663474 ], [ -121.906486, 37.661945 ], [ -121.905327, 37.660586 ], [ -121.891594, 37.647403 ], [ -121.885672, 37.641660 ], [ -121.885157, 37.641083 ], [ -121.884727, 37.640505 ], [ -121.884427, 37.639961 ], [ -121.885757, 37.639281 ], [ -121.886487, 37.638840 ], [ -121.886659, 37.638670 ], [ -121.891122, 37.637378 ], [ -121.891379, 37.637786 ], [ -121.891637, 37.638024 ], [ -121.895285, 37.640607 ], [ -121.897388, 37.641966 ], [ -121.898932, 37.642714 ], [ -121.899233, 37.642952 ], [ -121.899490, 37.643257 ], [ -121.900520, 37.644956 ], [ -121.903481, 37.646961 ], [ -121.904039, 37.647539 ], [ -121.906743, 37.652228 ], [ -121.907816, 37.654335 ], [ -121.910777, 37.659533 ], [ -121.911592, 37.660416 ], [ -121.913652, 37.662251 ], [ -121.914897, 37.663610 ], [ -121.915712, 37.663678 ], [ -121.916313, 37.664731 ], [ -121.917472, 37.665784 ], [ -121.918287, 37.666769 ], [ -121.919060, 37.667856 ], [ -121.919231, 37.668433 ], [ -121.919274, 37.669962 ], [ -121.920004, 37.672272 ], [ -121.920176, 37.673087 ], [ -121.920691, 37.673801 ], [ -121.921120, 37.675397 ], [ -121.923394, 37.680730 ], [ -121.924038, 37.681477 ], [ -121.924767, 37.682156 ], [ -121.925240, 37.682428 ], [ -121.927385, 37.683073 ], [ -121.927385, 37.683175 ], [ -121.927857, 37.683379 ], [ -121.928372, 37.683752 ], [ -121.928759, 37.684092 ], [ -121.929188, 37.684635 ], [ -121.929574, 37.685383 ], [ -121.929660, 37.686537 ], [ -121.929617, 37.686979 ], [ -121.929746, 37.687692 ], [ -121.930089, 37.688473 ], [ -121.931634, 37.691224 ], [ -121.931763, 37.691360 ], [ -121.932578, 37.693024 ], [ -121.934295, 37.695876 ], [ -121.934638, 37.696895 ], [ -121.934981, 37.698525 ], [ -121.934466, 37.698559 ], [ -121.932707, 37.698864 ], [ -121.926527, 37.700291 ], [ -121.922579, 37.701139 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435103", "GEOID10": "06001435103", "NAME10": "4351.03", "NAMELSAD10": "Census Tract 4351.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 51492700, "AWATER10": 0, "INTPTLAT10": "+37.6518042", "INTPTLON10": "-121.9830876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.994462, 37.690307 ], [ -121.993904, 37.690239 ], [ -121.992831, 37.689967 ], [ -121.992188, 37.689526 ], [ -121.991372, 37.688915 ], [ -121.990085, 37.688643 ], [ -121.989398, 37.688269 ], [ -121.988497, 37.688032 ], [ -121.987982, 37.687828 ], [ -121.986866, 37.687692 ], [ -121.986222, 37.687726 ], [ -121.985836, 37.687930 ], [ -121.985493, 37.687998 ], [ -121.985278, 37.688235 ], [ -121.984849, 37.688507 ], [ -121.984420, 37.689016 ], [ -121.984119, 37.689118 ], [ -121.983519, 37.689084 ], [ -121.981459, 37.684398 ], [ -121.979356, 37.678997 ], [ -121.978970, 37.678963 ], [ -121.978755, 37.678828 ], [ -121.978455, 37.678386 ], [ -121.978283, 37.677843 ], [ -121.976867, 37.676552 ], [ -121.976781, 37.676212 ], [ -121.976953, 37.675771 ], [ -121.976953, 37.675601 ], [ -121.976738, 37.675431 ], [ -121.976051, 37.675193 ], [ -121.975493, 37.674854 ], [ -121.975064, 37.674208 ], [ -121.974850, 37.674038 ], [ -121.974506, 37.674004 ], [ -121.973605, 37.674140 ], [ -121.973348, 37.674140 ], [ -121.972876, 37.674038 ], [ -121.972361, 37.673733 ], [ -121.971459, 37.673427 ], [ -121.971202, 37.673257 ], [ -121.970730, 37.672748 ], [ -121.969743, 37.672170 ], [ -121.969228, 37.672034 ], [ -121.967897, 37.671457 ], [ -121.967468, 37.671423 ], [ -121.966395, 37.671661 ], [ -121.965923, 37.671695 ], [ -121.965408, 37.671695 ], [ -121.964078, 37.671491 ], [ -121.963778, 37.671491 ], [ -121.963692, 37.671525 ], [ -121.963477, 37.672000 ], [ -121.963348, 37.671695 ], [ -121.963348, 37.671355 ], [ -121.963391, 37.671253 ], [ -121.963820, 37.671117 ], [ -121.963992, 37.670879 ], [ -121.963820, 37.670166 ], [ -121.963820, 37.669894 ], [ -121.964121, 37.669487 ], [ -121.964722, 37.669011 ], [ -121.965666, 37.668501 ], [ -121.966181, 37.668298 ], [ -121.966352, 37.668162 ], [ -121.966567, 37.667822 ], [ -121.966782, 37.667618 ], [ -121.966825, 37.667312 ], [ -121.966910, 37.667177 ], [ -121.967554, 37.666701 ], [ -121.967597, 37.666565 ], [ -121.967254, 37.665852 ], [ -121.967168, 37.665410 ], [ -121.967254, 37.665172 ], [ -121.967683, 37.664731 ], [ -121.967769, 37.664527 ], [ -121.967897, 37.664119 ], [ -121.967769, 37.663813 ], [ -121.967211, 37.663270 ], [ -121.966567, 37.662930 ], [ -121.964850, 37.662556 ], [ -121.964378, 37.662285 ], [ -121.964164, 37.662081 ], [ -121.964078, 37.661945 ], [ -121.964078, 37.661707 ], [ -121.963863, 37.661469 ], [ -121.963434, 37.661333 ], [ -121.963263, 37.661096 ], [ -121.962318, 37.660518 ], [ -121.962104, 37.660280 ], [ -121.960559, 37.659023 ], [ -121.959915, 37.658649 ], [ -121.959658, 37.658344 ], [ -121.959400, 37.657732 ], [ -121.959100, 37.657494 ], [ -121.958714, 37.657392 ], [ -121.958113, 37.657053 ], [ -121.957340, 37.656713 ], [ -121.956654, 37.656237 ], [ -121.956267, 37.655660 ], [ -121.955624, 37.654946 ], [ -121.955066, 37.654504 ], [ -121.953821, 37.653689 ], [ -121.952620, 37.652704 ], [ -121.951933, 37.652228 ], [ -121.951203, 37.653111 ], [ -121.950817, 37.653519 ], [ -121.950645, 37.653621 ], [ -121.950173, 37.653383 ], [ -121.949959, 37.653179 ], [ -121.949401, 37.652364 ], [ -121.948714, 37.651990 ], [ -121.948586, 37.651582 ], [ -121.948328, 37.651175 ], [ -121.948285, 37.650971 ], [ -121.948371, 37.650903 ], [ -121.948371, 37.650801 ], [ -121.947598, 37.650121 ], [ -121.946783, 37.649850 ], [ -121.945968, 37.649136 ], [ -121.945753, 37.648864 ], [ -121.945753, 37.648456 ], [ -121.945624, 37.647981 ], [ -121.945152, 37.647437 ], [ -121.944766, 37.647165 ], [ -121.944251, 37.646995 ], [ -121.943865, 37.646621 ], [ -121.943607, 37.646520 ], [ -121.941934, 37.644956 ], [ -121.941719, 37.644549 ], [ -121.941676, 37.644311 ], [ -121.941462, 37.643971 ], [ -121.941504, 37.643529 ], [ -121.941719, 37.643189 ], [ -121.941633, 37.643121 ], [ -121.941419, 37.643155 ], [ -121.940346, 37.642952 ], [ -121.939187, 37.642340 ], [ -121.939144, 37.642068 ], [ -121.939230, 37.641966 ], [ -121.939573, 37.641830 ], [ -121.939573, 37.641660 ], [ -121.938844, 37.640879 ], [ -121.938844, 37.640675 ], [ -121.938715, 37.640233 ], [ -121.938629, 37.640131 ], [ -121.938372, 37.640029 ], [ -121.937985, 37.639689 ], [ -121.937642, 37.639519 ], [ -121.937170, 37.639485 ], [ -121.936312, 37.639247 ], [ -121.935840, 37.638704 ], [ -121.935410, 37.638330 ], [ -121.935239, 37.638058 ], [ -121.935239, 37.637650 ], [ -121.934896, 37.637208 ], [ -121.934767, 37.636835 ], [ -121.934295, 37.636325 ], [ -121.934166, 37.635611 ], [ -121.934166, 37.635407 ], [ -121.934295, 37.635033 ], [ -121.933222, 37.634184 ], [ -121.932964, 37.634048 ], [ -121.932578, 37.633572 ], [ -121.932364, 37.632858 ], [ -121.931977, 37.632620 ], [ -121.931548, 37.632213 ], [ -121.931548, 37.631771 ], [ -121.931334, 37.631023 ], [ -121.931076, 37.630615 ], [ -121.930990, 37.630547 ], [ -121.930046, 37.630309 ], [ -121.929531, 37.629935 ], [ -121.929231, 37.629324 ], [ -121.929231, 37.629052 ], [ -121.929059, 37.628916 ], [ -121.928844, 37.628848 ], [ -121.927814, 37.628848 ], [ -121.927600, 37.628678 ], [ -121.927557, 37.628440 ], [ -121.927342, 37.628032 ], [ -121.926827, 37.627522 ], [ -121.926742, 37.627318 ], [ -121.926098, 37.626435 ], [ -121.926012, 37.625891 ], [ -121.926098, 37.624837 ], [ -121.925969, 37.624667 ], [ -121.925626, 37.624531 ], [ -121.925540, 37.624395 ], [ -121.925626, 37.623987 ], [ -121.925626, 37.623511 ], [ -121.925111, 37.621914 ], [ -121.923952, 37.618923 ], [ -121.922064, 37.618617 ], [ -121.916957, 37.614639 ], [ -121.911464, 37.608622 ], [ -121.909275, 37.607942 ], [ -121.908588, 37.606446 ], [ -121.904769, 37.603726 ], [ -121.904469, 37.602128 ], [ -121.902452, 37.601244 ], [ -121.902752, 37.600632 ], [ -121.896958, 37.597742 ], [ -121.897388, 37.597436 ], [ -121.896358, 37.597334 ], [ -121.897774, 37.595736 ], [ -121.898460, 37.595328 ], [ -121.896958, 37.594512 ], [ -121.896186, 37.594002 ], [ -121.897774, 37.594206 ], [ -121.902666, 37.595464 ], [ -121.904125, 37.595668 ], [ -121.905198, 37.595668 ], [ -121.906056, 37.595532 ], [ -121.909533, 37.594342 ], [ -121.911936, 37.593662 ], [ -121.912451, 37.593662 ], [ -121.914124, 37.593832 ], [ -121.917429, 37.595056 ], [ -121.920691, 37.597368 ], [ -121.921077, 37.598014 ], [ -121.921334, 37.598150 ], [ -121.922450, 37.598626 ], [ -121.923695, 37.598898 ], [ -121.924467, 37.599034 ], [ -121.925282, 37.599000 ], [ -121.925840, 37.598864 ], [ -121.926527, 37.598592 ], [ -121.927085, 37.598150 ], [ -121.928158, 37.596994 ], [ -121.929660, 37.596280 ], [ -121.929960, 37.596076 ], [ -121.930218, 37.595804 ], [ -121.930475, 37.595396 ], [ -121.931462, 37.593050 ], [ -121.931977, 37.592369 ], [ -121.932535, 37.591859 ], [ -121.932878, 37.591655 ], [ -121.934338, 37.591111 ], [ -121.934724, 37.591009 ], [ -121.935883, 37.590975 ], [ -121.936312, 37.591145 ], [ -121.936784, 37.591621 ], [ -121.937256, 37.592233 ], [ -121.937513, 37.592846 ], [ -121.938114, 37.594920 ], [ -121.938157, 37.595940 ], [ -121.937943, 37.597130 ], [ -121.937943, 37.597436 ], [ -121.938071, 37.597810 ], [ -121.938372, 37.598150 ], [ -121.939230, 37.598660 ], [ -121.939702, 37.598864 ], [ -121.940217, 37.598864 ], [ -121.941376, 37.598490 ], [ -121.942663, 37.597912 ], [ -121.943650, 37.597640 ], [ -121.944723, 37.597504 ], [ -121.945710, 37.597470 ], [ -121.946526, 37.597640 ], [ -121.946955, 37.597844 ], [ -121.946998, 37.597912 ], [ -121.946054, 37.597912 ], [ -121.945882, 37.598014 ], [ -121.945882, 37.598218 ], [ -121.946955, 37.599816 ], [ -121.947341, 37.600564 ], [ -121.947813, 37.601210 ], [ -121.948028, 37.602366 ], [ -121.948285, 37.603114 ], [ -121.948242, 37.603658 ], [ -121.947899, 37.604304 ], [ -121.947684, 37.604576 ], [ -121.945539, 37.606684 ], [ -121.945539, 37.607602 ], [ -121.945195, 37.608384 ], [ -121.945195, 37.608622 ], [ -121.945410, 37.609064 ], [ -121.945324, 37.609370 ], [ -121.943951, 37.610118 ], [ -121.942749, 37.610186 ], [ -121.942363, 37.610390 ], [ -121.942234, 37.610526 ], [ -121.942277, 37.610764 ], [ -121.942406, 37.610968 ], [ -121.942406, 37.611070 ], [ -121.942277, 37.611240 ], [ -121.942062, 37.611274 ], [ -121.941676, 37.611172 ], [ -121.941504, 37.611172 ], [ -121.941376, 37.611240 ], [ -121.941333, 37.611342 ], [ -121.941462, 37.611682 ], [ -121.941204, 37.611988 ], [ -121.941204, 37.612294 ], [ -121.941075, 37.612600 ], [ -121.940947, 37.613484 ], [ -121.940989, 37.613823 ], [ -121.941376, 37.614129 ], [ -121.941719, 37.614503 ], [ -121.942148, 37.614775 ], [ -121.942663, 37.614809 ], [ -121.943521, 37.614741 ], [ -121.943908, 37.614877 ], [ -121.944251, 37.615183 ], [ -121.945109, 37.616645 ], [ -121.945109, 37.616781 ], [ -121.944938, 37.617087 ], [ -121.944208, 37.617495 ], [ -121.943650, 37.618039 ], [ -121.943479, 37.618311 ], [ -121.943521, 37.618753 ], [ -121.943736, 37.618991 ], [ -121.943822, 37.619704 ], [ -121.943779, 37.620520 ], [ -121.943693, 37.620792 ], [ -121.943479, 37.620962 ], [ -121.943479, 37.621234 ], [ -121.943693, 37.621404 ], [ -121.943693, 37.621812 ], [ -121.943564, 37.622424 ], [ -121.943521, 37.623443 ], [ -121.943264, 37.623851 ], [ -121.943264, 37.624293 ], [ -121.943393, 37.624633 ], [ -121.943650, 37.624939 ], [ -121.943951, 37.625585 ], [ -121.943994, 37.625891 ], [ -121.943779, 37.626129 ], [ -121.943865, 37.626401 ], [ -121.944509, 37.627250 ], [ -121.944766, 37.627386 ], [ -121.945839, 37.628440 ], [ -121.945925, 37.628882 ], [ -121.946096, 37.629052 ], [ -121.946826, 37.629494 ], [ -121.947298, 37.629867 ], [ -121.947470, 37.629935 ], [ -121.948500, 37.630037 ], [ -121.948714, 37.630105 ], [ -121.949058, 37.630343 ], [ -121.949143, 37.630853 ], [ -121.949701, 37.631431 ], [ -121.950345, 37.631805 ], [ -121.950688, 37.631907 ], [ -121.951075, 37.632111 ], [ -121.951246, 37.632247 ], [ -121.951675, 37.633096 ], [ -121.951933, 37.633198 ], [ -121.952534, 37.633300 ], [ -121.952920, 37.633538 ], [ -121.953435, 37.634218 ], [ -121.953692, 37.634761 ], [ -121.953950, 37.634999 ], [ -121.954336, 37.635203 ], [ -121.954508, 37.635747 ], [ -121.954679, 37.635917 ], [ -121.954980, 37.635985 ], [ -121.955409, 37.635951 ], [ -121.955667, 37.636019 ], [ -121.955881, 37.635985 ], [ -121.958885, 37.636155 ], [ -121.959701, 37.636529 ], [ -121.960173, 37.636835 ], [ -121.961031, 37.637752 ], [ -121.961846, 37.638262 ], [ -121.962018, 37.638466 ], [ -121.962619, 37.639757 ], [ -121.963177, 37.640505 ], [ -121.964593, 37.641626 ], [ -121.965709, 37.642272 ], [ -121.965880, 37.642408 ], [ -121.966181, 37.642884 ], [ -121.966524, 37.643121 ], [ -121.967039, 37.643189 ], [ -121.968884, 37.643087 ], [ -121.978283, 37.639417 ], [ -121.981158, 37.635815 ], [ -121.983175, 37.634592 ], [ -121.984591, 37.634728 ], [ -121.985064, 37.634660 ], [ -121.985536, 37.634422 ], [ -121.987424, 37.633980 ], [ -121.988239, 37.633878 ], [ -121.988840, 37.633912 ], [ -121.989870, 37.633844 ], [ -121.990128, 37.633674 ], [ -121.990385, 37.633402 ], [ -121.990986, 37.632179 ], [ -121.991115, 37.631703 ], [ -121.991286, 37.631601 ], [ -121.991372, 37.631363 ], [ -121.991329, 37.630819 ], [ -121.991415, 37.630581 ], [ -121.991544, 37.630445 ], [ -121.991758, 37.630343 ], [ -121.992188, 37.630377 ], [ -121.992574, 37.630513 ], [ -121.993690, 37.630717 ], [ -121.994505, 37.631159 ], [ -121.994934, 37.631227 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690205 ], [ -121.994462, 37.690307 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "435103", "GEOID10": "06001435103", "NAME10": "4351.03", "NAMELSAD10": "Census Tract 4351.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 51492700, "AWATER10": 0, "INTPTLAT10": "+37.6518042", "INTPTLON10": "-121.9830876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.994462, 37.690307 ], [ -121.993904, 37.690239 ], [ -121.992831, 37.689967 ], [ -121.992188, 37.689526 ], [ -121.991372, 37.688915 ], [ -121.990085, 37.688643 ], [ -121.989398, 37.688269 ], [ -121.988497, 37.688032 ], [ -121.987982, 37.687828 ], [ -121.986866, 37.687692 ], [ -121.986222, 37.687726 ], [ -121.985836, 37.687930 ], [ -121.985493, 37.687998 ], [ -121.985278, 37.688235 ], [ -121.984849, 37.688507 ], [ -121.984420, 37.689016 ], [ -121.984119, 37.689118 ], [ -121.983519, 37.689084 ], [ -121.981459, 37.684398 ], [ -121.979356, 37.678997 ], [ -121.978970, 37.678963 ], [ -121.978755, 37.678828 ], [ -121.978455, 37.678386 ], [ -121.978283, 37.677843 ], [ -121.976867, 37.676552 ], [ -121.976781, 37.676212 ], [ -121.976953, 37.675771 ], [ -121.976953, 37.675601 ], [ -121.976738, 37.675431 ], [ -121.976051, 37.675193 ], [ -121.975493, 37.674854 ], [ -121.975064, 37.674208 ], [ -121.974850, 37.674038 ], [ -121.974506, 37.674004 ], [ -121.973605, 37.674140 ], [ -121.973348, 37.674140 ], [ -121.972876, 37.674038 ], [ -121.972361, 37.673733 ], [ -121.971459, 37.673427 ], [ -121.971202, 37.673257 ], [ -121.970730, 37.672748 ], [ -121.969743, 37.672170 ], [ -121.969228, 37.672034 ], [ -121.967897, 37.671457 ], [ -121.967468, 37.671423 ], [ -121.966395, 37.671661 ], [ -121.965923, 37.671695 ], [ -121.965408, 37.671695 ], [ -121.964078, 37.671491 ], [ -121.963778, 37.671491 ], [ -121.963692, 37.671525 ], [ -121.963477, 37.672000 ], [ -121.963348, 37.671695 ], [ -121.963348, 37.671355 ], [ -121.963391, 37.671253 ], [ -121.963820, 37.671117 ], [ -121.963992, 37.670879 ], [ -121.963820, 37.670166 ], [ -121.963820, 37.669894 ], [ -121.964121, 37.669487 ], [ -121.964722, 37.669011 ], [ -121.965666, 37.668501 ], [ -121.966181, 37.668298 ], [ -121.966352, 37.668162 ], [ -121.966567, 37.667822 ], [ -121.966782, 37.667618 ], [ -121.966825, 37.667312 ], [ -121.966910, 37.667177 ], [ -121.967554, 37.666701 ], [ -121.967597, 37.666565 ], [ -121.967254, 37.665852 ], [ -121.967168, 37.665410 ], [ -121.967254, 37.665172 ], [ -121.967683, 37.664731 ], [ -121.967769, 37.664527 ], [ -121.967897, 37.664119 ], [ -121.967769, 37.663813 ], [ -121.967211, 37.663270 ], [ -121.966567, 37.662930 ], [ -121.964850, 37.662556 ], [ -121.964378, 37.662285 ], [ -121.964164, 37.662081 ], [ -121.964078, 37.661945 ], [ -121.964078, 37.661707 ], [ -121.963863, 37.661469 ], [ -121.963434, 37.661333 ], [ -121.963134, 37.660994 ], [ -121.962276, 37.660518 ], [ -121.962104, 37.660280 ], [ -121.961460, 37.659737 ], [ -121.960559, 37.659023 ], [ -121.959915, 37.658649 ], [ -121.959658, 37.658344 ], [ -121.959400, 37.657732 ], [ -121.959100, 37.657494 ], [ -121.958714, 37.657392 ], [ -121.958113, 37.657053 ], [ -121.957340, 37.656713 ], [ -121.956654, 37.656237 ], [ -121.956267, 37.655660 ], [ -121.955624, 37.654946 ], [ -121.955066, 37.654504 ], [ -121.953821, 37.653689 ], [ -121.952620, 37.652704 ], [ -121.951933, 37.652228 ], [ -121.951203, 37.653111 ], [ -121.950817, 37.653519 ], [ -121.950645, 37.653621 ], [ -121.950173, 37.653383 ], [ -121.949959, 37.653179 ], [ -121.949401, 37.652364 ], [ -121.948714, 37.651990 ], [ -121.948586, 37.651582 ], [ -121.948328, 37.651175 ], [ -121.948285, 37.650971 ], [ -121.948371, 37.650903 ], [ -121.948371, 37.650801 ], [ -121.947598, 37.650121 ], [ -121.946783, 37.649850 ], [ -121.945968, 37.649136 ], [ -121.945753, 37.648864 ], [ -121.945753, 37.648456 ], [ -121.945624, 37.647981 ], [ -121.945152, 37.647437 ], [ -121.944766, 37.647165 ], [ -121.944251, 37.646995 ], [ -121.943865, 37.646621 ], [ -121.943607, 37.646520 ], [ -121.941934, 37.644956 ], [ -121.941719, 37.644549 ], [ -121.941676, 37.644311 ], [ -121.941462, 37.643971 ], [ -121.941504, 37.643529 ], [ -121.941719, 37.643189 ], [ -121.941633, 37.643121 ], [ -121.941419, 37.643155 ], [ -121.940346, 37.642952 ], [ -121.939187, 37.642340 ], [ -121.939144, 37.642068 ], [ -121.939230, 37.641966 ], [ -121.939573, 37.641830 ], [ -121.939573, 37.641660 ], [ -121.938844, 37.640879 ], [ -121.938844, 37.640675 ], [ -121.938715, 37.640233 ], [ -121.938629, 37.640131 ], [ -121.938372, 37.640029 ], [ -121.937985, 37.639689 ], [ -121.937642, 37.639519 ], [ -121.937170, 37.639485 ], [ -121.936312, 37.639247 ], [ -121.935840, 37.638704 ], [ -121.935410, 37.638330 ], [ -121.935239, 37.638058 ], [ -121.935239, 37.637650 ], [ -121.934896, 37.637208 ], [ -121.934767, 37.636835 ], [ -121.934295, 37.636325 ], [ -121.934166, 37.635611 ], [ -121.934166, 37.635407 ], [ -121.934295, 37.635033 ], [ -121.933222, 37.634184 ], [ -121.932964, 37.634048 ], [ -121.932578, 37.633572 ], [ -121.932364, 37.632858 ], [ -121.931977, 37.632620 ], [ -121.931548, 37.632213 ], [ -121.931548, 37.631771 ], [ -121.931334, 37.631023 ], [ -121.931076, 37.630615 ], [ -121.930990, 37.630547 ], [ -121.930046, 37.630309 ], [ -121.929531, 37.629935 ], [ -121.929231, 37.629324 ], [ -121.929231, 37.629052 ], [ -121.929059, 37.628916 ], [ -121.928844, 37.628848 ], [ -121.927814, 37.628848 ], [ -121.927600, 37.628678 ], [ -121.927557, 37.628440 ], [ -121.927342, 37.628032 ], [ -121.926827, 37.627522 ], [ -121.926742, 37.627318 ], [ -121.926098, 37.626435 ], [ -121.926012, 37.625891 ], [ -121.926098, 37.624837 ], [ -121.925969, 37.624667 ], [ -121.925626, 37.624531 ], [ -121.925540, 37.624395 ], [ -121.925626, 37.623987 ], [ -121.925626, 37.623511 ], [ -121.925111, 37.621914 ], [ -121.923952, 37.618923 ], [ -121.922064, 37.618617 ], [ -121.916957, 37.614639 ], [ -121.911464, 37.608622 ], [ -121.909275, 37.607942 ], [ -121.908588, 37.606446 ], [ -121.904769, 37.603726 ], [ -121.904469, 37.602128 ], [ -121.902452, 37.601244 ], [ -121.902752, 37.600632 ], [ -121.896958, 37.597742 ], [ -121.897388, 37.597436 ], [ -121.896358, 37.597334 ], [ -121.897774, 37.595736 ], [ -121.898460, 37.595328 ], [ -121.896958, 37.594512 ], [ -121.896186, 37.594002 ], [ -121.897774, 37.594206 ], [ -121.902666, 37.595464 ], [ -121.904125, 37.595668 ], [ -121.905198, 37.595668 ], [ -121.906056, 37.595532 ], [ -121.909533, 37.594342 ], [ -121.911936, 37.593662 ], [ -121.912451, 37.593662 ], [ -121.914124, 37.593832 ], [ -121.917429, 37.595056 ], [ -121.920691, 37.597368 ], [ -121.921077, 37.598014 ], [ -121.921334, 37.598150 ], [ -121.922450, 37.598626 ], [ -121.923695, 37.598898 ], [ -121.924467, 37.599034 ], [ -121.925282, 37.599000 ], [ -121.925840, 37.598864 ], [ -121.926527, 37.598592 ], [ -121.927085, 37.598150 ], [ -121.928158, 37.596994 ], [ -121.929660, 37.596280 ], [ -121.929960, 37.596076 ], [ -121.930218, 37.595804 ], [ -121.930475, 37.595396 ], [ -121.931462, 37.593050 ], [ -121.931977, 37.592369 ], [ -121.932535, 37.591859 ], [ -121.932878, 37.591655 ], [ -121.934338, 37.591111 ], [ -121.934724, 37.591009 ], [ -121.935883, 37.590975 ], [ -121.936312, 37.591145 ], [ -121.936784, 37.591621 ], [ -121.937256, 37.592233 ], [ -121.937513, 37.592846 ], [ -121.938114, 37.594920 ], [ -121.938157, 37.595940 ], [ -121.937943, 37.597130 ], [ -121.937943, 37.597436 ], [ -121.938071, 37.597810 ], [ -121.938372, 37.598150 ], [ -121.939230, 37.598660 ], [ -121.939702, 37.598864 ], [ -121.940217, 37.598864 ], [ -121.941376, 37.598490 ], [ -121.942663, 37.597912 ], [ -121.943650, 37.597640 ], [ -121.944723, 37.597504 ], [ -121.945710, 37.597470 ], [ -121.946526, 37.597640 ], [ -121.946955, 37.597844 ], [ -121.946998, 37.597912 ], [ -121.946054, 37.597912 ], [ -121.945882, 37.598014 ], [ -121.945882, 37.598218 ], [ -121.946955, 37.599816 ], [ -121.947341, 37.600564 ], [ -121.947813, 37.601210 ], [ -121.948028, 37.602366 ], [ -121.948285, 37.603114 ], [ -121.948242, 37.603658 ], [ -121.947899, 37.604304 ], [ -121.947684, 37.604576 ], [ -121.945539, 37.606684 ], [ -121.945539, 37.607602 ], [ -121.945195, 37.608384 ], [ -121.945195, 37.608622 ], [ -121.945410, 37.609064 ], [ -121.945324, 37.609370 ], [ -121.943951, 37.610118 ], [ -121.942749, 37.610186 ], [ -121.942363, 37.610390 ], [ -121.942234, 37.610526 ], [ -121.942277, 37.610764 ], [ -121.942406, 37.610968 ], [ -121.942406, 37.611070 ], [ -121.942277, 37.611240 ], [ -121.942062, 37.611274 ], [ -121.941676, 37.611172 ], [ -121.941504, 37.611172 ], [ -121.941376, 37.611240 ], [ -121.941333, 37.611342 ], [ -121.941462, 37.611682 ], [ -121.941204, 37.611988 ], [ -121.941204, 37.612294 ], [ -121.941075, 37.612600 ], [ -121.940947, 37.613484 ], [ -121.940989, 37.613823 ], [ -121.941376, 37.614129 ], [ -121.941719, 37.614503 ], [ -121.942148, 37.614775 ], [ -121.942663, 37.614809 ], [ -121.943521, 37.614741 ], [ -121.943908, 37.614877 ], [ -121.944251, 37.615183 ], [ -121.945109, 37.616645 ], [ -121.945109, 37.616781 ], [ -121.944938, 37.617087 ], [ -121.944208, 37.617495 ], [ -121.943650, 37.618039 ], [ -121.943479, 37.618311 ], [ -121.943521, 37.618753 ], [ -121.943736, 37.618991 ], [ -121.943822, 37.619704 ], [ -121.943779, 37.620520 ], [ -121.943693, 37.620792 ], [ -121.943479, 37.620962 ], [ -121.943479, 37.621234 ], [ -121.943693, 37.621404 ], [ -121.943693, 37.621812 ], [ -121.943564, 37.622424 ], [ -121.943521, 37.623443 ], [ -121.943264, 37.623851 ], [ -121.943264, 37.624293 ], [ -121.943393, 37.624633 ], [ -121.943650, 37.624939 ], [ -121.943951, 37.625585 ], [ -121.943994, 37.625891 ], [ -121.943779, 37.626129 ], [ -121.943865, 37.626401 ], [ -121.944509, 37.627250 ], [ -121.944766, 37.627386 ], [ -121.945839, 37.628440 ], [ -121.945925, 37.628882 ], [ -121.946096, 37.629052 ], [ -121.946826, 37.629494 ], [ -121.947298, 37.629867 ], [ -121.947470, 37.629935 ], [ -121.948500, 37.630037 ], [ -121.948714, 37.630105 ], [ -121.949058, 37.630343 ], [ -121.949143, 37.630853 ], [ -121.949701, 37.631431 ], [ -121.950345, 37.631805 ], [ -121.950688, 37.631907 ], [ -121.951075, 37.632111 ], [ -121.951246, 37.632247 ], [ -121.951675, 37.633096 ], [ -121.951933, 37.633198 ], [ -121.952534, 37.633300 ], [ -121.952920, 37.633538 ], [ -121.953435, 37.634218 ], [ -121.953692, 37.634761 ], [ -121.953950, 37.634999 ], [ -121.954336, 37.635203 ], [ -121.954508, 37.635747 ], [ -121.954679, 37.635917 ], [ -121.954980, 37.635985 ], [ -121.955409, 37.635951 ], [ -121.955667, 37.636019 ], [ -121.955881, 37.635985 ], [ -121.958885, 37.636155 ], [ -121.959701, 37.636529 ], [ -121.960173, 37.636835 ], [ -121.961031, 37.637752 ], [ -121.961846, 37.638262 ], [ -121.962018, 37.638466 ], [ -121.962619, 37.639757 ], [ -121.963177, 37.640505 ], [ -121.964593, 37.641626 ], [ -121.965709, 37.642272 ], [ -121.965880, 37.642408 ], [ -121.966181, 37.642884 ], [ -121.966524, 37.643121 ], [ -121.967039, 37.643189 ], [ -121.968884, 37.643087 ], [ -121.978283, 37.639417 ], [ -121.981158, 37.635815 ], [ -121.983175, 37.634592 ], [ -121.984591, 37.634728 ], [ -121.985064, 37.634660 ], [ -121.985536, 37.634422 ], [ -121.987424, 37.633980 ], [ -121.988239, 37.633878 ], [ -121.988840, 37.633912 ], [ -121.989870, 37.633844 ], [ -121.990128, 37.633674 ], [ -121.990385, 37.633402 ], [ -121.990986, 37.632179 ], [ -121.991115, 37.631703 ], [ -121.991286, 37.631601 ], [ -121.991372, 37.631363 ], [ -121.991329, 37.630819 ], [ -121.991415, 37.630581 ], [ -121.991544, 37.630445 ], [ -121.991758, 37.630343 ], [ -121.992188, 37.630377 ], [ -121.992574, 37.630513 ], [ -121.993690, 37.630717 ], [ -121.994505, 37.631159 ], [ -121.994934, 37.631227 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690205 ], [ -121.994462, 37.690307 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.920819, 37.721306 ], [ -121.918416, 37.718590 ], [ -121.914425, 37.714177 ], [ -121.912751, 37.712615 ], [ -121.910391, 37.710578 ], [ -121.908889, 37.709424 ], [ -121.904254, 37.706097 ], [ -121.903009, 37.705112 ], [ -121.900477, 37.703313 ], [ -121.899018, 37.702226 ], [ -121.898675, 37.701886 ], [ -121.906486, 37.701886 ], [ -121.907086, 37.701717 ], [ -121.907215, 37.701886 ], [ -121.911635, 37.701988 ], [ -121.916442, 37.702022 ], [ -121.919961, 37.701920 ], [ -121.922579, 37.701139 ], [ -121.923308, 37.702871 ], [ -121.923695, 37.703584 ], [ -121.924381, 37.704637 ], [ -121.925068, 37.705520 ], [ -121.923866, 37.705859 ], [ -121.923523, 37.705893 ], [ -121.923952, 37.706233 ], [ -121.926699, 37.709560 ], [ -121.927257, 37.710612 ], [ -121.927342, 37.710918 ], [ -121.927557, 37.711970 ], [ -121.927600, 37.712615 ], [ -121.927085, 37.714347 ], [ -121.926742, 37.718590 ], [ -121.926656, 37.719100 ], [ -121.926527, 37.721306 ], [ -121.920819, 37.721306 ] ] ] } } , @@ -3500,7 +3500,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450750", "GEOID10": "06001450750", "NAME10": "4507.50", "NAMELSAD10": "Census Tract 4507.50", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1693291, "AWATER10": 0, "INTPTLAT10": "+37.7053403", "INTPTLON10": "-121.8611155" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.852798, 37.710137 ], [ -121.851854, 37.710069 ], [ -121.851726, 37.709764 ], [ -121.850481, 37.708507 ], [ -121.850395, 37.708270 ], [ -121.850524, 37.703448 ], [ -121.850481, 37.702701 ], [ -121.849794, 37.702735 ], [ -121.849408, 37.702633 ], [ -121.849065, 37.702498 ], [ -121.848207, 37.701954 ], [ -121.847219, 37.701581 ], [ -121.845503, 37.701411 ], [ -121.844988, 37.701309 ], [ -121.849494, 37.701343 ], [ -121.851468, 37.701411 ], [ -121.857219, 37.701411 ], [ -121.872196, 37.701581 ], [ -121.872110, 37.705520 ], [ -121.872025, 37.706504 ], [ -121.872025, 37.710035 ], [ -121.866746, 37.709730 ], [ -121.862798, 37.708813 ], [ -121.861124, 37.708541 ], [ -121.859879, 37.708507 ], [ -121.859536, 37.708372 ], [ -121.858120, 37.708473 ], [ -121.857262, 37.708643 ], [ -121.853828, 37.710001 ], [ -121.852798, 37.710137 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450604", "GEOID10": "06001450604", "NAME10": "4506.04", "NAMELSAD10": "Census Tract 4506.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2112934, "AWATER10": 0, "INTPTLAT10": "+37.6811899", "INTPTLON10": "-121.8865529" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.878161, 37.688881 ], [ -121.877046, 37.685349 ], [ -121.875329, 37.680492 ], [ -121.874599, 37.678216 ], [ -121.874342, 37.677741 ], [ -121.873999, 37.676722 ], [ -121.894984, 37.676756 ], [ -121.895843, 37.676722 ], [ -121.896315, 37.676586 ], [ -121.896529, 37.676484 ], [ -121.897044, 37.676008 ], [ -121.902795, 37.679643 ], [ -121.903224, 37.680016 ], [ -121.903396, 37.680288 ], [ -121.895928, 37.682598 ], [ -121.889791, 37.684975 ], [ -121.887646, 37.685926 ], [ -121.885886, 37.686605 ], [ -121.883311, 37.687420 ], [ -121.878161, 37.688881 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450604", "GEOID10": "06001450604", "NAME10": "4506.04", "NAMELSAD10": "Census Tract 4506.04", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2112934, "AWATER10": 0, "INTPTLAT10": "+37.6811899", "INTPTLON10": "-121.8865529" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.878161, 37.688881 ], [ -121.877046, 37.685349 ], [ -121.874986, 37.679371 ], [ -121.873999, 37.676722 ], [ -121.894984, 37.676756 ], [ -121.895843, 37.676722 ], [ -121.896315, 37.676586 ], [ -121.896529, 37.676484 ], [ -121.897044, 37.676008 ], [ -121.902452, 37.679405 ], [ -121.903095, 37.679881 ], [ -121.903396, 37.680288 ], [ -121.895928, 37.682598 ], [ -121.889791, 37.684975 ], [ -121.887646, 37.685926 ], [ -121.885886, 37.686605 ], [ -121.883311, 37.687420 ], [ -121.878161, 37.688881 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450743", "GEOID10": "06001450743", "NAME10": "4507.43", "NAMELSAD10": "Census Tract 4507.43", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4292033, "AWATER10": 0, "INTPTLAT10": "+37.6930366", "INTPTLON10": "-121.8923831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.898031, 37.701886 ], [ -121.896615, 37.701819 ], [ -121.891680, 37.701751 ], [ -121.878805, 37.701683 ], [ -121.878848, 37.701038 ], [ -121.878676, 37.697302 ], [ -121.878676, 37.696589 ], [ -121.878762, 37.696487 ], [ -121.878762, 37.694925 ], [ -121.878719, 37.694722 ], [ -121.878633, 37.694654 ], [ -121.878333, 37.694484 ], [ -121.878119, 37.694450 ], [ -121.878290, 37.694110 ], [ -121.878419, 37.693601 ], [ -121.878419, 37.692990 ], [ -121.878290, 37.690137 ], [ -121.877947, 37.688949 ], [ -121.883311, 37.687420 ], [ -121.885886, 37.686605 ], [ -121.887646, 37.685926 ], [ -121.889791, 37.684975 ], [ -121.895928, 37.682598 ], [ -121.903396, 37.680288 ], [ -121.903696, 37.680730 ], [ -121.903782, 37.681307 ], [ -121.903782, 37.682224 ], [ -121.903653, 37.682937 ], [ -121.903567, 37.688201 ], [ -121.903610, 37.690579 ], [ -121.903524, 37.692107 ], [ -121.903439, 37.696895 ], [ -121.903481, 37.697438 ], [ -121.903567, 37.697744 ], [ -121.903954, 37.698287 ], [ -121.906400, 37.701207 ], [ -121.906743, 37.701581 ], [ -121.907086, 37.701717 ], [ -121.906486, 37.701886 ], [ -121.898031, 37.701886 ] ] ] } } , @@ -3514,7 +3514,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450744", "GEOID10": "06001450744", "NAME10": "4507.44", "NAMELSAD10": "Census Tract 4507.44", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2609531, "AWATER10": 0, "INTPTLAT10": "+37.6969336", "INTPTLON10": "-121.8650777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.878805, 37.701683 ], [ -121.871080, 37.701547 ], [ -121.860523, 37.701479 ], [ -121.857219, 37.701411 ], [ -121.851468, 37.701411 ], [ -121.849494, 37.701343 ], [ -121.848378, 37.699815 ], [ -121.848249, 37.698898 ], [ -121.848292, 37.694891 ], [ -121.848679, 37.694586 ], [ -121.848722, 37.693873 ], [ -121.858592, 37.694009 ], [ -121.864257, 37.693941 ], [ -121.864901, 37.693737 ], [ -121.866531, 37.693058 ], [ -121.869106, 37.691903 ], [ -121.876059, 37.689492 ], [ -121.877947, 37.688949 ], [ -121.878290, 37.690137 ], [ -121.878419, 37.692990 ], [ -121.878419, 37.693601 ], [ -121.878290, 37.694110 ], [ -121.878119, 37.694450 ], [ -121.878333, 37.694484 ], [ -121.878633, 37.694654 ], [ -121.878719, 37.694722 ], [ -121.878762, 37.694925 ], [ -121.878762, 37.696487 ], [ -121.878676, 37.696589 ], [ -121.878676, 37.697302 ], [ -121.878848, 37.701038 ], [ -121.878805, 37.701683 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450746", "GEOID10": "06001450746", "NAME10": "4507.46", "NAMELSAD10": "Census Tract 4507.46", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1733943, "AWATER10": 0, "INTPTLAT10": "+37.6736928", "INTPTLON10": "-121.8685809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.877303, 37.686164 ], [ -121.876101, 37.685451 ], [ -121.874599, 37.684398 ], [ -121.872110, 37.682530 ], [ -121.870136, 37.681171 ], [ -121.867261, 37.679031 ], [ -121.864557, 37.677129 ], [ -121.863828, 37.676518 ], [ -121.863012, 37.675974 ], [ -121.862712, 37.675737 ], [ -121.862926, 37.675533 ], [ -121.860566, 37.673801 ], [ -121.859279, 37.673019 ], [ -121.858635, 37.672442 ], [ -121.858292, 37.671898 ], [ -121.857862, 37.670438 ], [ -121.859064, 37.670234 ], [ -121.861510, 37.669521 ], [ -121.863828, 37.668467 ], [ -121.864686, 37.667992 ], [ -121.865544, 37.667380 ], [ -121.868076, 37.664934 ], [ -121.868849, 37.665342 ], [ -121.869493, 37.665512 ], [ -121.869707, 37.665512 ], [ -121.870093, 37.665444 ], [ -121.870522, 37.665274 ], [ -121.871209, 37.664833 ], [ -121.871724, 37.664595 ], [ -121.872067, 37.664527 ], [ -121.872411, 37.664527 ], [ -121.874042, 37.664765 ], [ -121.873784, 37.665478 ], [ -121.872797, 37.670947 ], [ -121.872668, 37.672034 ], [ -121.872668, 37.672748 ], [ -121.873741, 37.675805 ], [ -121.874342, 37.677741 ], [ -121.874599, 37.678216 ], [ -121.875329, 37.680492 ], [ -121.877303, 37.686164 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450746", "GEOID10": "06001450746", "NAME10": "4507.46", "NAMELSAD10": "Census Tract 4507.46", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1733943, "AWATER10": 0, "INTPTLAT10": "+37.6736928", "INTPTLON10": "-121.8685809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.877303, 37.686164 ], [ -121.876101, 37.685451 ], [ -121.874599, 37.684398 ], [ -121.872110, 37.682530 ], [ -121.870136, 37.681171 ], [ -121.867261, 37.679031 ], [ -121.864557, 37.677129 ], [ -121.863828, 37.676518 ], [ -121.863012, 37.675974 ], [ -121.862712, 37.675737 ], [ -121.862926, 37.675533 ], [ -121.860566, 37.673801 ], [ -121.859279, 37.673019 ], [ -121.858635, 37.672442 ], [ -121.858292, 37.671898 ], [ -121.857862, 37.670438 ], [ -121.859064, 37.670234 ], [ -121.861510, 37.669521 ], [ -121.863828, 37.668467 ], [ -121.864686, 37.667992 ], [ -121.865544, 37.667380 ], [ -121.868076, 37.664934 ], [ -121.868849, 37.665342 ], [ -121.869493, 37.665512 ], [ -121.869707, 37.665512 ], [ -121.870093, 37.665444 ], [ -121.870522, 37.665274 ], [ -121.871209, 37.664833 ], [ -121.871724, 37.664595 ], [ -121.872067, 37.664527 ], [ -121.872411, 37.664527 ], [ -121.874042, 37.664765 ], [ -121.873784, 37.665478 ], [ -121.872797, 37.670947 ], [ -121.872668, 37.672034 ], [ -121.872668, 37.672748 ], [ -121.873741, 37.675805 ], [ -121.874342, 37.677741 ], [ -121.874514, 37.678046 ], [ -121.874986, 37.679371 ], [ -121.877303, 37.686164 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450741", "GEOID10": "06001450741", "NAME10": "4507.41", "NAMELSAD10": "Census Tract 4507.41", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2097554, "AWATER10": 0, "INTPTLAT10": "+37.6602817", "INTPTLON10": "-121.8647522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.857862, 37.670438 ], [ -121.857562, 37.668773 ], [ -121.857347, 37.667958 ], [ -121.856747, 37.667075 ], [ -121.856060, 37.665580 ], [ -121.856060, 37.664323 ], [ -121.856747, 37.662794 ], [ -121.856961, 37.662522 ], [ -121.858034, 37.659669 ], [ -121.858506, 37.658683 ], [ -121.858807, 37.657121 ], [ -121.859536, 37.655388 ], [ -121.860180, 37.654538 ], [ -121.860867, 37.654097 ], [ -121.862240, 37.653519 ], [ -121.863012, 37.652941 ], [ -121.863785, 37.652092 ], [ -121.864171, 37.651888 ], [ -121.864514, 37.651786 ], [ -121.865158, 37.651752 ], [ -121.866746, 37.652160 ], [ -121.868248, 37.652194 ], [ -121.868849, 37.652262 ], [ -121.869192, 37.652364 ], [ -121.872454, 37.653757 ], [ -121.873784, 37.654606 ], [ -121.874342, 37.654844 ], [ -121.876273, 37.655490 ], [ -121.876745, 37.655728 ], [ -121.877604, 37.656339 ], [ -121.877046, 37.656747 ], [ -121.875672, 37.657936 ], [ -121.873956, 37.656713 ], [ -121.872797, 37.657766 ], [ -121.872067, 37.658480 ], [ -121.873012, 37.659159 ], [ -121.870179, 37.661707 ], [ -121.871209, 37.661979 ], [ -121.866875, 37.666056 ], [ -121.865931, 37.667041 ], [ -121.865201, 37.667652 ], [ -121.863570, 37.668603 ], [ -121.861510, 37.669521 ], [ -121.859064, 37.670234 ], [ -121.857862, 37.670438 ] ] ] } } , @@ -3524,17 +3524,17 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450742", "GEOID10": "06001450742", "NAME10": "4507.42", "NAMELSAD10": "Census Tract 4507.42", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7778001, "AWATER10": 360805, "INTPTLAT10": "+37.6673926", "INTPTLON10": "-121.8275908" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812973, 37.675329 ], [ -121.812973, 37.654980 ], [ -121.814132, 37.655422 ], [ -121.816406, 37.655456 ], [ -121.826792, 37.655524 ], [ -121.831040, 37.659567 ], [ -121.834731, 37.662488 ], [ -121.835332, 37.662862 ], [ -121.836576, 37.663508 ], [ -121.839023, 37.664697 ], [ -121.838036, 37.664425 ], [ -121.838465, 37.664663 ], [ -121.838851, 37.664799 ], [ -121.839495, 37.664901 ], [ -121.840911, 37.664901 ], [ -121.841769, 37.664833 ], [ -121.845760, 37.664901 ], [ -121.845760, 37.664255 ], [ -121.845675, 37.663644 ], [ -121.845417, 37.663066 ], [ -121.844988, 37.662488 ], [ -121.844945, 37.662081 ], [ -121.845031, 37.661707 ], [ -121.845374, 37.661096 ], [ -121.845675, 37.660824 ], [ -121.846232, 37.660484 ], [ -121.845331, 37.659839 ], [ -121.845160, 37.659635 ], [ -121.844687, 37.658785 ], [ -121.844816, 37.658446 ], [ -121.843143, 37.658038 ], [ -121.843314, 37.657766 ], [ -121.844044, 37.657121 ], [ -121.844301, 37.656713 ], [ -121.844773, 37.656849 ], [ -121.846018, 37.656781 ], [ -121.848249, 37.657121 ], [ -121.848936, 37.657121 ], [ -121.849451, 37.656985 ], [ -121.849966, 37.656951 ], [ -121.850824, 37.657019 ], [ -121.851211, 37.657121 ], [ -121.851382, 37.656815 ], [ -121.851425, 37.656577 ], [ -121.851039, 37.655320 ], [ -121.850996, 37.654878 ], [ -121.851640, 37.653825 ], [ -121.851897, 37.653553 ], [ -121.852241, 37.653451 ], [ -121.852970, 37.653451 ], [ -121.853571, 37.653519 ], [ -121.853571, 37.652568 ], [ -121.853957, 37.652500 ], [ -121.854815, 37.652228 ], [ -121.855459, 37.652296 ], [ -121.855845, 37.652500 ], [ -121.857133, 37.653689 ], [ -121.857605, 37.653995 ], [ -121.857991, 37.654131 ], [ -121.858463, 37.654165 ], [ -121.858892, 37.654267 ], [ -121.859965, 37.654810 ], [ -121.859536, 37.655388 ], [ -121.858807, 37.657121 ], [ -121.858506, 37.658683 ], [ -121.858034, 37.659669 ], [ -121.856961, 37.662522 ], [ -121.856747, 37.662794 ], [ -121.856060, 37.664323 ], [ -121.856060, 37.665580 ], [ -121.856747, 37.667075 ], [ -121.857347, 37.667958 ], [ -121.857562, 37.668773 ], [ -121.857862, 37.670438 ], [ -121.854644, 37.670811 ], [ -121.852026, 37.671049 ], [ -121.840611, 37.672374 ], [ -121.832156, 37.673223 ], [ -121.830611, 37.673427 ], [ -121.816406, 37.674955 ], [ -121.812973, 37.675329 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.839495, 37.664901 ], [ -121.838851, 37.664799 ], [ -121.838465, 37.664663 ], [ -121.838036, 37.664425 ], [ -121.839023, 37.664697 ], [ -121.836576, 37.663508 ], [ -121.835332, 37.662862 ], [ -121.834731, 37.662488 ], [ -121.831040, 37.659567 ], [ -121.826792, 37.655524 ], [ -121.816406, 37.655456 ], [ -121.814132, 37.655422 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930690, 37.576692 ], [ -121.929917, 37.577644 ], [ -121.929746, 37.578766 ], [ -121.928072, 37.579413 ], [ -121.927557, 37.579617 ], [ -121.928587, 37.580705 ], [ -121.926956, 37.581895 ], [ -121.929960, 37.584786 ], [ -121.929188, 37.585772 ], [ -121.930475, 37.585874 ], [ -121.932750, 37.591723 ], [ -121.932321, 37.592029 ], [ -121.931591, 37.592846 ], [ -121.930475, 37.595396 ], [ -121.930218, 37.595804 ], [ -121.929960, 37.596076 ], [ -121.929660, 37.596280 ], [ -121.928158, 37.596994 ], [ -121.927085, 37.598150 ], [ -121.926527, 37.598592 ], [ -121.925840, 37.598864 ], [ -121.925282, 37.599000 ], [ -121.924467, 37.599034 ], [ -121.923695, 37.598898 ], [ -121.922450, 37.598626 ], [ -121.921334, 37.598150 ], [ -121.921077, 37.598014 ], [ -121.920691, 37.597368 ], [ -121.917429, 37.595056 ], [ -121.914124, 37.593832 ], [ -121.912451, 37.593662 ], [ -121.911936, 37.593662 ], [ -121.909533, 37.594342 ], [ -121.906056, 37.595532 ], [ -121.905198, 37.595668 ], [ -121.903782, 37.595634 ], [ -121.902666, 37.595464 ], [ -121.897774, 37.594206 ], [ -121.896658, 37.594036 ], [ -121.890178, 37.593458 ], [ -121.889191, 37.593254 ], [ -121.887388, 37.592710 ], [ -121.886744, 37.592574 ], [ -121.885586, 37.592540 ], [ -121.883698, 37.592744 ], [ -121.882839, 37.592744 ], [ -121.882324, 37.592880 ], [ -121.882324, 37.592948 ], [ -121.874814, 37.589683 ], [ -121.872196, 37.589207 ], [ -121.870737, 37.588833 ], [ -121.870265, 37.589785 ], [ -121.870008, 37.590533 ], [ -121.870437, 37.591179 ], [ -121.870995, 37.591553 ], [ -121.871810, 37.592369 ], [ -121.872325, 37.595328 ], [ -121.872797, 37.595974 ], [ -121.872969, 37.596348 ], [ -121.873226, 37.597198 ], [ -121.873312, 37.597946 ], [ -121.873269, 37.598660 ], [ -121.873055, 37.599510 ], [ -121.872067, 37.601210 ], [ -121.871724, 37.602060 ], [ -121.871638, 37.602944 ], [ -121.871724, 37.603828 ], [ -121.871853, 37.604304 ], [ -121.873398, 37.607874 ], [ -121.875029, 37.612226 ], [ -121.877003, 37.616237 ], [ -121.878419, 37.618957 ], [ -121.879492, 37.621370 ], [ -121.879921, 37.623002 ], [ -121.880007, 37.626672 ], [ -121.880307, 37.628440 ], [ -121.880522, 37.629052 ], [ -121.881208, 37.630377 ], [ -121.883268, 37.633164 ], [ -121.883698, 37.633946 ], [ -121.883955, 37.634660 ], [ -121.884127, 37.635475 ], [ -121.884127, 37.636835 ], [ -121.883826, 37.638602 ], [ -121.883826, 37.639010 ], [ -121.883869, 37.639621 ], [ -121.883955, 37.639927 ], [ -121.884127, 37.640165 ], [ -121.882496, 37.641015 ], [ -121.881938, 37.641558 ], [ -121.881680, 37.642068 ], [ -121.881466, 37.645500 ], [ -121.881251, 37.647709 ], [ -121.880565, 37.649646 ], [ -121.880350, 37.650631 ], [ -121.880093, 37.652772 ], [ -121.879749, 37.654436 ], [ -121.879535, 37.654878 ], [ -121.878762, 37.655626 ], [ -121.877604, 37.656339 ], [ -121.876745, 37.655728 ], [ -121.876273, 37.655490 ], [ -121.874342, 37.654844 ], [ -121.873784, 37.654606 ], [ -121.872454, 37.653757 ], [ -121.871037, 37.653179 ], [ -121.870694, 37.652975 ], [ -121.868849, 37.652262 ], [ -121.868248, 37.652194 ], [ -121.866746, 37.652160 ], [ -121.865158, 37.651752 ], [ -121.864514, 37.651786 ], [ -121.864171, 37.651888 ], [ -121.863785, 37.652092 ], [ -121.863012, 37.652941 ], [ -121.862240, 37.653519 ], [ -121.860867, 37.654097 ], [ -121.860180, 37.654538 ], [ -121.859965, 37.654810 ], [ -121.858892, 37.654267 ], [ -121.858463, 37.654165 ], [ -121.857991, 37.654131 ], [ -121.857605, 37.653995 ], [ -121.857133, 37.653689 ], [ -121.855845, 37.652500 ], [ -121.855459, 37.652296 ], [ -121.854815, 37.652228 ], [ -121.853957, 37.652500 ], [ -121.853571, 37.652568 ], [ -121.853571, 37.653519 ], [ -121.852970, 37.653451 ], [ -121.852241, 37.653451 ], [ -121.851897, 37.653553 ], [ -121.851640, 37.653825 ], [ -121.850996, 37.654878 ], [ -121.851039, 37.655320 ], [ -121.851425, 37.656577 ], [ -121.851382, 37.656815 ], [ -121.851211, 37.657121 ], [ -121.850824, 37.657019 ], [ -121.849966, 37.656951 ], [ -121.849451, 37.656985 ], [ -121.848936, 37.657121 ], [ -121.848249, 37.657121 ], [ -121.846018, 37.656781 ], [ -121.844773, 37.656849 ], [ -121.844301, 37.656713 ], [ -121.843829, 37.657358 ], [ -121.843185, 37.657902 ], [ -121.843143, 37.658038 ], [ -121.844816, 37.658446 ], [ -121.844687, 37.658785 ], [ -121.845160, 37.659635 ], [ -121.845331, 37.659839 ], [ -121.846232, 37.660484 ], [ -121.845675, 37.660824 ], [ -121.845374, 37.661096 ], [ -121.845031, 37.661707 ], [ -121.844945, 37.662081 ], [ -121.844988, 37.662488 ], [ -121.845417, 37.663066 ], [ -121.845675, 37.663644 ], [ -121.845760, 37.664255 ], [ -121.845760, 37.664901 ], [ -121.841769, 37.664833 ], [ -121.840911, 37.664901 ], [ -121.839495, 37.664901 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450701", "GEOID10": "06001450701", "NAME10": "4507.01", "NAMELSAD10": "Census Tract 4507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 266251308, "AWATER10": 2844031, "INTPTLAT10": "+37.5511338", "INTPTLON10": "-121.8054596" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.839495, 37.664901 ], [ -121.838851, 37.664799 ], [ -121.838465, 37.664663 ], [ -121.838036, 37.664425 ], [ -121.839023, 37.664697 ], [ -121.836576, 37.663508 ], [ -121.835332, 37.662862 ], [ -121.834731, 37.662488 ], [ -121.831040, 37.659567 ], [ -121.826792, 37.655524 ], [ -121.816406, 37.655456 ], [ -121.814132, 37.655422 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930690, 37.576692 ], [ -121.929917, 37.577644 ], [ -121.929746, 37.578766 ], [ -121.928072, 37.579413 ], [ -121.927557, 37.579617 ], [ -121.928587, 37.580705 ], [ -121.926956, 37.581895 ], [ -121.929960, 37.584786 ], [ -121.929188, 37.585772 ], [ -121.930475, 37.585874 ], [ -121.932750, 37.591723 ], [ -121.932321, 37.592029 ], [ -121.931591, 37.592846 ], [ -121.930475, 37.595396 ], [ -121.930218, 37.595804 ], [ -121.929960, 37.596076 ], [ -121.929660, 37.596280 ], [ -121.928158, 37.596994 ], [ -121.927085, 37.598150 ], [ -121.926527, 37.598592 ], [ -121.925840, 37.598864 ], [ -121.925282, 37.599000 ], [ -121.924467, 37.599034 ], [ -121.923695, 37.598898 ], [ -121.922450, 37.598626 ], [ -121.921334, 37.598150 ], [ -121.921077, 37.598014 ], [ -121.920691, 37.597368 ], [ -121.917429, 37.595056 ], [ -121.914124, 37.593832 ], [ -121.912451, 37.593662 ], [ -121.911936, 37.593662 ], [ -121.909533, 37.594342 ], [ -121.906056, 37.595532 ], [ -121.905198, 37.595668 ], [ -121.903782, 37.595634 ], [ -121.902666, 37.595464 ], [ -121.897774, 37.594206 ], [ -121.896658, 37.594036 ], [ -121.890178, 37.593458 ], [ -121.889191, 37.593254 ], [ -121.887388, 37.592710 ], [ -121.886744, 37.592574 ], [ -121.885586, 37.592540 ], [ -121.883698, 37.592744 ], [ -121.882839, 37.592744 ], [ -121.882324, 37.592880 ], [ -121.882324, 37.592948 ], [ -121.874814, 37.589683 ], [ -121.872196, 37.589207 ], [ -121.870737, 37.588833 ], [ -121.870265, 37.589785 ], [ -121.870008, 37.590533 ], [ -121.870437, 37.591179 ], [ -121.870995, 37.591553 ], [ -121.871810, 37.592369 ], [ -121.872325, 37.595328 ], [ -121.872797, 37.595974 ], [ -121.873140, 37.596790 ], [ -121.873312, 37.597946 ], [ -121.873269, 37.598660 ], [ -121.873055, 37.599510 ], [ -121.872067, 37.601210 ], [ -121.871724, 37.602060 ], [ -121.871638, 37.602944 ], [ -121.871724, 37.603828 ], [ -121.871853, 37.604304 ], [ -121.873398, 37.607874 ], [ -121.875029, 37.612226 ], [ -121.877003, 37.616237 ], [ -121.878419, 37.618957 ], [ -121.879492, 37.621370 ], [ -121.879921, 37.623002 ], [ -121.880007, 37.626672 ], [ -121.880307, 37.628440 ], [ -121.880522, 37.629052 ], [ -121.881208, 37.630377 ], [ -121.883268, 37.633164 ], [ -121.883698, 37.633946 ], [ -121.883955, 37.634660 ], [ -121.884127, 37.635475 ], [ -121.884127, 37.636835 ], [ -121.883826, 37.638602 ], [ -121.883826, 37.639010 ], [ -121.883869, 37.639621 ], [ -121.883955, 37.639927 ], [ -121.884127, 37.640165 ], [ -121.882496, 37.641015 ], [ -121.881938, 37.641558 ], [ -121.881680, 37.642068 ], [ -121.881466, 37.645500 ], [ -121.881251, 37.647709 ], [ -121.880565, 37.649646 ], [ -121.880350, 37.650631 ], [ -121.880093, 37.652772 ], [ -121.879749, 37.654436 ], [ -121.879535, 37.654878 ], [ -121.878762, 37.655626 ], [ -121.877604, 37.656339 ], [ -121.876745, 37.655728 ], [ -121.876273, 37.655490 ], [ -121.874342, 37.654844 ], [ -121.873784, 37.654606 ], [ -121.872454, 37.653757 ], [ -121.871037, 37.653179 ], [ -121.870694, 37.652975 ], [ -121.868849, 37.652262 ], [ -121.868248, 37.652194 ], [ -121.866746, 37.652160 ], [ -121.865158, 37.651752 ], [ -121.864514, 37.651786 ], [ -121.864171, 37.651888 ], [ -121.863785, 37.652092 ], [ -121.863012, 37.652941 ], [ -121.862240, 37.653519 ], [ -121.860867, 37.654097 ], [ -121.860180, 37.654538 ], [ -121.859965, 37.654810 ], [ -121.858892, 37.654267 ], [ -121.858463, 37.654165 ], [ -121.857991, 37.654131 ], [ -121.857605, 37.653995 ], [ -121.857133, 37.653689 ], [ -121.855845, 37.652500 ], [ -121.855459, 37.652296 ], [ -121.854815, 37.652228 ], [ -121.853957, 37.652500 ], [ -121.853571, 37.652568 ], [ -121.853571, 37.653519 ], [ -121.852970, 37.653451 ], [ -121.852241, 37.653451 ], [ -121.851897, 37.653553 ], [ -121.851640, 37.653825 ], [ -121.850996, 37.654878 ], [ -121.851039, 37.655320 ], [ -121.851425, 37.656577 ], [ -121.851382, 37.656815 ], [ -121.851211, 37.657121 ], [ -121.850824, 37.657019 ], [ -121.849966, 37.656951 ], [ -121.849451, 37.656985 ], [ -121.848936, 37.657121 ], [ -121.848249, 37.657121 ], [ -121.846018, 37.656781 ], [ -121.844773, 37.656849 ], [ -121.844301, 37.656713 ], [ -121.843829, 37.657358 ], [ -121.843185, 37.657902 ], [ -121.843143, 37.658038 ], [ -121.844816, 37.658446 ], [ -121.844687, 37.658785 ], [ -121.845160, 37.659635 ], [ -121.845331, 37.659839 ], [ -121.846232, 37.660484 ], [ -121.845675, 37.660824 ], [ -121.845374, 37.661096 ], [ -121.845031, 37.661707 ], [ -121.844945, 37.662081 ], [ -121.844988, 37.662488 ], [ -121.845417, 37.663066 ], [ -121.845675, 37.663644 ], [ -121.845760, 37.664255 ], [ -121.845760, 37.664901 ], [ -121.841769, 37.664833 ], [ -121.840911, 37.664901 ], [ -121.839495, 37.664901 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 330, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2010_06001_tract10", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730403 ], [ -121.910391, 37.730369 ], [ -121.910605, 37.729045 ], [ -121.910520, 37.728434 ], [ -121.910133, 37.727009 ], [ -121.909575, 37.725481 ], [ -121.909490, 37.724904 ], [ -121.909533, 37.723988 ], [ -121.910048, 37.722528 ], [ -121.910219, 37.721815 ], [ -121.910176, 37.718590 ], [ -121.910176, 37.715976 ], [ -121.910219, 37.715875 ], [ -121.915970, 37.715875 ], [ -121.918416, 37.718590 ], [ -121.925926, 37.726941 ], [ -121.924725, 37.727246 ], [ -121.922708, 37.727654 ], [ -121.914253, 37.729690 ], [ -121.911035, 37.730335 ], [ -121.910477, 37.730403 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450200", "GEOID10": "06001450200", "NAME10": "4502", "NAMELSAD10": "Census Tract 4502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1620539, "AWATER10": 0, "INTPTLAT10": "+37.7224552", "INTPTLON10": "-121.9154401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.910477, 37.730403 ], [ -121.910391, 37.730369 ], [ -121.910563, 37.729520 ], [ -121.910520, 37.728434 ], [ -121.910133, 37.727009 ], [ -121.909575, 37.725481 ], [ -121.909490, 37.724904 ], [ -121.909533, 37.723988 ], [ -121.910048, 37.722528 ], [ -121.910219, 37.721815 ], [ -121.910176, 37.718590 ], [ -121.910176, 37.715976 ], [ -121.910219, 37.715875 ], [ -121.915970, 37.715875 ], [ -121.918416, 37.718590 ], [ -121.925926, 37.726941 ], [ -121.924725, 37.727246 ], [ -121.922708, 37.727654 ], [ -121.914253, 37.729690 ], [ -121.911035, 37.730335 ], [ -121.910477, 37.730403 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "451202", "GEOID10": "06001451202", "NAME10": "4512.02", "NAMELSAD10": "Census Tract 4512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 45965427, "AWATER10": 0, "INTPTLAT10": "+37.7347438", "INTPTLON10": "-121.7689116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812973, 37.748695 ], [ -121.812973, 37.744487 ], [ -121.813660, 37.744929 ], [ -121.813831, 37.745336 ], [ -121.813831, 37.745641 ], [ -121.813703, 37.746693 ], [ -121.812973, 37.748695 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812973, 37.754124 ], [ -121.812973, 37.748695 ], [ -121.813703, 37.746693 ], [ -121.813831, 37.745641 ], [ -121.813831, 37.745336 ], [ -121.813660, 37.744929 ], [ -121.812973, 37.744487 ], [ -121.812973, 37.715875 ], [ -121.824389, 37.715875 ], [ -121.824389, 37.717198 ], [ -121.824517, 37.718590 ], [ -121.824603, 37.719235 ], [ -121.825590, 37.722019 ], [ -121.826577, 37.723716 ], [ -121.826792, 37.724022 ], [ -121.827092, 37.724259 ], [ -121.827607, 37.725108 ], [ -121.827908, 37.725413 ], [ -121.828551, 37.725787 ], [ -121.828938, 37.726126 ], [ -121.829281, 37.726466 ], [ -121.829925, 37.727280 ], [ -121.830955, 37.728129 ], [ -121.831470, 37.728400 ], [ -121.832070, 37.728604 ], [ -121.834817, 37.729826 ], [ -121.834946, 37.729928 ], [ -121.835504, 37.730742 ], [ -121.835718, 37.730912 ], [ -121.836362, 37.731048 ], [ -121.836448, 37.731116 ], [ -121.836619, 37.731285 ], [ -121.836877, 37.732066 ], [ -121.837220, 37.732813 ], [ -121.837306, 37.733220 ], [ -121.837606, 37.733627 ], [ -121.838036, 37.733526 ], [ -121.838508, 37.733526 ], [ -121.839666, 37.733559 ], [ -121.840353, 37.733661 ], [ -121.841512, 37.733458 ], [ -121.842413, 37.733424 ], [ -121.842713, 37.733322 ], [ -121.842842, 37.733016 ], [ -121.843143, 37.732813 ], [ -121.843314, 37.732609 ], [ -121.844044, 37.732270 ], [ -121.844473, 37.732236 ], [ -121.845074, 37.732270 ], [ -121.845546, 37.732372 ], [ -121.845717, 37.732609 ], [ -121.846275, 37.733050 ], [ -121.846576, 37.733254 ], [ -121.846919, 37.733356 ], [ -121.847177, 37.733288 ], [ -121.847563, 37.732745 ], [ -121.848164, 37.732779 ], [ -121.849236, 37.733424 ], [ -121.849666, 37.733424 ], [ -121.850224, 37.733933 ], [ -121.851168, 37.734272 ], [ -121.851854, 37.734272 ], [ -121.852241, 37.734035 ], [ -121.852584, 37.733933 ], [ -121.852798, 37.733593 ], [ -121.853142, 37.733424 ], [ -121.854300, 37.733084 ], [ -121.854472, 37.732745 ], [ -121.854730, 37.732473 ], [ -121.855159, 37.732406 ], [ -121.855373, 37.732202 ], [ -121.855674, 37.732066 ], [ -121.855931, 37.731727 ], [ -121.855974, 37.731557 ], [ -121.856189, 37.731387 ], [ -121.856875, 37.731252 ], [ -121.856918, 37.730912 ], [ -121.857090, 37.730607 ], [ -121.857305, 37.730437 ], [ -121.858549, 37.730471 ], [ -121.859922, 37.730607 ], [ -121.859107, 37.729690 ], [ -121.858635, 37.728774 ], [ -121.858377, 37.727688 ], [ -121.858249, 37.726126 ], [ -121.857219, 37.725990 ], [ -121.856489, 37.725651 ], [ -121.856017, 37.725142 ], [ -121.855674, 37.724531 ], [ -121.855288, 37.724667 ], [ -121.855373, 37.724836 ], [ -121.855330, 37.724972 ], [ -121.854601, 37.725040 ], [ -121.854000, 37.725312 ], [ -121.853013, 37.725278 ], [ -121.852756, 37.725210 ], [ -121.852412, 37.724870 ], [ -121.852155, 37.724327 ], [ -121.852198, 37.724225 ], [ -121.852026, 37.723852 ], [ -121.852112, 37.723241 ], [ -121.852069, 37.722766 ], [ -121.851940, 37.722630 ], [ -121.851726, 37.721815 ], [ -121.851726, 37.721272 ], [ -121.851983, 37.721170 ], [ -121.852112, 37.721272 ], [ -121.852412, 37.721340 ], [ -121.852627, 37.721170 ], [ -121.852756, 37.721170 ], [ -121.853528, 37.720559 ], [ -121.853700, 37.720525 ], [ -121.854043, 37.720288 ], [ -121.853614, 37.719880 ], [ -121.853313, 37.719473 ], [ -121.853099, 37.718862 ], [ -121.853099, 37.718421 ], [ -121.852069, 37.718353 ], [ -121.851940, 37.718251 ], [ -121.851726, 37.717979 ], [ -121.851554, 37.717402 ], [ -121.851254, 37.716757 ], [ -121.850867, 37.716282 ], [ -121.850910, 37.715875 ], [ -121.855459, 37.715875 ], [ -121.857133, 37.716520 ], [ -121.857605, 37.716825 ], [ -121.857991, 37.717131 ], [ -121.858635, 37.717810 ], [ -121.859107, 37.718556 ], [ -121.860952, 37.718183 ], [ -121.861339, 37.718047 ], [ -121.862669, 37.717810 ], [ -121.864042, 37.717877 ], [ -121.865544, 37.718251 ], [ -121.865888, 37.717708 ], [ -121.866188, 37.717436 ], [ -121.866574, 37.717198 ], [ -121.867003, 37.717063 ], [ -121.867561, 37.716961 ], [ -121.869063, 37.716961 ], [ -121.870136, 37.716655 ], [ -121.871080, 37.716621 ], [ -121.871767, 37.716689 ], [ -121.872025, 37.716723 ], [ -121.871896, 37.718590 ], [ -121.871681, 37.720559 ], [ -121.871552, 37.723207 ], [ -121.872110, 37.723207 ], [ -121.872025, 37.724225 ], [ -121.871939, 37.724429 ], [ -121.871982, 37.724599 ], [ -121.872497, 37.725244 ], [ -121.872497, 37.726092 ], [ -121.872711, 37.726330 ], [ -121.872883, 37.726364 ], [ -121.873012, 37.726500 ], [ -121.872926, 37.726669 ], [ -121.872883, 37.727043 ], [ -121.872969, 37.727620 ], [ -121.873055, 37.727755 ], [ -121.873655, 37.728197 ], [ -121.873269, 37.728434 ], [ -121.873226, 37.728570 ], [ -121.873527, 37.729079 ], [ -121.873612, 37.729351 ], [ -121.872926, 37.729419 ], [ -121.874385, 37.731421 ], [ -121.881766, 37.736444 ], [ -121.881552, 37.737327 ], [ -121.874342, 37.739092 ], [ -121.870995, 37.740042 ], [ -121.816406, 37.753276 ], [ -121.812973, 37.754124 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450752", "GEOID10": "06001450752", "NAME10": "4507.52", "NAMELSAD10": "Census Tract 4507.52", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17584060, "AWATER10": 8067, "INTPTLAT10": "+37.7189170", "INTPTLON10": "-121.8238089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.812973, 37.754124 ], [ -121.812973, 37.748695 ], [ -121.813703, 37.746693 ], [ -121.813831, 37.745641 ], [ -121.813831, 37.745336 ], [ -121.813660, 37.744929 ], [ -121.812973, 37.744487 ], [ -121.812973, 37.715875 ], [ -121.824389, 37.715875 ], [ -121.824389, 37.717198 ], [ -121.824517, 37.718590 ], [ -121.824603, 37.719235 ], [ -121.825590, 37.722019 ], [ -121.826577, 37.723716 ], [ -121.826792, 37.724022 ], [ -121.827092, 37.724259 ], [ -121.827607, 37.725108 ], [ -121.827908, 37.725413 ], [ -121.828551, 37.725787 ], [ -121.828938, 37.726126 ], [ -121.829281, 37.726466 ], [ -121.829925, 37.727280 ], [ -121.830955, 37.728129 ], [ -121.831470, 37.728400 ], [ -121.832070, 37.728604 ], [ -121.834817, 37.729826 ], [ -121.834946, 37.729928 ], [ -121.835504, 37.730742 ], [ -121.835718, 37.730912 ], [ -121.836362, 37.731048 ], [ -121.836448, 37.731116 ], [ -121.836619, 37.731285 ], [ -121.836877, 37.732066 ], [ -121.837220, 37.732813 ], [ -121.837306, 37.733220 ], [ -121.837564, 37.733627 ], [ -121.838036, 37.733526 ], [ -121.838508, 37.733526 ], [ -121.839666, 37.733559 ], [ -121.840353, 37.733661 ], [ -121.841512, 37.733458 ], [ -121.842413, 37.733424 ], [ -121.842713, 37.733322 ], [ -121.842842, 37.733016 ], [ -121.843143, 37.732813 ], [ -121.843314, 37.732609 ], [ -121.844044, 37.732270 ], [ -121.844473, 37.732236 ], [ -121.845074, 37.732270 ], [ -121.845546, 37.732372 ], [ -121.845717, 37.732609 ], [ -121.846275, 37.733050 ], [ -121.846576, 37.733254 ], [ -121.846919, 37.733356 ], [ -121.847177, 37.733288 ], [ -121.847563, 37.732745 ], [ -121.848164, 37.732779 ], [ -121.849236, 37.733424 ], [ -121.849666, 37.733424 ], [ -121.850224, 37.733933 ], [ -121.851168, 37.734272 ], [ -121.851854, 37.734272 ], [ -121.852241, 37.734035 ], [ -121.852584, 37.733933 ], [ -121.852798, 37.733593 ], [ -121.853142, 37.733424 ], [ -121.854300, 37.733084 ], [ -121.854472, 37.732745 ], [ -121.854730, 37.732473 ], [ -121.855159, 37.732406 ], [ -121.855373, 37.732202 ], [ -121.855674, 37.732066 ], [ -121.855931, 37.731727 ], [ -121.855974, 37.731557 ], [ -121.856189, 37.731387 ], [ -121.856875, 37.731252 ], [ -121.856918, 37.730912 ], [ -121.857090, 37.730607 ], [ -121.857305, 37.730437 ], [ -121.858549, 37.730471 ], [ -121.859922, 37.730607 ], [ -121.859107, 37.729690 ], [ -121.858635, 37.728774 ], [ -121.858377, 37.727688 ], [ -121.858249, 37.726126 ], [ -121.857219, 37.725990 ], [ -121.856489, 37.725651 ], [ -121.856017, 37.725142 ], [ -121.855674, 37.724531 ], [ -121.855288, 37.724667 ], [ -121.855373, 37.724836 ], [ -121.855330, 37.724972 ], [ -121.854601, 37.725040 ], [ -121.854000, 37.725312 ], [ -121.853013, 37.725278 ], [ -121.852756, 37.725210 ], [ -121.852412, 37.724870 ], [ -121.852155, 37.724327 ], [ -121.852198, 37.724225 ], [ -121.852026, 37.723852 ], [ -121.852112, 37.723241 ], [ -121.852069, 37.722766 ], [ -121.851940, 37.722630 ], [ -121.851726, 37.721815 ], [ -121.851726, 37.721272 ], [ -121.851983, 37.721170 ], [ -121.852112, 37.721272 ], [ -121.852412, 37.721340 ], [ -121.852627, 37.721170 ], [ -121.852756, 37.721170 ], [ -121.853528, 37.720559 ], [ -121.853700, 37.720525 ], [ -121.854043, 37.720288 ], [ -121.853614, 37.719880 ], [ -121.853313, 37.719473 ], [ -121.853099, 37.718862 ], [ -121.853099, 37.718421 ], [ -121.852069, 37.718353 ], [ -121.851940, 37.718251 ], [ -121.851726, 37.717979 ], [ -121.851554, 37.717402 ], [ -121.851254, 37.716757 ], [ -121.850867, 37.716282 ], [ -121.850910, 37.715875 ], [ -121.855459, 37.715875 ], [ -121.857133, 37.716520 ], [ -121.857605, 37.716825 ], [ -121.857991, 37.717131 ], [ -121.858635, 37.717810 ], [ -121.859107, 37.718556 ], [ -121.860952, 37.718183 ], [ -121.861339, 37.718047 ], [ -121.862669, 37.717810 ], [ -121.864042, 37.717877 ], [ -121.865544, 37.718251 ], [ -121.865888, 37.717708 ], [ -121.866188, 37.717436 ], [ -121.866574, 37.717198 ], [ -121.867003, 37.717063 ], [ -121.867561, 37.716961 ], [ -121.869063, 37.716961 ], [ -121.870136, 37.716655 ], [ -121.871080, 37.716621 ], [ -121.871767, 37.716689 ], [ -121.872025, 37.716723 ], [ -121.871896, 37.718590 ], [ -121.871681, 37.720559 ], [ -121.871552, 37.723207 ], [ -121.872110, 37.723207 ], [ -121.872025, 37.724225 ], [ -121.871939, 37.724429 ], [ -121.871982, 37.724599 ], [ -121.872497, 37.725244 ], [ -121.872497, 37.726092 ], [ -121.872711, 37.726330 ], [ -121.872883, 37.726364 ], [ -121.873012, 37.726500 ], [ -121.872926, 37.726669 ], [ -121.872883, 37.727043 ], [ -121.872969, 37.727620 ], [ -121.873055, 37.727755 ], [ -121.873655, 37.728197 ], [ -121.873269, 37.728434 ], [ -121.873226, 37.728570 ], [ -121.873527, 37.729079 ], [ -121.873612, 37.729351 ], [ -121.872926, 37.729419 ], [ -121.874385, 37.731421 ], [ -121.881766, 37.736444 ], [ -121.881552, 37.737327 ], [ -121.874342, 37.739092 ], [ -121.870995, 37.740042 ], [ -121.816406, 37.753276 ], [ -121.812973, 37.754124 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "430101", "GEOID10": "06001430101", "NAME10": "4301.01", "NAMELSAD10": "Census Tract 4301.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25477062, "AWATER10": 0, "INTPTLAT10": "+37.7272587", "INTPTLON10": "-122.0152514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.995621, 37.738379 ], [ -121.993561, 37.738141 ], [ -121.992188, 37.736410 ], [ -121.989956, 37.733627 ], [ -121.983476, 37.730878 ], [ -121.982274, 37.730708 ], [ -121.980600, 37.730301 ], [ -121.979098, 37.729826 ], [ -121.977596, 37.729487 ], [ -121.976652, 37.729453 ], [ -121.975236, 37.729520 ], [ -121.974077, 37.729419 ], [ -121.972489, 37.728536 ], [ -121.975408, 37.726194 ], [ -121.984205, 37.718590 ], [ -121.987295, 37.715875 ], [ -121.995621, 37.715875 ], [ -121.995621, 37.738379 ] ] ] } } , @@ -3542,11 +3542,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450400", "GEOID10": "06001450400", "NAME10": "4504", "NAMELSAD10": "Census Tract 4504", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3155086, "AWATER10": 0, "INTPTLAT10": "+37.7126931", "INTPTLON10": "-121.9324146" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.929531, 37.726160 ], [ -121.929359, 37.726092 ], [ -121.928844, 37.725481 ], [ -121.927772, 37.723818 ], [ -121.926999, 37.722766 ], [ -121.926656, 37.722121 ], [ -121.926527, 37.721679 ], [ -121.926527, 37.720831 ], [ -121.926742, 37.718590 ], [ -121.926956, 37.715875 ], [ -121.940088, 37.715875 ], [ -121.940904, 37.718590 ], [ -121.941805, 37.721476 ], [ -121.942277, 37.722664 ], [ -121.942363, 37.722935 ], [ -121.942320, 37.722969 ], [ -121.940303, 37.723411 ], [ -121.940174, 37.723479 ], [ -121.939187, 37.723614 ], [ -121.939187, 37.723716 ], [ -121.939058, 37.723648 ], [ -121.937084, 37.724361 ], [ -121.936998, 37.724259 ], [ -121.936355, 37.724463 ], [ -121.935625, 37.724599 ], [ -121.933479, 37.725142 ], [ -121.932836, 37.725447 ], [ -121.931677, 37.725617 ], [ -121.929531, 37.726160 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881552, 37.737327 ], [ -121.881766, 37.736444 ], [ -121.874385, 37.731421 ], [ -121.872926, 37.729419 ], [ -121.873612, 37.729351 ], [ -121.873527, 37.729079 ], [ -121.873226, 37.728570 ], [ -121.873269, 37.728434 ], [ -121.873655, 37.728197 ], [ -121.873055, 37.727755 ], [ -121.872969, 37.727620 ], [ -121.872883, 37.727043 ], [ -121.872926, 37.726669 ], [ -121.873012, 37.726500 ], [ -121.872883, 37.726364 ], [ -121.872711, 37.726330 ], [ -121.872497, 37.726092 ], [ -121.872497, 37.725244 ], [ -121.871982, 37.724599 ], [ -121.871939, 37.724429 ], [ -121.872025, 37.724225 ], [ -121.872110, 37.723207 ], [ -121.871552, 37.723207 ], [ -121.871681, 37.720559 ], [ -121.871896, 37.718590 ], [ -121.872025, 37.716723 ], [ -121.872025, 37.715875 ], [ -121.910219, 37.715875 ], [ -121.910176, 37.718590 ], [ -121.910219, 37.721815 ], [ -121.910048, 37.722528 ], [ -121.909533, 37.723988 ], [ -121.909490, 37.724904 ], [ -121.909575, 37.725481 ], [ -121.910133, 37.727009 ], [ -121.910520, 37.728434 ], [ -121.910605, 37.729045 ], [ -121.910391, 37.730369 ], [ -121.910477, 37.730403 ], [ -121.909919, 37.730505 ], [ -121.904469, 37.731930 ], [ -121.895285, 37.734136 ], [ -121.881552, 37.737327 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450102", "GEOID10": "06001450102", "NAME10": "4501.02", "NAMELSAD10": "Census Tract 4501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9581983, "AWATER10": 0, "INTPTLAT10": "+37.7208265", "INTPTLON10": "-121.8911928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.881552, 37.737327 ], [ -121.881766, 37.736444 ], [ -121.874385, 37.731421 ], [ -121.872926, 37.729419 ], [ -121.873612, 37.729351 ], [ -121.873527, 37.729079 ], [ -121.873226, 37.728570 ], [ -121.873269, 37.728434 ], [ -121.873655, 37.728197 ], [ -121.873055, 37.727755 ], [ -121.872969, 37.727620 ], [ -121.872883, 37.727043 ], [ -121.872926, 37.726669 ], [ -121.873012, 37.726500 ], [ -121.872883, 37.726364 ], [ -121.872711, 37.726330 ], [ -121.872497, 37.726092 ], [ -121.872497, 37.725244 ], [ -121.871982, 37.724599 ], [ -121.871939, 37.724429 ], [ -121.872025, 37.724225 ], [ -121.872110, 37.723207 ], [ -121.871552, 37.723207 ], [ -121.871681, 37.720559 ], [ -121.871896, 37.718590 ], [ -121.872025, 37.716723 ], [ -121.872025, 37.715875 ], [ -121.910219, 37.715875 ], [ -121.910176, 37.718590 ], [ -121.910219, 37.721815 ], [ -121.910048, 37.722528 ], [ -121.909533, 37.723988 ], [ -121.909490, 37.724904 ], [ -121.909575, 37.725481 ], [ -121.910133, 37.727009 ], [ -121.910520, 37.728434 ], [ -121.910563, 37.729520 ], [ -121.910391, 37.730369 ], [ -121.910477, 37.730403 ], [ -121.909919, 37.730505 ], [ -121.904469, 37.731930 ], [ -121.895285, 37.734136 ], [ -121.881552, 37.737327 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450300", "GEOID10": "06001450300", "NAME10": "4503", "NAMELSAD10": "Census Tract 4503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3134161, "AWATER10": 0, "INTPTLAT10": "+37.7106983", "INTPTLON10": "-121.9177415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.925926, 37.726941 ], [ -121.918416, 37.718590 ], [ -121.915970, 37.715875 ], [ -121.926956, 37.715875 ], [ -121.926742, 37.718590 ], [ -121.926527, 37.720831 ], [ -121.926527, 37.721679 ], [ -121.926656, 37.722121 ], [ -121.926999, 37.722766 ], [ -121.927772, 37.723818 ], [ -121.928844, 37.725481 ], [ -121.929188, 37.725855 ], [ -121.929402, 37.726194 ], [ -121.926656, 37.726839 ], [ -121.925926, 37.726941 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450751", "GEOID10": "06001450751", "NAME10": "4507.51", "NAMELSAD10": "Census Tract 4507.51", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9789945, "AWATER10": 0, "INTPTLAT10": "+37.7163164", "INTPTLON10": "-121.8430342" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.859107, 37.718556 ], [ -121.858635, 37.717810 ], [ -121.857991, 37.717131 ], [ -121.857605, 37.716825 ], [ -121.857133, 37.716520 ], [ -121.855459, 37.715875 ], [ -121.872025, 37.715875 ], [ -121.872025, 37.716723 ], [ -121.871080, 37.716621 ], [ -121.870136, 37.716655 ], [ -121.869063, 37.716961 ], [ -121.867561, 37.716961 ], [ -121.867003, 37.717063 ], [ -121.866574, 37.717198 ], [ -121.866188, 37.717436 ], [ -121.865888, 37.717708 ], [ -121.865544, 37.718251 ], [ -121.864042, 37.717877 ], [ -121.862669, 37.717810 ], [ -121.861339, 37.718047 ], [ -121.860952, 37.718183 ], [ -121.859107, 37.718556 ] ] ], [ [ [ -121.850910, 37.715875 ], [ -121.850867, 37.716282 ], [ -121.851254, 37.716757 ], [ -121.851554, 37.717402 ], [ -121.851726, 37.717979 ], [ -121.851940, 37.718251 ], [ -121.852069, 37.718353 ], [ -121.853099, 37.718421 ], [ -121.853099, 37.718862 ], [ -121.853313, 37.719473 ], [ -121.853614, 37.719880 ], [ -121.854043, 37.720288 ], [ -121.853700, 37.720525 ], [ -121.853528, 37.720559 ], [ -121.852756, 37.721170 ], [ -121.852627, 37.721170 ], [ -121.852412, 37.721340 ], [ -121.852112, 37.721272 ], [ -121.851983, 37.721170 ], [ -121.851726, 37.721272 ], [ -121.851726, 37.721815 ], [ -121.851940, 37.722630 ], [ -121.852069, 37.722766 ], [ -121.852112, 37.723241 ], [ -121.852026, 37.723852 ], [ -121.852198, 37.724225 ], [ -121.852155, 37.724327 ], [ -121.852412, 37.724870 ], [ -121.852756, 37.725210 ], [ -121.853013, 37.725278 ], [ -121.854000, 37.725312 ], [ -121.854601, 37.725040 ], [ -121.855330, 37.724972 ], [ -121.855373, 37.724836 ], [ -121.855288, 37.724667 ], [ -121.855674, 37.724531 ], [ -121.856017, 37.725142 ], [ -121.856489, 37.725651 ], [ -121.857219, 37.725990 ], [ -121.858249, 37.726126 ], [ -121.858377, 37.727688 ], [ -121.858635, 37.728774 ], [ -121.859107, 37.729690 ], [ -121.859922, 37.730607 ], [ -121.858549, 37.730471 ], [ -121.857305, 37.730437 ], [ -121.857090, 37.730607 ], [ -121.856918, 37.730912 ], [ -121.856875, 37.731252 ], [ -121.856189, 37.731387 ], [ -121.855974, 37.731557 ], [ -121.855931, 37.731727 ], [ -121.855674, 37.732066 ], [ -121.855373, 37.732202 ], [ -121.855159, 37.732406 ], [ -121.854730, 37.732473 ], [ -121.854472, 37.732745 ], [ -121.854300, 37.733084 ], [ -121.853142, 37.733424 ], [ -121.852798, 37.733593 ], [ -121.852584, 37.733933 ], [ -121.852241, 37.734035 ], [ -121.851854, 37.734272 ], [ -121.851168, 37.734272 ], [ -121.850224, 37.733933 ], [ -121.849666, 37.733424 ], [ -121.849236, 37.733424 ], [ -121.848164, 37.732779 ], [ -121.847563, 37.732745 ], [ -121.847177, 37.733288 ], [ -121.846919, 37.733356 ], [ -121.846576, 37.733254 ], [ -121.846275, 37.733050 ], [ -121.845717, 37.732609 ], [ -121.845546, 37.732372 ], [ -121.845074, 37.732270 ], [ -121.844473, 37.732236 ], [ -121.844044, 37.732270 ], [ -121.843314, 37.732609 ], [ -121.843143, 37.732813 ], [ -121.842842, 37.733016 ], [ -121.842713, 37.733322 ], [ -121.842413, 37.733424 ], [ -121.841512, 37.733458 ], [ -121.840353, 37.733661 ], [ -121.839666, 37.733559 ], [ -121.838508, 37.733526 ], [ -121.838036, 37.733526 ], [ -121.837606, 37.733627 ], [ -121.837306, 37.733220 ], [ -121.837220, 37.732813 ], [ -121.836877, 37.732066 ], [ -121.836619, 37.731285 ], [ -121.836448, 37.731116 ], [ -121.836362, 37.731048 ], [ -121.835718, 37.730912 ], [ -121.835504, 37.730742 ], [ -121.834946, 37.729928 ], [ -121.834817, 37.729826 ], [ -121.832070, 37.728604 ], [ -121.831470, 37.728400 ], [ -121.830955, 37.728129 ], [ -121.829925, 37.727280 ], [ -121.829281, 37.726466 ], [ -121.828938, 37.726126 ], [ -121.828551, 37.725787 ], [ -121.827908, 37.725413 ], [ -121.827607, 37.725108 ], [ -121.827092, 37.724259 ], [ -121.826792, 37.724022 ], [ -121.826577, 37.723716 ], [ -121.825590, 37.722019 ], [ -121.824603, 37.719235 ], [ -121.824517, 37.718590 ], [ -121.824389, 37.717198 ], [ -121.824389, 37.715875 ], [ -121.850910, 37.715875 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "450751", "GEOID10": "06001450751", "NAME10": "4507.51", "NAMELSAD10": "Census Tract 4507.51", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9789945, "AWATER10": 0, "INTPTLAT10": "+37.7163164", "INTPTLON10": "-121.8430342" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.859107, 37.718556 ], [ -121.858635, 37.717810 ], [ -121.857991, 37.717131 ], [ -121.857605, 37.716825 ], [ -121.857133, 37.716520 ], [ -121.855459, 37.715875 ], [ -121.872025, 37.715875 ], [ -121.872025, 37.716723 ], [ -121.871080, 37.716621 ], [ -121.870136, 37.716655 ], [ -121.869063, 37.716961 ], [ -121.867561, 37.716961 ], [ -121.867003, 37.717063 ], [ -121.866574, 37.717198 ], [ -121.866188, 37.717436 ], [ -121.865888, 37.717708 ], [ -121.865544, 37.718251 ], [ -121.864042, 37.717877 ], [ -121.862669, 37.717810 ], [ -121.861339, 37.718047 ], [ -121.860952, 37.718183 ], [ -121.859107, 37.718556 ] ] ], [ [ [ -121.850910, 37.715875 ], [ -121.850867, 37.716282 ], [ -121.851254, 37.716757 ], [ -121.851554, 37.717402 ], [ -121.851726, 37.717979 ], [ -121.851940, 37.718251 ], [ -121.852069, 37.718353 ], [ -121.853099, 37.718421 ], [ -121.853099, 37.718862 ], [ -121.853313, 37.719473 ], [ -121.853614, 37.719880 ], [ -121.854043, 37.720288 ], [ -121.853700, 37.720525 ], [ -121.853528, 37.720559 ], [ -121.852756, 37.721170 ], [ -121.852627, 37.721170 ], [ -121.852412, 37.721340 ], [ -121.852112, 37.721272 ], [ -121.851983, 37.721170 ], [ -121.851726, 37.721272 ], [ -121.851726, 37.721815 ], [ -121.851940, 37.722630 ], [ -121.852069, 37.722766 ], [ -121.852112, 37.723241 ], [ -121.852026, 37.723852 ], [ -121.852198, 37.724225 ], [ -121.852155, 37.724327 ], [ -121.852412, 37.724870 ], [ -121.852756, 37.725210 ], [ -121.853013, 37.725278 ], [ -121.854000, 37.725312 ], [ -121.854601, 37.725040 ], [ -121.855330, 37.724972 ], [ -121.855373, 37.724836 ], [ -121.855288, 37.724667 ], [ -121.855674, 37.724531 ], [ -121.856017, 37.725142 ], [ -121.856489, 37.725651 ], [ -121.857219, 37.725990 ], [ -121.858249, 37.726126 ], [ -121.858377, 37.727688 ], [ -121.858635, 37.728774 ], [ -121.859107, 37.729690 ], [ -121.859922, 37.730607 ], [ -121.858549, 37.730471 ], [ -121.857305, 37.730437 ], [ -121.857090, 37.730607 ], [ -121.856918, 37.730912 ], [ -121.856875, 37.731252 ], [ -121.856189, 37.731387 ], [ -121.855974, 37.731557 ], [ -121.855931, 37.731727 ], [ -121.855674, 37.732066 ], [ -121.855373, 37.732202 ], [ -121.855159, 37.732406 ], [ -121.854730, 37.732473 ], [ -121.854472, 37.732745 ], [ -121.854300, 37.733084 ], [ -121.853142, 37.733424 ], [ -121.852798, 37.733593 ], [ -121.852584, 37.733933 ], [ -121.852241, 37.734035 ], [ -121.851854, 37.734272 ], [ -121.851168, 37.734272 ], [ -121.850224, 37.733933 ], [ -121.849666, 37.733424 ], [ -121.849236, 37.733424 ], [ -121.848164, 37.732779 ], [ -121.847563, 37.732745 ], [ -121.847177, 37.733288 ], [ -121.846919, 37.733356 ], [ -121.846576, 37.733254 ], [ -121.846275, 37.733050 ], [ -121.845717, 37.732609 ], [ -121.845546, 37.732372 ], [ -121.845074, 37.732270 ], [ -121.844473, 37.732236 ], [ -121.844044, 37.732270 ], [ -121.843314, 37.732609 ], [ -121.843143, 37.732813 ], [ -121.842842, 37.733016 ], [ -121.842713, 37.733322 ], [ -121.842413, 37.733424 ], [ -121.841512, 37.733458 ], [ -121.840353, 37.733661 ], [ -121.839666, 37.733559 ], [ -121.838508, 37.733526 ], [ -121.838036, 37.733526 ], [ -121.837564, 37.733627 ], [ -121.837306, 37.733220 ], [ -121.837220, 37.732813 ], [ -121.836877, 37.732066 ], [ -121.836619, 37.731285 ], [ -121.836448, 37.731116 ], [ -121.836362, 37.731048 ], [ -121.835718, 37.730912 ], [ -121.835504, 37.730742 ], [ -121.834946, 37.729928 ], [ -121.834817, 37.729826 ], [ -121.832070, 37.728604 ], [ -121.831470, 37.728400 ], [ -121.830955, 37.728129 ], [ -121.829925, 37.727280 ], [ -121.829281, 37.726466 ], [ -121.828938, 37.726126 ], [ -121.828551, 37.725787 ], [ -121.827908, 37.725413 ], [ -121.827607, 37.725108 ], [ -121.827092, 37.724259 ], [ -121.826792, 37.724022 ], [ -121.826577, 37.723716 ], [ -121.825590, 37.722019 ], [ -121.824603, 37.719235 ], [ -121.824517, 37.718590 ], [ -121.824389, 37.717198 ], [ -121.824389, 37.715875 ], [ -121.850910, 37.715875 ] ] ] ] } } ] } ] } , diff --git a/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json b/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json index 96a1ea234..2006344c6 100644 --- a/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json +++ b/tests/coalesce-tract/out/-P_--coalesce_--reorder_-z11_-Z11_-y_STATEFP10_-y_COUNTYFP10_-l_merged.json @@ -45,7 +45,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.516098, 37.803409 ], [ -122.516098, 37.770681 ], [ -122.516098, 37.763726 ], [ -122.516098, 37.760232 ], [ -122.516098, 37.715875 ], [ -122.576222, 37.715875 ], [ -122.576523, 37.718590 ], [ -122.581286, 37.760198 ], [ -122.584720, 37.779161 ], [ -122.588153, 37.789370 ], [ -122.600255, 37.802494 ], [ -122.612271, 37.815209 ], [ -122.550902, 37.815344 ], [ -122.546396, 37.815243 ], [ -122.534080, 37.815344 ], [ -122.530088, 37.815446 ], [ -122.529187, 37.815141 ], [ -122.528415, 37.815243 ], [ -122.527385, 37.814937 ], [ -122.527299, 37.815649 ], [ -122.528415, 37.817446 ], [ -122.529187, 37.819040 ], [ -122.527084, 37.821040 ], [ -122.525582, 37.821209 ], [ -122.525797, 37.821718 ], [ -122.525368, 37.822430 ], [ -122.524381, 37.822531 ], [ -122.524552, 37.822972 ], [ -122.523952, 37.823853 ], [ -122.523565, 37.824667 ], [ -122.519531, 37.824972 ], [ -122.519274, 37.825006 ], [ -122.518458, 37.825311 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824599 ], [ -122.516098, 37.825209 ], [ -122.516098, 37.803409 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.516098, 37.803409 ], [ -122.516098, 37.770681 ], [ -122.516098, 37.763726 ], [ -122.516098, 37.760232 ], [ -122.516098, 37.715875 ], [ -122.576222, 37.715875 ], [ -122.576523, 37.718590 ], [ -122.581286, 37.760198 ], [ -122.584720, 37.779161 ], [ -122.588153, 37.789370 ], [ -122.600255, 37.802494 ], [ -122.612271, 37.815209 ], [ -122.550902, 37.815344 ], [ -122.546396, 37.815243 ], [ -122.534080, 37.815344 ], [ -122.530088, 37.815446 ], [ -122.529187, 37.815141 ], [ -122.528415, 37.815243 ], [ -122.527385, 37.814937 ], [ -122.527299, 37.815649 ], [ -122.528415, 37.817446 ], [ -122.529187, 37.819040 ], [ -122.527084, 37.821040 ], [ -122.525582, 37.821209 ], [ -122.525797, 37.821718 ], [ -122.525368, 37.822430 ], [ -122.524381, 37.822531 ], [ -122.524552, 37.822972 ], [ -122.523952, 37.823853 ], [ -122.523565, 37.824667 ], [ -122.519531, 37.824972 ], [ -122.519274, 37.825006 ], [ -122.518458, 37.825277 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824599 ], [ -122.516098, 37.825209 ], [ -122.516098, 37.803409 ] ] ] } } ] } ] } , @@ -59,7 +59,7 @@ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.346668, 37.811038 ], [ -122.346883, 37.811411 ], [ -122.349372, 37.818260 ], [ -122.355895, 37.835717 ], [ -122.364221, 37.857507 ], [ -122.365251, 37.860218 ], [ -122.340317, 37.860218 ], [ -122.340317, 37.826633 ], [ -122.340317, 37.810699 ], [ -122.340317, 37.800697 ], [ -122.343750, 37.806258 ], [ -122.346668, 37.811038 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.522964, 37.805037 ], [ -122.522964, 37.824701 ], [ -122.519531, 37.824972 ], [ -122.519274, 37.825006 ], [ -122.518458, 37.825311 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824599 ], [ -122.516098, 37.825209 ], [ -122.511892, 37.824328 ], [ -122.511077, 37.824430 ], [ -122.505198, 37.822904 ], [ -122.505412, 37.822091 ], [ -122.504683, 37.821684 ], [ -122.504168, 37.821006 ], [ -122.503352, 37.821209 ], [ -122.502880, 37.820904 ], [ -122.501464, 37.821718 ], [ -122.501292, 37.821209 ], [ -122.499747, 37.819718 ], [ -122.498975, 37.820226 ], [ -122.499876, 37.821819 ], [ -122.498975, 37.822328 ], [ -122.496271, 37.822362 ], [ -122.495499, 37.822430 ], [ -122.494769, 37.822735 ], [ -122.494512, 37.823413 ], [ -122.493482, 37.823819 ], [ -122.493181, 37.824633 ], [ -122.492495, 37.824836 ], [ -122.492065, 37.825345 ], [ -122.491379, 37.825718 ], [ -122.491164, 37.826430 ], [ -122.486272, 37.826226 ], [ -122.483482, 37.826735 ], [ -122.482796, 37.825616 ], [ -122.481380, 37.825921 ], [ -122.479320, 37.825548 ], [ -122.479148, 37.825582 ], [ -122.478375, 37.828091 ], [ -122.479663, 37.830497 ], [ -122.479491, 37.830429 ], [ -122.479191, 37.830870 ], [ -122.478762, 37.831175 ], [ -122.478461, 37.831175 ], [ -122.478375, 37.830972 ], [ -122.478290, 37.831209 ], [ -122.478461, 37.831209 ], [ -122.478633, 37.831311 ], [ -122.478075, 37.832463 ], [ -122.474170, 37.833378 ], [ -122.473612, 37.831921 ], [ -122.472239, 37.832090 ], [ -122.454000, 37.839038 ], [ -122.445502, 37.842428 ], [ -122.424216, 37.850459 ], [ -122.418680, 37.852492 ], [ -122.418766, 37.853441 ], [ -122.419839, 37.860218 ], [ -122.365251, 37.860218 ], [ -122.364221, 37.857507 ], [ -122.355895, 37.835717 ], [ -122.349372, 37.818260 ], [ -122.346883, 37.811411 ], [ -122.343750, 37.806258 ], [ -122.341561, 37.802697 ], [ -122.340317, 37.800697 ], [ -122.340317, 37.715875 ], [ -122.358556, 37.715875 ], [ -122.375636, 37.715875 ], [ -122.398553, 37.715875 ], [ -122.408423, 37.715875 ], [ -122.410741, 37.715875 ], [ -122.427135, 37.715875 ], [ -122.427735, 37.715875 ], [ -122.431684, 37.715875 ], [ -122.436662, 37.715875 ], [ -122.441468, 37.715875 ], [ -122.446532, 37.715875 ], [ -122.449536, 37.715875 ], [ -122.462626, 37.715875 ], [ -122.472281, 37.715875 ], [ -122.485199, 37.715875 ], [ -122.509446, 37.715875 ], [ -122.522964, 37.715875 ], [ -122.522964, 37.789574 ], [ -122.522964, 37.805037 ] ], [ [ -122.440438, 37.717300 ], [ -122.441468, 37.715875 ], [ -122.440438, 37.717232 ], [ -122.440438, 37.717300 ] ], [ [ -122.430396, 37.716418 ], [ -122.427735, 37.715875 ], [ -122.429237, 37.716214 ], [ -122.430396, 37.716418 ] ], [ [ -122.410355, 37.716689 ], [ -122.410741, 37.715875 ], [ -122.410440, 37.716418 ], [ -122.410355, 37.716689 ] ], [ [ -122.475243, 37.719846 ], [ -122.474642, 37.719167 ], [ -122.474513, 37.719066 ], [ -122.475243, 37.719846 ] ], [ [ -122.453356, 37.768238 ], [ -122.448378, 37.768849 ], [ -122.443442, 37.769493 ], [ -122.443142, 37.769561 ], [ -122.453356, 37.768238 ] ], [ [ -122.381730, 37.753174 ], [ -122.391214, 37.752665 ], [ -122.390699, 37.752665 ], [ -122.381730, 37.753174 ] ], [ [ -122.417350, 37.763557 ], [ -122.416577, 37.755583 ], [ -122.416706, 37.757178 ], [ -122.417350, 37.763557 ] ], [ [ -122.423358, 37.778754 ], [ -122.433228, 37.777499 ], [ -122.426662, 37.778313 ], [ -122.423358, 37.778754 ] ], [ [ -122.464771, 37.788556 ], [ -122.465844, 37.788353 ], [ -122.470908, 37.787233 ], [ -122.464771, 37.788556 ] ], [ [ -122.408423, 37.764439 ], [ -122.407951, 37.759316 ], [ -122.407823, 37.758264 ], [ -122.408423, 37.764439 ] ], [ [ -122.446318, 37.791880 ], [ -122.445416, 37.787437 ], [ -122.446103, 37.790998 ], [ -122.446318, 37.791880 ] ], [ [ -122.462282, 37.725142 ], [ -122.462282, 37.721679 ], [ -122.462239, 37.718590 ], [ -122.462282, 37.725142 ] ], [ [ -122.402115, 37.727755 ], [ -122.401471, 37.725515 ], [ -122.401299, 37.725074 ], [ -122.402115, 37.727755 ] ], [ [ -122.441425, 37.748593 ], [ -122.438250, 37.748661 ], [ -122.439709, 37.748661 ], [ -122.441425, 37.748593 ] ], [ [ -122.471724, 37.773259 ], [ -122.471852, 37.775057 ], [ -122.471895, 37.774989 ], [ -122.471724, 37.773259 ] ], [ [ -122.436275, 37.800799 ], [ -122.435675, 37.798018 ], [ -122.436233, 37.800731 ], [ -122.436275, 37.800799 ] ], [ [ -122.418723, 37.775633 ], [ -122.416320, 37.777499 ], [ -122.416406, 37.777465 ], [ -122.418723, 37.775633 ] ], [ [ -122.436962, 37.795949 ], [ -122.436748, 37.795000 ], [ -122.437305, 37.797814 ], [ -122.436962, 37.795949 ] ], [ [ -122.403231, 37.755753 ], [ -122.403145, 37.754464 ], [ -122.402973, 37.752733 ], [ -122.403231, 37.755753 ] ], [ [ -122.414732, 37.778720 ], [ -122.416019, 37.777770 ], [ -122.416277, 37.777567 ], [ -122.416277, 37.777533 ], [ -122.414732, 37.778720 ] ], [ [ -122.418594, 37.739295 ], [ -122.415805, 37.738956 ], [ -122.415891, 37.738990 ], [ -122.418594, 37.739295 ] ], [ [ -122.453356, 37.768238 ], [ -122.453012, 37.766474 ], [ -122.452970, 37.766440 ], [ -122.453356, 37.768238 ] ], [ [ -122.488890, 37.730267 ], [ -122.489190, 37.730335 ], [ -122.486744, 37.729588 ], [ -122.488890, 37.730267 ] ], [ [ -122.422285, 37.748084 ], [ -122.421384, 37.748118 ], [ -122.420783, 37.748152 ], [ -122.421298, 37.748152 ], [ -122.422285, 37.748084 ] ], [ [ -122.477303, 37.765456 ], [ -122.476315, 37.765524 ], [ -122.477431, 37.765490 ], [ -122.477303, 37.765456 ] ], [ [ -122.438979, 37.755380 ], [ -122.440352, 37.755244 ], [ -122.440052, 37.755244 ], [ -122.438979, 37.755380 ] ], [ [ -122.410140, 37.748356 ], [ -122.411342, 37.748356 ], [ -122.410526, 37.748322 ], [ -122.410140, 37.748356 ] ], [ [ -122.474041, 37.765592 ], [ -122.474170, 37.765626 ], [ -122.475114, 37.765592 ], [ -122.474041, 37.765592 ] ], [ [ -122.481551, 37.765253 ], [ -122.481637, 37.765287 ], [ -122.482581, 37.765253 ], [ -122.481551, 37.765253 ] ], [ [ -122.403231, 37.755753 ], [ -122.403402, 37.756466 ], [ -122.403531, 37.756805 ], [ -122.403231, 37.755753 ] ], [ [ -122.414174, 37.738922 ], [ -122.415075, 37.738922 ], [ -122.414646, 37.738888 ], [ -122.414174, 37.738922 ] ], [ [ -122.445030, 37.746999 ], [ -122.445416, 37.746965 ], [ -122.446446, 37.746795 ], [ -122.445030, 37.746999 ] ], [ [ -122.372503, 37.737055 ], [ -122.373276, 37.737089 ], [ -122.373190, 37.737055 ], [ -122.372503, 37.737055 ] ], [ [ -122.430096, 37.729928 ], [ -122.430267, 37.729826 ], [ -122.430568, 37.729520 ], [ -122.430096, 37.729928 ] ], [ [ -122.391300, 37.753276 ], [ -122.391257, 37.752733 ], [ -122.391214, 37.752665 ], [ -122.391300, 37.753276 ] ], [ [ -122.486916, 37.765015 ], [ -122.487001, 37.765049 ], [ -122.487473, 37.765015 ], [ -122.486916, 37.765015 ] ], [ [ -122.426319, 37.769595 ], [ -122.426534, 37.769493 ], [ -122.426791, 37.769290 ], [ -122.426319, 37.769595 ] ], [ [ -122.417779, 37.770443 ], [ -122.418036, 37.770884 ], [ -122.417994, 37.770749 ], [ -122.417779, 37.770443 ] ], [ [ -122.459579, 37.738549 ], [ -122.459278, 37.739058 ], [ -122.459321, 37.739024 ], [ -122.459579, 37.738549 ] ], [ [ -122.419152, 37.775294 ], [ -122.419238, 37.775159 ], [ -122.419281, 37.774955 ], [ -122.419152, 37.775294 ] ], [ [ -122.373748, 37.737361 ], [ -122.373533, 37.737191 ], [ -122.373405, 37.737123 ], [ -122.373748, 37.737361 ] ], [ [ -122.476873, 37.759723 ], [ -122.476702, 37.757925 ], [ -122.476702, 37.757959 ], [ -122.476873, 37.759723 ] ], [ [ -122.405806, 37.785809 ], [ -122.405934, 37.785707 ], [ -122.405849, 37.785741 ], [ -122.405806, 37.785809 ] ], [ [ -122.367439, 37.738311 ], [ -122.367396, 37.738209 ], [ -122.367396, 37.738277 ], [ -122.367439, 37.738311 ] ], [ [ -122.409582, 37.748356 ], [ -122.409668, 37.748356 ], [ -122.409625, 37.748322 ], [ -122.409582, 37.748356 ] ], [ [ -122.484770, 37.765117 ], [ -122.483783, 37.765185 ], [ -122.484813, 37.765117 ], [ -122.484770, 37.765117 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.522964, 37.805037 ], [ -122.522964, 37.824701 ], [ -122.519531, 37.824972 ], [ -122.519274, 37.825006 ], [ -122.518458, 37.825277 ], [ -122.517686, 37.825209 ], [ -122.516785, 37.824599 ], [ -122.516098, 37.825209 ], [ -122.511892, 37.824328 ], [ -122.511077, 37.824430 ], [ -122.505198, 37.822904 ], [ -122.505412, 37.822091 ], [ -122.504683, 37.821684 ], [ -122.504168, 37.821006 ], [ -122.503352, 37.821209 ], [ -122.502880, 37.820904 ], [ -122.501464, 37.821718 ], [ -122.501292, 37.821209 ], [ -122.499747, 37.819718 ], [ -122.498975, 37.820226 ], [ -122.499876, 37.821819 ], [ -122.498975, 37.822328 ], [ -122.496271, 37.822362 ], [ -122.495499, 37.822430 ], [ -122.494769, 37.822735 ], [ -122.494512, 37.823413 ], [ -122.493482, 37.823819 ], [ -122.493181, 37.824633 ], [ -122.492495, 37.824836 ], [ -122.492065, 37.825345 ], [ -122.491379, 37.825718 ], [ -122.491164, 37.826430 ], [ -122.486272, 37.826226 ], [ -122.483482, 37.826735 ], [ -122.482796, 37.825616 ], [ -122.481380, 37.825921 ], [ -122.479320, 37.825548 ], [ -122.479148, 37.825582 ], [ -122.478375, 37.828091 ], [ -122.479663, 37.830497 ], [ -122.479491, 37.830429 ], [ -122.479191, 37.830870 ], [ -122.478762, 37.831175 ], [ -122.478461, 37.831175 ], [ -122.478375, 37.830972 ], [ -122.478290, 37.831209 ], [ -122.478461, 37.831209 ], [ -122.478633, 37.831311 ], [ -122.478075, 37.832463 ], [ -122.474170, 37.833378 ], [ -122.473612, 37.831921 ], [ -122.472239, 37.832090 ], [ -122.454000, 37.839038 ], [ -122.445502, 37.842428 ], [ -122.424216, 37.850459 ], [ -122.418680, 37.852492 ], [ -122.418766, 37.853441 ], [ -122.419839, 37.860218 ], [ -122.365251, 37.860218 ], [ -122.364221, 37.857507 ], [ -122.355895, 37.835717 ], [ -122.349372, 37.818260 ], [ -122.346883, 37.811411 ], [ -122.343750, 37.806258 ], [ -122.341561, 37.802697 ], [ -122.340317, 37.800697 ], [ -122.340317, 37.715875 ], [ -122.358556, 37.715875 ], [ -122.375636, 37.715875 ], [ -122.398553, 37.715875 ], [ -122.408423, 37.715875 ], [ -122.410741, 37.715875 ], [ -122.427135, 37.715875 ], [ -122.427735, 37.715875 ], [ -122.431684, 37.715875 ], [ -122.436662, 37.715875 ], [ -122.441468, 37.715875 ], [ -122.446532, 37.715875 ], [ -122.449536, 37.715875 ], [ -122.462626, 37.715875 ], [ -122.472281, 37.715875 ], [ -122.485199, 37.715875 ], [ -122.509446, 37.715875 ], [ -122.522964, 37.715875 ], [ -122.522964, 37.789574 ], [ -122.522964, 37.805037 ] ], [ [ -122.440438, 37.717300 ], [ -122.441468, 37.715875 ], [ -122.440438, 37.717232 ], [ -122.440438, 37.717300 ] ], [ [ -122.430396, 37.716418 ], [ -122.427735, 37.715875 ], [ -122.429237, 37.716214 ], [ -122.430396, 37.716418 ] ], [ [ -122.410355, 37.716689 ], [ -122.410741, 37.715875 ], [ -122.410440, 37.716418 ], [ -122.410355, 37.716689 ] ], [ [ -122.475243, 37.719846 ], [ -122.474642, 37.719167 ], [ -122.474513, 37.719066 ], [ -122.475243, 37.719846 ] ], [ [ -122.453356, 37.768238 ], [ -122.448378, 37.768849 ], [ -122.443442, 37.769493 ], [ -122.443142, 37.769561 ], [ -122.453356, 37.768238 ] ], [ [ -122.381730, 37.753174 ], [ -122.391214, 37.752665 ], [ -122.390699, 37.752665 ], [ -122.381730, 37.753174 ] ], [ [ -122.423358, 37.778754 ], [ -122.433228, 37.777499 ], [ -122.426620, 37.778313 ], [ -122.423358, 37.778754 ] ], [ [ -122.417350, 37.763557 ], [ -122.416577, 37.755583 ], [ -122.416706, 37.757178 ], [ -122.417350, 37.763557 ] ], [ [ -122.464771, 37.788556 ], [ -122.465844, 37.788353 ], [ -122.470908, 37.787233 ], [ -122.464771, 37.788556 ] ], [ [ -122.408423, 37.764439 ], [ -122.407951, 37.759316 ], [ -122.407823, 37.758264 ], [ -122.408423, 37.764439 ] ], [ [ -122.446318, 37.791880 ], [ -122.445416, 37.787437 ], [ -122.446103, 37.790998 ], [ -122.446318, 37.791880 ] ], [ [ -122.462282, 37.725142 ], [ -122.462282, 37.721679 ], [ -122.462239, 37.718590 ], [ -122.462282, 37.725142 ] ], [ [ -122.402115, 37.727755 ], [ -122.401471, 37.725515 ], [ -122.401299, 37.725074 ], [ -122.402115, 37.727755 ] ], [ [ -122.441425, 37.748593 ], [ -122.438250, 37.748661 ], [ -122.439709, 37.748661 ], [ -122.441425, 37.748593 ] ], [ [ -122.471724, 37.773259 ], [ -122.471852, 37.775057 ], [ -122.471895, 37.774989 ], [ -122.471724, 37.773259 ] ], [ [ -122.436275, 37.800799 ], [ -122.435675, 37.798018 ], [ -122.436233, 37.800731 ], [ -122.436275, 37.800799 ] ], [ [ -122.418723, 37.775633 ], [ -122.416320, 37.777499 ], [ -122.416406, 37.777465 ], [ -122.418723, 37.775633 ] ], [ [ -122.436962, 37.795949 ], [ -122.436748, 37.795000 ], [ -122.437305, 37.797814 ], [ -122.436962, 37.795949 ] ], [ [ -122.403231, 37.755753 ], [ -122.403145, 37.754464 ], [ -122.402973, 37.752733 ], [ -122.403231, 37.755753 ] ], [ [ -122.414732, 37.778720 ], [ -122.416019, 37.777770 ], [ -122.416277, 37.777567 ], [ -122.416277, 37.777533 ], [ -122.414732, 37.778720 ] ], [ [ -122.418594, 37.739295 ], [ -122.415805, 37.738956 ], [ -122.415891, 37.738990 ], [ -122.418594, 37.739295 ] ], [ [ -122.453356, 37.768238 ], [ -122.453012, 37.766474 ], [ -122.452970, 37.766440 ], [ -122.453356, 37.768238 ] ], [ [ -122.488890, 37.730267 ], [ -122.489190, 37.730335 ], [ -122.486744, 37.729588 ], [ -122.488890, 37.730267 ] ], [ [ -122.422285, 37.748084 ], [ -122.421384, 37.748118 ], [ -122.420783, 37.748152 ], [ -122.421298, 37.748152 ], [ -122.422285, 37.748084 ] ], [ [ -122.477303, 37.765456 ], [ -122.476315, 37.765524 ], [ -122.477431, 37.765490 ], [ -122.477303, 37.765456 ] ], [ [ -122.438979, 37.755380 ], [ -122.440352, 37.755244 ], [ -122.440052, 37.755244 ], [ -122.438979, 37.755380 ] ], [ [ -122.410140, 37.748356 ], [ -122.411342, 37.748356 ], [ -122.410526, 37.748322 ], [ -122.410140, 37.748356 ] ], [ [ -122.474041, 37.765592 ], [ -122.474170, 37.765626 ], [ -122.475114, 37.765592 ], [ -122.474041, 37.765592 ] ], [ [ -122.481551, 37.765253 ], [ -122.481637, 37.765287 ], [ -122.482581, 37.765253 ], [ -122.481551, 37.765253 ] ], [ [ -122.403231, 37.755753 ], [ -122.403402, 37.756466 ], [ -122.403531, 37.756805 ], [ -122.403231, 37.755753 ] ], [ [ -122.414174, 37.738922 ], [ -122.415075, 37.738922 ], [ -122.414646, 37.738888 ], [ -122.414174, 37.738922 ] ], [ [ -122.445030, 37.746999 ], [ -122.445416, 37.746965 ], [ -122.446446, 37.746795 ], [ -122.445030, 37.746999 ] ], [ [ -122.372503, 37.737055 ], [ -122.373276, 37.737089 ], [ -122.373190, 37.737055 ], [ -122.372503, 37.737055 ] ], [ [ -122.430096, 37.729928 ], [ -122.430267, 37.729826 ], [ -122.430568, 37.729520 ], [ -122.430096, 37.729928 ] ], [ [ -122.391300, 37.753276 ], [ -122.391257, 37.752733 ], [ -122.391214, 37.752665 ], [ -122.391300, 37.753276 ] ], [ [ -122.486916, 37.765015 ], [ -122.487001, 37.765049 ], [ -122.487473, 37.765015 ], [ -122.486916, 37.765015 ] ], [ [ -122.426319, 37.769595 ], [ -122.426534, 37.769493 ], [ -122.426791, 37.769290 ], [ -122.426319, 37.769595 ] ], [ [ -122.417779, 37.770443 ], [ -122.418036, 37.770884 ], [ -122.417994, 37.770749 ], [ -122.417779, 37.770443 ] ], [ [ -122.459579, 37.738549 ], [ -122.459278, 37.739058 ], [ -122.459321, 37.739024 ], [ -122.459579, 37.738549 ] ], [ [ -122.419152, 37.775294 ], [ -122.419238, 37.775159 ], [ -122.419281, 37.774955 ], [ -122.419152, 37.775294 ] ], [ [ -122.373748, 37.737361 ], [ -122.373533, 37.737191 ], [ -122.373405, 37.737123 ], [ -122.373748, 37.737361 ] ], [ [ -122.476873, 37.759723 ], [ -122.476702, 37.757925 ], [ -122.476702, 37.757959 ], [ -122.476873, 37.759723 ] ], [ [ -122.405806, 37.785809 ], [ -122.405934, 37.785707 ], [ -122.405849, 37.785741 ], [ -122.405806, 37.785809 ] ], [ [ -122.367439, 37.738311 ], [ -122.367396, 37.738209 ], [ -122.367396, 37.738277 ], [ -122.367439, 37.738311 ] ], [ [ -122.409582, 37.748356 ], [ -122.409668, 37.748356 ], [ -122.409625, 37.748322 ], [ -122.409582, 37.748356 ] ], [ [ -122.484770, 37.765117 ], [ -122.483783, 37.765185 ], [ -122.484813, 37.765117 ], [ -122.484770, 37.765117 ] ] ] } } ] } ] } , @@ -87,7 +87,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289376, 37.860218 ], [ -122.280579, 37.860218 ], [ -122.271824, 37.860218 ], [ -122.264400, 37.860218 ], [ -122.253413, 37.860218 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210970, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.208180, 37.851747 ], [ -122.207794, 37.851747 ], [ -122.207322, 37.851510 ], [ -122.204103, 37.851374 ], [ -122.203202, 37.850527 ], [ -122.201743, 37.848697 ], [ -122.200670, 37.847748 ], [ -122.200670, 37.847579 ], [ -122.197623, 37.845342 ], [ -122.196765, 37.844834 ], [ -122.195263, 37.843580 ], [ -122.195306, 37.842800 ], [ -122.196121, 37.842021 ], [ -122.195821, 37.842021 ], [ -122.195606, 37.841919 ], [ -122.195134, 37.841546 ], [ -122.194619, 37.841479 ], [ -122.194319, 37.841377 ], [ -122.193933, 37.841038 ], [ -122.193933, 37.840767 ], [ -122.191787, 37.839818 ], [ -122.189684, 37.838022 ], [ -122.188869, 37.837615 ], [ -122.185264, 37.837039 ], [ -122.184663, 37.835819 ], [ -122.184448, 37.834937 ], [ -122.184191, 37.833921 ], [ -122.185221, 37.832429 ], [ -122.185392, 37.832056 ], [ -122.186594, 37.830429 ], [ -122.187066, 37.829514 ], [ -122.187152, 37.829074 ], [ -122.187195, 37.828735 ], [ -122.187066, 37.827209 ], [ -122.186766, 37.827040 ], [ -122.186723, 37.826870 ], [ -122.185864, 37.825514 ], [ -122.186680, 37.823514 ], [ -122.185993, 37.820735 ], [ -122.181487, 37.819514 ], [ -122.176981, 37.816226 ], [ -122.172775, 37.815819 ], [ -122.167969, 37.813852 ], [ -122.166853, 37.813412 ], [ -122.166681, 37.813615 ], [ -122.164536, 37.814632 ], [ -122.164536, 37.804528 ], [ -122.164536, 37.804427 ], [ -122.164536, 37.803884 ], [ -122.164536, 37.776651 ], [ -122.164536, 37.762912 ], [ -122.164536, 37.762233 ], [ -122.164536, 37.750935 ], [ -122.164536, 37.743978 ], [ -122.164536, 37.736444 ], [ -122.164536, 37.726330 ], [ -122.164536, 37.722901 ], [ -122.164536, 37.722528 ], [ -122.164536, 37.715875 ], [ -122.173591, 37.715875 ], [ -122.195091, 37.715875 ], [ -122.248092, 37.715875 ], [ -122.286630, 37.715875 ], [ -122.288346, 37.718590 ], [ -122.291865, 37.724123 ], [ -122.294483, 37.728027 ], [ -122.310491, 37.753819 ], [ -122.321563, 37.771224 ], [ -122.329459, 37.783604 ], [ -122.336626, 37.795135 ], [ -122.340274, 37.800629 ], [ -122.343750, 37.806258 ], [ -122.346668, 37.811038 ], [ -122.346883, 37.811411 ], [ -122.347183, 37.812259 ], [ -122.347183, 37.860218 ], [ -122.332463, 37.860218 ], [ -122.295213, 37.860218 ], [ -122.294054, 37.860218 ], [ -122.289376, 37.860218 ] ], [ [ -122.174106, 37.731252 ], [ -122.179127, 37.735698 ], [ -122.178268, 37.734883 ], [ -122.174106, 37.731252 ] ], [ [ -122.200112, 37.784554 ], [ -122.196722, 37.786352 ], [ -122.203331, 37.782926 ], [ -122.200112, 37.784554 ] ], [ [ -122.247319, 37.846562 ], [ -122.254958, 37.843546 ], [ -122.251525, 37.844868 ], [ -122.247319, 37.846562 ] ], [ [ -122.237535, 37.793508 ], [ -122.235518, 37.792253 ], [ -122.231569, 37.789913 ], [ -122.237535, 37.793508 ] ], [ [ -122.241054, 37.852018 ], [ -122.234530, 37.852560 ], [ -122.241483, 37.852018 ], [ -122.241054, 37.852018 ] ], [ [ -122.190156, 37.802799 ], [ -122.192173, 37.805241 ], [ -122.193975, 37.807309 ], [ -122.190156, 37.802799 ] ], [ [ -122.224574, 37.753039 ], [ -122.225904, 37.749679 ], [ -122.226548, 37.747915 ], [ -122.224574, 37.753039 ] ], [ [ -122.266760, 37.837581 ], [ -122.267361, 37.840767 ], [ -122.267661, 37.842055 ], [ -122.266760, 37.837581 ] ], [ [ -122.276630, 37.783469 ], [ -122.276630, 37.779670 ], [ -122.276587, 37.780755 ], [ -122.276630, 37.783469 ] ], [ [ -122.196765, 37.831311 ], [ -122.198610, 37.830429 ], [ -122.200069, 37.829650 ], [ -122.196765, 37.831311 ] ], [ [ -122.278690, 37.814564 ], [ -122.274914, 37.813073 ], [ -122.278519, 37.814531 ], [ -122.278690, 37.814564 ] ], [ [ -122.193632, 37.748322 ], [ -122.189341, 37.744589 ], [ -122.190714, 37.745811 ], [ -122.193632, 37.748322 ] ], [ [ -122.210369, 37.787980 ], [ -122.214575, 37.785538 ], [ -122.211957, 37.787030 ], [ -122.210369, 37.787980 ] ], [ [ -122.251139, 37.770850 ], [ -122.252855, 37.768374 ], [ -122.251096, 37.770850 ], [ -122.251139, 37.770850 ] ], [ [ -122.262769, 37.817989 ], [ -122.264271, 37.815615 ], [ -122.265000, 37.814395 ], [ -122.262769, 37.817989 ] ], [ [ -122.289376, 37.860218 ], [ -122.288475, 37.857507 ], [ -122.288775, 37.858524 ], [ -122.289376, 37.860218 ] ], [ [ -122.222085, 37.827243 ], [ -122.222342, 37.827616 ], [ -122.223587, 37.829040 ], [ -122.222085, 37.827243 ] ], [ [ -122.291093, 37.802528 ], [ -122.294483, 37.802053 ], [ -122.291865, 37.802392 ], [ -122.291093, 37.802528 ] ], [ [ -122.228093, 37.778720 ], [ -122.225819, 37.777635 ], [ -122.225947, 37.777737 ], [ -122.228093, 37.778720 ] ], [ [ -122.261353, 37.841546 ], [ -122.260365, 37.841817 ], [ -122.258091, 37.842529 ], [ -122.261353, 37.841546 ] ], [ [ -122.225904, 37.749679 ], [ -122.235217, 37.748695 ], [ -122.235775, 37.748627 ], [ -122.225904, 37.749679 ] ], [ [ -122.167969, 37.761250 ], [ -122.170286, 37.760164 ], [ -122.170501, 37.760028 ], [ -122.167969, 37.761250 ] ], [ [ -122.289248, 37.849985 ], [ -122.292724, 37.849307 ], [ -122.291737, 37.849476 ], [ -122.289248, 37.849985 ] ], [ [ -122.295985, 37.848833 ], [ -122.298646, 37.848189 ], [ -122.298818, 37.848121 ], [ -122.295985, 37.848833 ] ], [ [ -122.216506, 37.812768 ], [ -122.218866, 37.813242 ], [ -122.217493, 37.812937 ], [ -122.216506, 37.812768 ] ], [ [ -122.289977, 37.815615 ], [ -122.289720, 37.816497 ], [ -122.289720, 37.816734 ], [ -122.289977, 37.815615 ] ], [ [ -122.233415, 37.804359 ], [ -122.234058, 37.804834 ], [ -122.234402, 37.805003 ], [ -122.233415, 37.804359 ] ], [ [ -122.226377, 37.831989 ], [ -122.225132, 37.831277 ], [ -122.225175, 37.831345 ], [ -122.226377, 37.831989 ] ], [ [ -122.172518, 37.747236 ], [ -122.172432, 37.747066 ], [ -122.171574, 37.745913 ], [ -122.172518, 37.747236 ] ], [ [ -122.178440, 37.804189 ], [ -122.177367, 37.803308 ], [ -122.178183, 37.804020 ], [ -122.178440, 37.804189 ] ], [ [ -122.240925, 37.830463 ], [ -122.239680, 37.830463 ], [ -122.239380, 37.830497 ], [ -122.240925, 37.830463 ] ], [ [ -122.216549, 37.832531 ], [ -122.215390, 37.831989 ], [ -122.215605, 37.832124 ], [ -122.216549, 37.832531 ] ], [ [ -122.287359, 37.802765 ], [ -122.285643, 37.802460 ], [ -122.286844, 37.802697 ], [ -122.287359, 37.802765 ] ], [ [ -122.258992, 37.813446 ], [ -122.259893, 37.812598 ], [ -122.259378, 37.813039 ], [ -122.258992, 37.813446 ] ], [ [ -122.217579, 37.783706 ], [ -122.216206, 37.784588 ], [ -122.216935, 37.784147 ], [ -122.217579, 37.783706 ] ], [ [ -122.220111, 37.782892 ], [ -122.219338, 37.782451 ], [ -122.219381, 37.782519 ], [ -122.220111, 37.782892 ] ], [ [ -122.221656, 37.855949 ], [ -122.221656, 37.855203 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ] ], [ [ -122.243199, 37.818701 ], [ -122.244315, 37.819107 ], [ -122.244015, 37.818972 ], [ -122.243199, 37.818701 ] ], [ [ -122.254443, 37.801375 ], [ -122.254443, 37.800731 ], [ -122.254400, 37.800900 ], [ -122.254443, 37.801375 ] ], [ [ -122.170115, 37.727789 ], [ -122.171016, 37.727891 ], [ -122.171273, 37.727891 ], [ -122.170115, 37.727789 ] ], [ [ -122.180114, 37.784045 ], [ -122.179255, 37.783978 ], [ -122.179728, 37.784045 ], [ -122.180114, 37.784045 ] ], [ [ -122.270150, 37.796526 ], [ -122.270064, 37.796594 ], [ -122.269807, 37.797102 ], [ -122.270150, 37.796526 ] ], [ [ -122.192559, 37.805139 ], [ -122.192817, 37.805546 ], [ -122.193117, 37.805919 ], [ -122.192559, 37.805139 ] ], [ [ -122.258177, 37.824328 ], [ -122.257404, 37.823921 ], [ -122.257791, 37.824158 ], [ -122.258177, 37.824328 ] ], [ [ -122.235560, 37.842055 ], [ -122.236032, 37.841546 ], [ -122.235732, 37.841817 ], [ -122.235560, 37.842055 ] ], [ [ -122.261310, 37.845037 ], [ -122.261438, 37.844156 ], [ -122.261395, 37.844258 ], [ -122.261310, 37.845037 ] ], [ [ -122.180586, 37.796153 ], [ -122.179728, 37.795881 ], [ -122.180071, 37.796017 ], [ -122.180586, 37.796153 ] ], [ [ -122.172003, 37.796255 ], [ -122.171445, 37.796221 ], [ -122.171316, 37.796255 ], [ -122.172003, 37.796255 ] ], [ [ -122.198567, 37.810191 ], [ -122.199426, 37.810225 ], [ -122.199254, 37.810191 ], [ -122.198567, 37.810191 ] ], [ [ -122.247663, 37.800799 ], [ -122.248392, 37.800459 ], [ -122.248178, 37.800527 ], [ -122.247663, 37.800799 ] ], [ [ -122.259250, 37.809750 ], [ -122.258477, 37.809377 ], [ -122.258348, 37.809343 ], [ -122.259250, 37.809750 ] ], [ [ -122.175479, 37.725244 ], [ -122.176208, 37.725142 ], [ -122.175779, 37.725176 ], [ -122.175479, 37.725244 ] ], [ [ -122.261996, 37.824091 ], [ -122.262082, 37.823752 ], [ -122.262082, 37.823548 ], [ -122.261996, 37.824091 ] ], [ [ -122.278733, 37.827175 ], [ -122.278047, 37.827040 ], [ -122.278605, 37.827175 ], [ -122.278733, 37.827175 ] ], [ [ -122.256503, 37.811954 ], [ -122.256331, 37.811513 ], [ -122.256417, 37.811818 ], [ -122.256503, 37.811954 ] ], [ [ -122.254958, 37.800120 ], [ -122.255430, 37.800019 ], [ -122.255301, 37.800019 ], [ -122.254958, 37.800120 ] ], [ [ -122.243285, 37.811038 ], [ -122.243285, 37.811005 ], [ -122.243242, 37.811005 ], [ -122.243071, 37.811140 ], [ -122.243285, 37.811038 ] ], [ [ -122.264528, 37.808123 ], [ -122.264228, 37.808156 ], [ -122.264013, 37.808224 ], [ -122.264528, 37.808123 ] ], [ [ -122.252898, 37.808055 ], [ -122.253113, 37.807851 ], [ -122.252984, 37.807919 ], [ -122.252898, 37.808055 ] ], [ [ -122.248392, 37.800459 ], [ -122.248821, 37.800358 ], [ -122.248564, 37.800392 ], [ -122.248392, 37.800459 ] ], [ [ -122.214875, 37.812700 ], [ -122.214704, 37.812700 ], [ -122.214789, 37.812734 ], [ -122.214704, 37.812835 ], [ -122.214875, 37.812700 ] ], [ [ -122.242341, 37.830090 ], [ -122.242899, 37.830023 ], [ -122.242727, 37.830023 ], [ -122.242341, 37.830090 ] ], [ [ -122.238564, 37.783164 ], [ -122.238736, 37.783469 ], [ -122.238693, 37.783333 ], [ -122.238564, 37.783164 ] ], [ [ -122.263412, 37.808597 ], [ -122.263842, 37.808292 ], [ -122.263713, 37.808360 ], [ -122.263412, 37.808597 ] ], [ [ -122.171488, 37.727857 ], [ -122.171574, 37.727857 ], [ -122.171702, 37.727755 ], [ -122.171488, 37.727857 ] ], [ [ -122.256804, 37.812361 ], [ -122.256632, 37.812123 ], [ -122.256718, 37.812293 ], [ -122.256804, 37.812361 ] ], [ [ -122.254443, 37.800663 ], [ -122.254572, 37.800493 ], [ -122.254486, 37.800561 ], [ -122.254443, 37.800663 ] ], [ [ -122.201099, 37.754871 ], [ -122.201142, 37.754837 ], [ -122.201014, 37.754837 ], [ -122.201099, 37.754871 ] ], [ [ -122.238607, 37.783774 ], [ -122.238736, 37.783571 ], [ -122.238736, 37.783537 ], [ -122.238607, 37.783774 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289376, 37.860218 ], [ -122.280579, 37.860218 ], [ -122.271824, 37.860218 ], [ -122.264400, 37.860218 ], [ -122.253413, 37.860218 ], [ -122.243929, 37.860218 ], [ -122.221055, 37.860218 ], [ -122.220626, 37.860218 ], [ -122.215519, 37.860218 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211914, 37.856931 ], [ -122.210798, 37.855034 ], [ -122.210970, 37.854525 ], [ -122.208481, 37.851679 ], [ -122.208180, 37.851747 ], [ -122.207794, 37.851747 ], [ -122.207322, 37.851510 ], [ -122.204103, 37.851374 ], [ -122.203202, 37.850527 ], [ -122.201743, 37.848697 ], [ -122.200670, 37.847748 ], [ -122.200670, 37.847579 ], [ -122.197623, 37.845342 ], [ -122.196765, 37.844834 ], [ -122.195263, 37.843580 ], [ -122.195306, 37.842800 ], [ -122.196121, 37.842021 ], [ -122.195821, 37.842021 ], [ -122.195606, 37.841919 ], [ -122.195134, 37.841546 ], [ -122.194619, 37.841479 ], [ -122.194319, 37.841377 ], [ -122.193933, 37.841038 ], [ -122.193933, 37.840767 ], [ -122.191787, 37.839818 ], [ -122.189684, 37.838022 ], [ -122.188869, 37.837615 ], [ -122.185264, 37.837039 ], [ -122.184663, 37.835819 ], [ -122.184448, 37.834937 ], [ -122.184191, 37.833921 ], [ -122.185221, 37.832429 ], [ -122.185392, 37.832056 ], [ -122.186594, 37.830429 ], [ -122.187066, 37.829514 ], [ -122.187152, 37.829074 ], [ -122.187195, 37.828735 ], [ -122.187066, 37.827209 ], [ -122.186766, 37.827040 ], [ -122.186723, 37.826870 ], [ -122.185864, 37.825514 ], [ -122.186680, 37.823514 ], [ -122.185993, 37.820735 ], [ -122.181487, 37.819514 ], [ -122.176981, 37.816226 ], [ -122.172775, 37.815819 ], [ -122.167969, 37.813852 ], [ -122.166853, 37.813412 ], [ -122.166681, 37.813615 ], [ -122.164536, 37.814632 ], [ -122.164536, 37.804528 ], [ -122.164536, 37.804427 ], [ -122.164536, 37.803884 ], [ -122.164536, 37.776651 ], [ -122.164536, 37.762912 ], [ -122.164536, 37.762233 ], [ -122.164536, 37.750935 ], [ -122.164536, 37.743978 ], [ -122.164536, 37.736444 ], [ -122.164536, 37.726330 ], [ -122.164536, 37.722901 ], [ -122.164536, 37.722528 ], [ -122.164536, 37.715875 ], [ -122.173591, 37.715875 ], [ -122.195091, 37.715875 ], [ -122.248092, 37.715875 ], [ -122.286630, 37.715875 ], [ -122.288346, 37.718590 ], [ -122.291865, 37.724123 ], [ -122.294483, 37.728027 ], [ -122.310491, 37.753819 ], [ -122.321563, 37.771224 ], [ -122.329459, 37.783604 ], [ -122.336626, 37.795135 ], [ -122.340274, 37.800629 ], [ -122.343750, 37.806258 ], [ -122.346668, 37.811038 ], [ -122.346883, 37.811411 ], [ -122.347183, 37.812259 ], [ -122.347183, 37.860218 ], [ -122.332463, 37.860218 ], [ -122.295213, 37.860218 ], [ -122.294054, 37.860218 ], [ -122.289376, 37.860218 ] ], [ [ -122.174106, 37.731252 ], [ -122.179127, 37.735698 ], [ -122.178268, 37.734883 ], [ -122.174106, 37.731252 ] ], [ [ -122.200112, 37.784554 ], [ -122.196722, 37.786352 ], [ -122.203331, 37.782926 ], [ -122.200112, 37.784554 ] ], [ [ -122.247319, 37.846562 ], [ -122.254958, 37.843546 ], [ -122.251525, 37.844868 ], [ -122.247319, 37.846562 ] ], [ [ -122.237535, 37.793508 ], [ -122.235518, 37.792253 ], [ -122.231569, 37.789913 ], [ -122.237535, 37.793508 ] ], [ [ -122.241054, 37.852018 ], [ -122.234530, 37.852560 ], [ -122.241483, 37.852018 ], [ -122.241054, 37.852018 ] ], [ [ -122.190156, 37.802799 ], [ -122.192173, 37.805241 ], [ -122.193975, 37.807309 ], [ -122.190156, 37.802799 ] ], [ [ -122.224574, 37.753039 ], [ -122.225904, 37.749679 ], [ -122.226548, 37.747915 ], [ -122.224574, 37.753039 ] ], [ [ -122.266760, 37.837581 ], [ -122.267361, 37.840767 ], [ -122.267661, 37.842055 ], [ -122.266760, 37.837581 ] ], [ [ -122.276630, 37.783469 ], [ -122.276630, 37.779670 ], [ -122.276587, 37.780755 ], [ -122.276630, 37.783469 ] ], [ [ -122.196765, 37.831311 ], [ -122.198610, 37.830429 ], [ -122.200069, 37.829650 ], [ -122.196765, 37.831311 ] ], [ [ -122.278690, 37.814564 ], [ -122.274914, 37.813073 ], [ -122.278519, 37.814531 ], [ -122.278690, 37.814564 ] ], [ [ -122.193632, 37.748322 ], [ -122.189341, 37.744589 ], [ -122.190714, 37.745811 ], [ -122.193632, 37.748322 ] ], [ [ -122.210369, 37.787980 ], [ -122.214575, 37.785538 ], [ -122.211957, 37.787030 ], [ -122.210369, 37.787980 ] ], [ [ -122.251139, 37.770850 ], [ -122.252855, 37.768374 ], [ -122.251096, 37.770850 ], [ -122.251139, 37.770850 ] ], [ [ -122.262769, 37.817989 ], [ -122.264271, 37.815615 ], [ -122.265000, 37.814395 ], [ -122.262769, 37.817989 ] ], [ [ -122.289376, 37.860218 ], [ -122.288475, 37.857507 ], [ -122.288775, 37.858524 ], [ -122.289376, 37.860218 ] ], [ [ -122.222085, 37.827243 ], [ -122.222342, 37.827616 ], [ -122.223587, 37.829040 ], [ -122.222085, 37.827243 ] ], [ [ -122.291093, 37.802528 ], [ -122.294483, 37.802053 ], [ -122.291865, 37.802392 ], [ -122.291093, 37.802528 ] ], [ [ -122.228093, 37.778720 ], [ -122.225819, 37.777635 ], [ -122.225947, 37.777737 ], [ -122.228093, 37.778720 ] ], [ [ -122.261353, 37.841546 ], [ -122.260365, 37.841817 ], [ -122.258091, 37.842529 ], [ -122.261353, 37.841546 ] ], [ [ -122.225904, 37.749679 ], [ -122.235217, 37.748695 ], [ -122.235775, 37.748627 ], [ -122.225904, 37.749679 ] ], [ [ -122.167969, 37.761250 ], [ -122.170286, 37.760164 ], [ -122.170501, 37.760028 ], [ -122.167969, 37.761250 ] ], [ [ -122.289248, 37.849985 ], [ -122.292724, 37.849307 ], [ -122.291737, 37.849476 ], [ -122.289248, 37.849985 ] ], [ [ -122.295985, 37.848833 ], [ -122.298646, 37.848189 ], [ -122.298818, 37.848121 ], [ -122.295985, 37.848833 ] ], [ [ -122.216506, 37.812768 ], [ -122.218866, 37.813242 ], [ -122.217493, 37.812937 ], [ -122.216506, 37.812768 ] ], [ [ -122.177753, 37.765355 ], [ -122.179985, 37.763964 ], [ -122.180972, 37.763319 ], [ -122.177753, 37.765355 ] ], [ [ -122.289977, 37.815615 ], [ -122.289720, 37.816497 ], [ -122.289720, 37.816734 ], [ -122.289977, 37.815615 ] ], [ [ -122.233415, 37.804359 ], [ -122.234058, 37.804834 ], [ -122.234402, 37.805003 ], [ -122.233415, 37.804359 ] ], [ [ -122.226377, 37.831989 ], [ -122.225132, 37.831277 ], [ -122.225175, 37.831345 ], [ -122.226377, 37.831989 ] ], [ [ -122.172518, 37.747236 ], [ -122.172432, 37.747066 ], [ -122.171574, 37.745913 ], [ -122.172518, 37.747236 ] ], [ [ -122.178440, 37.804189 ], [ -122.177367, 37.803308 ], [ -122.178183, 37.804020 ], [ -122.178440, 37.804189 ] ], [ [ -122.240925, 37.830463 ], [ -122.239680, 37.830463 ], [ -122.239380, 37.830497 ], [ -122.240925, 37.830463 ] ], [ [ -122.216549, 37.832531 ], [ -122.215390, 37.831989 ], [ -122.215605, 37.832124 ], [ -122.216549, 37.832531 ] ], [ [ -122.287359, 37.802765 ], [ -122.285643, 37.802460 ], [ -122.286844, 37.802697 ], [ -122.287359, 37.802765 ] ], [ [ -122.258992, 37.813446 ], [ -122.259893, 37.812598 ], [ -122.259378, 37.813039 ], [ -122.258992, 37.813446 ] ], [ [ -122.217579, 37.783706 ], [ -122.216206, 37.784588 ], [ -122.216935, 37.784147 ], [ -122.217579, 37.783706 ] ], [ [ -122.220111, 37.782892 ], [ -122.219338, 37.782451 ], [ -122.219381, 37.782519 ], [ -122.220111, 37.782892 ] ], [ [ -122.221656, 37.855949 ], [ -122.221656, 37.855203 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ] ], [ [ -122.243199, 37.818701 ], [ -122.244315, 37.819107 ], [ -122.244015, 37.818972 ], [ -122.243199, 37.818701 ] ], [ [ -122.254443, 37.801375 ], [ -122.254443, 37.800731 ], [ -122.254400, 37.800900 ], [ -122.254443, 37.801375 ] ], [ [ -122.170115, 37.727789 ], [ -122.171016, 37.727891 ], [ -122.171273, 37.727891 ], [ -122.170115, 37.727789 ] ], [ [ -122.180114, 37.784045 ], [ -122.179255, 37.783978 ], [ -122.179728, 37.784045 ], [ -122.180114, 37.784045 ] ], [ [ -122.270150, 37.796526 ], [ -122.270064, 37.796594 ], [ -122.269807, 37.797102 ], [ -122.270150, 37.796526 ] ], [ [ -122.192559, 37.805139 ], [ -122.192817, 37.805546 ], [ -122.193117, 37.805919 ], [ -122.192559, 37.805139 ] ], [ [ -122.258177, 37.824328 ], [ -122.257404, 37.823921 ], [ -122.257791, 37.824158 ], [ -122.258177, 37.824328 ] ], [ [ -122.235560, 37.842055 ], [ -122.236032, 37.841546 ], [ -122.235732, 37.841817 ], [ -122.235560, 37.842055 ] ], [ [ -122.261310, 37.845037 ], [ -122.261438, 37.844156 ], [ -122.261395, 37.844258 ], [ -122.261310, 37.845037 ] ], [ [ -122.180586, 37.796153 ], [ -122.179728, 37.795881 ], [ -122.180071, 37.796017 ], [ -122.180586, 37.796153 ] ], [ [ -122.172003, 37.796255 ], [ -122.171445, 37.796221 ], [ -122.171316, 37.796255 ], [ -122.172003, 37.796255 ] ], [ [ -122.198567, 37.810191 ], [ -122.199426, 37.810225 ], [ -122.199254, 37.810191 ], [ -122.198567, 37.810191 ] ], [ [ -122.247663, 37.800799 ], [ -122.248392, 37.800459 ], [ -122.248178, 37.800527 ], [ -122.247663, 37.800799 ] ], [ [ -122.259250, 37.809750 ], [ -122.258477, 37.809377 ], [ -122.258348, 37.809343 ], [ -122.259250, 37.809750 ] ], [ [ -122.175479, 37.725244 ], [ -122.176208, 37.725142 ], [ -122.175779, 37.725176 ], [ -122.175479, 37.725244 ] ], [ [ -122.261996, 37.824091 ], [ -122.262082, 37.823752 ], [ -122.262082, 37.823548 ], [ -122.261996, 37.824091 ] ], [ [ -122.278733, 37.827175 ], [ -122.278047, 37.827040 ], [ -122.278605, 37.827175 ], [ -122.278733, 37.827175 ] ], [ [ -122.256503, 37.811954 ], [ -122.256331, 37.811513 ], [ -122.256417, 37.811818 ], [ -122.256503, 37.811954 ] ], [ [ -122.254958, 37.800120 ], [ -122.255430, 37.800019 ], [ -122.255301, 37.800019 ], [ -122.254958, 37.800120 ] ], [ [ -122.243285, 37.811038 ], [ -122.243285, 37.811005 ], [ -122.243242, 37.811005 ], [ -122.243071, 37.811140 ], [ -122.243285, 37.811038 ] ], [ [ -122.264528, 37.808123 ], [ -122.264228, 37.808156 ], [ -122.264013, 37.808224 ], [ -122.264528, 37.808123 ] ], [ [ -122.252898, 37.808055 ], [ -122.253113, 37.807851 ], [ -122.252984, 37.807919 ], [ -122.252898, 37.808055 ] ], [ [ -122.214875, 37.812700 ], [ -122.214704, 37.812700 ], [ -122.214789, 37.812734 ], [ -122.214704, 37.812835 ], [ -122.214875, 37.812700 ] ], [ [ -122.242341, 37.830090 ], [ -122.242899, 37.830023 ], [ -122.242727, 37.830023 ], [ -122.242341, 37.830090 ] ], [ [ -122.238564, 37.783164 ], [ -122.238736, 37.783469 ], [ -122.238693, 37.783333 ], [ -122.238564, 37.783164 ] ], [ [ -122.263412, 37.808597 ], [ -122.263842, 37.808292 ], [ -122.263713, 37.808360 ], [ -122.263412, 37.808597 ] ], [ [ -122.171488, 37.727857 ], [ -122.171574, 37.727857 ], [ -122.171702, 37.727755 ], [ -122.171488, 37.727857 ] ], [ [ -122.256804, 37.812361 ], [ -122.256632, 37.812123 ], [ -122.256718, 37.812293 ], [ -122.256804, 37.812361 ] ], [ [ -122.254443, 37.800663 ], [ -122.254572, 37.800493 ], [ -122.254486, 37.800561 ], [ -122.254443, 37.800663 ] ], [ [ -122.201099, 37.754871 ], [ -122.201142, 37.754837 ], [ -122.201014, 37.754837 ], [ -122.201099, 37.754871 ] ], [ [ -122.238607, 37.783774 ], [ -122.238736, 37.783571 ], [ -122.238736, 37.783537 ], [ -122.238607, 37.783774 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.347183, 37.812259 ], [ -122.346883, 37.811411 ], [ -122.343750, 37.806258 ], [ -122.340274, 37.800629 ], [ -122.336626, 37.795135 ], [ -122.329459, 37.783604 ], [ -122.310491, 37.753819 ], [ -122.294483, 37.728027 ], [ -122.291865, 37.724123 ], [ -122.288346, 37.718590 ], [ -122.286630, 37.715875 ], [ -122.347183, 37.715875 ], [ -122.347183, 37.812259 ] ] ] } } ] } @@ -95,19 +95,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 328, "y": 790 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286029, 37.899003 ], [ -122.284999, 37.899240 ], [ -122.284098, 37.899815 ], [ -122.282982, 37.900323 ], [ -122.281394, 37.900628 ], [ -122.279892, 37.900628 ], [ -122.277961, 37.901610 ], [ -122.278390, 37.903235 ], [ -122.276201, 37.903811 ], [ -122.275085, 37.904421 ], [ -122.274699, 37.904725 ], [ -122.274098, 37.905064 ], [ -122.271094, 37.905809 ], [ -122.271781, 37.904929 ], [ -122.271695, 37.904725 ], [ -122.270279, 37.904353 ], [ -122.270236, 37.904353 ], [ -122.270064, 37.904421 ], [ -122.269807, 37.904421 ], [ -122.269378, 37.904285 ], [ -122.269249, 37.904184 ], [ -122.268305, 37.903980 ], [ -122.268090, 37.903980 ], [ -122.267232, 37.904455 ], [ -122.265902, 37.904387 ], [ -122.265215, 37.904217 ], [ -122.264657, 37.903777 ], [ -122.263927, 37.903743 ], [ -122.262726, 37.902321 ], [ -122.262383, 37.901712 ], [ -122.261910, 37.901508 ], [ -122.261438, 37.901475 ], [ -122.261310, 37.901407 ], [ -122.261224, 37.901271 ], [ -122.261267, 37.901136 ], [ -122.261138, 37.899985 ], [ -122.260966, 37.899781 ], [ -122.260795, 37.899646 ], [ -122.260709, 37.899646 ], [ -122.260108, 37.899883 ], [ -122.259679, 37.899883 ], [ -122.259464, 37.899781 ], [ -122.258649, 37.899003 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899138 ], [ -122.257190, 37.899815 ], [ -122.256932, 37.899849 ], [ -122.256589, 37.899443 ], [ -122.256374, 37.898901 ], [ -122.256031, 37.898325 ], [ -122.256331, 37.897851 ], [ -122.256289, 37.896971 ], [ -122.256031, 37.896632 ], [ -122.255816, 37.896463 ], [ -122.255473, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255044, 37.896327 ], [ -122.254915, 37.896361 ], [ -122.254400, 37.896192 ], [ -122.253757, 37.896226 ], [ -122.253113, 37.895616 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894498 ], [ -122.252812, 37.894431 ], [ -122.253113, 37.894058 ], [ -122.252941, 37.893753 ], [ -122.252555, 37.893686 ], [ -122.252340, 37.893550 ], [ -122.252126, 37.893550 ], [ -122.251439, 37.893821 ], [ -122.251139, 37.893855 ], [ -122.249465, 37.893076 ], [ -122.248993, 37.891213 ], [ -122.248950, 37.891213 ], [ -122.248693, 37.890841 ], [ -122.249551, 37.889926 ], [ -122.249765, 37.889622 ], [ -122.249465, 37.889215 ], [ -122.249508, 37.888267 ], [ -122.248993, 37.887318 ], [ -122.248993, 37.887115 ], [ -122.248821, 37.886777 ], [ -122.248135, 37.886336 ], [ -122.246675, 37.885252 ], [ -122.244058, 37.883220 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882915 ], [ -122.238693, 37.883322 ], [ -122.230968, 37.881323 ], [ -122.225776, 37.879223 ], [ -122.223887, 37.878342 ], [ -122.221570, 37.875531 ], [ -122.218738, 37.872922 ], [ -122.217364, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217879, 37.867875 ], [ -122.219167, 37.867231 ], [ -122.221484, 37.865029 ], [ -122.220368, 37.864419 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211871, 37.856863 ], [ -122.210798, 37.855034 ], [ -122.210841, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.262297, 37.854796 ], [ -122.268863, 37.854796 ], [ -122.271223, 37.854796 ], [ -122.279463, 37.854796 ], [ -122.287617, 37.854796 ], [ -122.326627, 37.854796 ], [ -122.347183, 37.854796 ], [ -122.347183, 37.889723 ], [ -122.343750, 37.890502 ], [ -122.338257, 37.891721 ], [ -122.335682, 37.892297 ], [ -122.333407, 37.892805 ], [ -122.312980, 37.897309 ], [ -122.311778, 37.897513 ], [ -122.310877, 37.897817 ], [ -122.309461, 37.897817 ], [ -122.308774, 37.898021 ], [ -122.306199, 37.898224 ], [ -122.305341, 37.898427 ], [ -122.304568, 37.898427 ], [ -122.303710, 37.898528 ], [ -122.301607, 37.898528 ], [ -122.300277, 37.898224 ], [ -122.299376, 37.898325 ], [ -122.297788, 37.898833 ], [ -122.297015, 37.898935 ], [ -122.296200, 37.898935 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.291994, 37.898224 ], [ -122.291093, 37.897919 ], [ -122.290192, 37.897817 ], [ -122.289462, 37.897817 ], [ -122.288475, 37.897919 ], [ -122.287188, 37.898630 ], [ -122.286930, 37.898698 ], [ -122.286029, 37.899003 ] ], [ [ -122.222342, 37.854966 ], [ -122.222643, 37.854864 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ] ], [ [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222729, 37.854864 ], [ -122.223287, 37.855101 ] ], [ [ -122.297745, 37.867942 ], [ -122.296286, 37.863538 ], [ -122.296929, 37.865571 ], [ -122.297745, 37.867942 ] ], [ [ -122.301135, 37.896666 ], [ -122.298260, 37.887759 ], [ -122.299032, 37.890265 ], [ -122.301135, 37.896666 ] ], [ [ -122.221656, 37.855949 ], [ -122.221656, 37.855203 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ] ], [ [ -122.287188, 37.890909 ], [ -122.292852, 37.890604 ], [ -122.290363, 37.890705 ], [ -122.287188, 37.890909 ] ], [ [ -122.292209, 37.869027 ], [ -122.293625, 37.873464 ], [ -122.293925, 37.874311 ], [ -122.292209, 37.869027 ] ], [ [ -122.295942, 37.862522 ], [ -122.295513, 37.860963 ], [ -122.295170, 37.860014 ], [ -122.295942, 37.862522 ] ], [ [ -122.299032, 37.890265 ], [ -122.296071, 37.890401 ], [ -122.294526, 37.890502 ], [ -122.299032, 37.890265 ] ], [ [ -122.260194, 37.885964 ], [ -122.258992, 37.884643 ], [ -122.259035, 37.884744 ], [ -122.260194, 37.885964 ] ], [ [ -122.270494, 37.904116 ], [ -122.270536, 37.903913 ], [ -122.270665, 37.901813 ], [ -122.270494, 37.904116 ] ], [ [ -122.274957, 37.889181 ], [ -122.272854, 37.889791 ], [ -122.272725, 37.889859 ], [ -122.274957, 37.889181 ] ], [ [ -122.264657, 37.874379 ], [ -122.265387, 37.874311 ], [ -122.266331, 37.874176 ], [ -122.264657, 37.874379 ] ], [ [ -122.255602, 37.880206 ], [ -122.256160, 37.880104 ], [ -122.256331, 37.880036 ], [ -122.255602, 37.880206 ] ], [ [ -122.258949, 37.884135 ], [ -122.258906, 37.884507 ], [ -122.258949, 37.884575 ], [ -122.258949, 37.884135 ] ], [ [ -122.262855, 37.884575 ], [ -122.262812, 37.885049 ], [ -122.262855, 37.884914 ], [ -122.262855, 37.884575 ] ], [ [ -122.274485, 37.884948 ], [ -122.274528, 37.884880 ], [ -122.274485, 37.884812 ], [ -122.274485, 37.884948 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286029, 37.899003 ], [ -122.284999, 37.899240 ], [ -122.284098, 37.899815 ], [ -122.282982, 37.900323 ], [ -122.281394, 37.900628 ], [ -122.279892, 37.900628 ], [ -122.277961, 37.901610 ], [ -122.278390, 37.903235 ], [ -122.276201, 37.903811 ], [ -122.275085, 37.904421 ], [ -122.274699, 37.904725 ], [ -122.274098, 37.905064 ], [ -122.271094, 37.905809 ], [ -122.271781, 37.904929 ], [ -122.271695, 37.904725 ], [ -122.270279, 37.904353 ], [ -122.270236, 37.904353 ], [ -122.270064, 37.904421 ], [ -122.269807, 37.904421 ], [ -122.269378, 37.904285 ], [ -122.269249, 37.904184 ], [ -122.268305, 37.903980 ], [ -122.268090, 37.903980 ], [ -122.267232, 37.904455 ], [ -122.265902, 37.904387 ], [ -122.265215, 37.904217 ], [ -122.264657, 37.903777 ], [ -122.263927, 37.903743 ], [ -122.262726, 37.902321 ], [ -122.262383, 37.901712 ], [ -122.261910, 37.901508 ], [ -122.261438, 37.901475 ], [ -122.261310, 37.901407 ], [ -122.261224, 37.901271 ], [ -122.261267, 37.901136 ], [ -122.261138, 37.899985 ], [ -122.260966, 37.899781 ], [ -122.260795, 37.899646 ], [ -122.260709, 37.899646 ], [ -122.260108, 37.899883 ], [ -122.259679, 37.899883 ], [ -122.259336, 37.899680 ], [ -122.258649, 37.899003 ], [ -122.258434, 37.898969 ], [ -122.258005, 37.899138 ], [ -122.257190, 37.899815 ], [ -122.256932, 37.899849 ], [ -122.256589, 37.899443 ], [ -122.256374, 37.898901 ], [ -122.256031, 37.898325 ], [ -122.256331, 37.897750 ], [ -122.256289, 37.896971 ], [ -122.256031, 37.896632 ], [ -122.255816, 37.896463 ], [ -122.255473, 37.896260 ], [ -122.255173, 37.896260 ], [ -122.255044, 37.896327 ], [ -122.254915, 37.896361 ], [ -122.254400, 37.896192 ], [ -122.253757, 37.896226 ], [ -122.253113, 37.895616 ], [ -122.252684, 37.895006 ], [ -122.252684, 37.894498 ], [ -122.252812, 37.894431 ], [ -122.253113, 37.894058 ], [ -122.252941, 37.893753 ], [ -122.252555, 37.893686 ], [ -122.252340, 37.893550 ], [ -122.252126, 37.893550 ], [ -122.251439, 37.893821 ], [ -122.251139, 37.893855 ], [ -122.249465, 37.893076 ], [ -122.248993, 37.891213 ], [ -122.248950, 37.891213 ], [ -122.248693, 37.890841 ], [ -122.249551, 37.889926 ], [ -122.249765, 37.889622 ], [ -122.249465, 37.889215 ], [ -122.249508, 37.888267 ], [ -122.248993, 37.887318 ], [ -122.248993, 37.887115 ], [ -122.248821, 37.886777 ], [ -122.248135, 37.886336 ], [ -122.246675, 37.885252 ], [ -122.244058, 37.883220 ], [ -122.241998, 37.881933 ], [ -122.239895, 37.882915 ], [ -122.238693, 37.883322 ], [ -122.230968, 37.881323 ], [ -122.225776, 37.879223 ], [ -122.223887, 37.878342 ], [ -122.221570, 37.875531 ], [ -122.218738, 37.872922 ], [ -122.217364, 37.871737 ], [ -122.216291, 37.868823 ], [ -122.217107, 37.868417 ], [ -122.217879, 37.867875 ], [ -122.219167, 37.867231 ], [ -122.221484, 37.865029 ], [ -122.220368, 37.864419 ], [ -122.217536, 37.862014 ], [ -122.214746, 37.859506 ], [ -122.213502, 37.857846 ], [ -122.213202, 37.857609 ], [ -122.212987, 37.857507 ], [ -122.212386, 37.857236 ], [ -122.211871, 37.856863 ], [ -122.210798, 37.855034 ], [ -122.210841, 37.854796 ], [ -122.223501, 37.854796 ], [ -122.234445, 37.854796 ], [ -122.252941, 37.854796 ], [ -122.262297, 37.854796 ], [ -122.268863, 37.854796 ], [ -122.271223, 37.854796 ], [ -122.279463, 37.854796 ], [ -122.287617, 37.854796 ], [ -122.326627, 37.854796 ], [ -122.347183, 37.854796 ], [ -122.347183, 37.889723 ], [ -122.343750, 37.890502 ], [ -122.338257, 37.891721 ], [ -122.335682, 37.892297 ], [ -122.333407, 37.892805 ], [ -122.312980, 37.897309 ], [ -122.311778, 37.897513 ], [ -122.310877, 37.897817 ], [ -122.309461, 37.897817 ], [ -122.308774, 37.898021 ], [ -122.306199, 37.898224 ], [ -122.305341, 37.898427 ], [ -122.304568, 37.898427 ], [ -122.303710, 37.898528 ], [ -122.301607, 37.898528 ], [ -122.300277, 37.898224 ], [ -122.299376, 37.898325 ], [ -122.297788, 37.898833 ], [ -122.297015, 37.898935 ], [ -122.296200, 37.898935 ], [ -122.293582, 37.898630 ], [ -122.293196, 37.898427 ], [ -122.291994, 37.898224 ], [ -122.291093, 37.897919 ], [ -122.290192, 37.897817 ], [ -122.289462, 37.897817 ], [ -122.288475, 37.897919 ], [ -122.287188, 37.898630 ], [ -122.286930, 37.898698 ], [ -122.286029, 37.899003 ] ], [ [ -122.222342, 37.854966 ], [ -122.222643, 37.854864 ], [ -122.222600, 37.854864 ], [ -122.222342, 37.854966 ] ], [ [ -122.223287, 37.855101 ], [ -122.222857, 37.854898 ], [ -122.222729, 37.854864 ], [ -122.223287, 37.855101 ] ], [ [ -122.297745, 37.867942 ], [ -122.296286, 37.863538 ], [ -122.296929, 37.865571 ], [ -122.297745, 37.867942 ] ], [ [ -122.301135, 37.896666 ], [ -122.298260, 37.887759 ], [ -122.299032, 37.890265 ], [ -122.301135, 37.896666 ] ], [ [ -122.221656, 37.855949 ], [ -122.221656, 37.855203 ], [ -122.221613, 37.855271 ], [ -122.221656, 37.855949 ] ], [ [ -122.287188, 37.890909 ], [ -122.292852, 37.890604 ], [ -122.290363, 37.890705 ], [ -122.287188, 37.890909 ] ], [ [ -122.292209, 37.869027 ], [ -122.293625, 37.873464 ], [ -122.293925, 37.874311 ], [ -122.292209, 37.869027 ] ], [ [ -122.295942, 37.862522 ], [ -122.295513, 37.860963 ], [ -122.295170, 37.860014 ], [ -122.295942, 37.862522 ] ], [ [ -122.299032, 37.890265 ], [ -122.296071, 37.890401 ], [ -122.294526, 37.890502 ], [ -122.299032, 37.890265 ] ], [ [ -122.260194, 37.885964 ], [ -122.258992, 37.884643 ], [ -122.259035, 37.884744 ], [ -122.260194, 37.885964 ] ], [ [ -122.270494, 37.904116 ], [ -122.270536, 37.903913 ], [ -122.270665, 37.901813 ], [ -122.270494, 37.904116 ] ], [ [ -122.274957, 37.889181 ], [ -122.272854, 37.889791 ], [ -122.272725, 37.889859 ], [ -122.274957, 37.889181 ] ], [ [ -122.264657, 37.874379 ], [ -122.265387, 37.874311 ], [ -122.266331, 37.874176 ], [ -122.264657, 37.874379 ] ], [ [ -122.255602, 37.880206 ], [ -122.256160, 37.880104 ], [ -122.256331, 37.880036 ], [ -122.255602, 37.880206 ] ], [ [ -122.258949, 37.884135 ], [ -122.258906, 37.884507 ], [ -122.258949, 37.884575 ], [ -122.258949, 37.884135 ] ], [ [ -122.262855, 37.884575 ], [ -122.262812, 37.885049 ], [ -122.262855, 37.884914 ], [ -122.262855, 37.884575 ] ], [ [ -122.274485, 37.884948 ], [ -122.274528, 37.884880 ], [ -122.274485, 37.884812 ], [ -122.274485, 37.884948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 793 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.992359, 37.582133 ], [ -121.988754, 37.582133 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.569141 ], [ -121.988754, 37.565025 ], [ -121.988754, 37.555091 ], [ -121.988754, 37.544305 ], [ -121.988754, 37.531374 ], [ -121.988754, 37.522899 ], [ -121.988754, 37.521333 ], [ -121.988754, 37.463482 ], [ -121.992188, 37.464504 ], [ -121.992660, 37.464640 ], [ -121.994290, 37.466036 ], [ -121.995492, 37.466752 ], [ -121.996479, 37.467024 ], [ -121.996651, 37.467229 ], [ -121.997166, 37.467126 ], [ -121.997766, 37.467126 ], [ -122.001071, 37.466854 ], [ -122.020855, 37.465151 ], [ -122.021155, 37.465083 ], [ -122.022529, 37.465151 ], [ -122.023816, 37.465423 ], [ -122.025404, 37.465628 ], [ -122.029910, 37.465321 ], [ -122.036176, 37.464980 ], [ -122.037249, 37.464708 ], [ -122.038364, 37.464163 ], [ -122.040682, 37.462971 ], [ -122.042527, 37.461813 ], [ -122.044587, 37.460654 ], [ -122.046561, 37.459530 ], [ -122.047806, 37.459019 ], [ -122.048965, 37.458917 ], [ -122.050295, 37.458917 ], [ -122.051239, 37.459019 ], [ -122.051926, 37.459258 ], [ -122.057505, 37.462698 ], [ -122.081494, 37.477821 ], [ -122.103982, 37.493690 ], [ -122.109604, 37.497674 ], [ -122.115698, 37.504858 ], [ -122.116213, 37.505538 ], [ -122.117372, 37.506832 ], [ -122.117372, 37.506900 ], [ -122.149429, 37.546143 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569583 ], [ -122.171402, 37.573869 ], [ -122.171402, 37.582133 ], [ -122.153506, 37.582133 ], [ -122.096171, 37.582133 ], [ -122.080936, 37.582133 ], [ -122.076259, 37.582133 ], [ -122.071967, 37.582133 ], [ -122.065229, 37.582133 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ], [ -122.029095, 37.582133 ], [ -122.023258, 37.582133 ], [ -122.006693, 37.582133 ], [ -122.005663, 37.582133 ], [ -121.992359, 37.582133 ] ], [ [ -122.059307, 37.569413 ], [ -122.056346, 37.554989 ], [ -122.056389, 37.555431 ], [ -122.059307, 37.569413 ] ], [ [ -122.022786, 37.566045 ], [ -122.023988, 37.566657 ], [ -122.027850, 37.568494 ], [ -122.022786, 37.566045 ] ], [ [ -122.014589, 37.542978 ], [ -122.015662, 37.541583 ], [ -122.016521, 37.540324 ], [ -122.014589, 37.542978 ] ], [ [ -122.119646, 37.571318 ], [ -122.121105, 37.571249 ], [ -122.122607, 37.571113 ], [ -122.119646, 37.571318 ] ], [ [ -122.010212, 37.520006 ], [ -122.012014, 37.515785 ], [ -122.010641, 37.518951 ], [ -122.010212, 37.520006 ] ], [ [ -122.009139, 37.567780 ], [ -122.008796, 37.566589 ], [ -122.008667, 37.566351 ], [ -122.009139, 37.567780 ] ], [ [ -122.024975, 37.562677 ], [ -122.024589, 37.561180 ], [ -122.024632, 37.561487 ], [ -122.024975, 37.562677 ] ], [ [ -122.024503, 37.544407 ], [ -122.026219, 37.542263 ], [ -122.026305, 37.542127 ], [ -122.024503, 37.544407 ] ], [ [ -122.053299, 37.540868 ], [ -122.052999, 37.540358 ], [ -122.052827, 37.540188 ], [ -122.053299, 37.540868 ] ], [ [ -122.063427, 37.529502 ], [ -122.063341, 37.529366 ], [ -122.062912, 37.529025 ], [ -122.063427, 37.529502 ] ], [ [ -122.014546, 37.571726 ], [ -122.014246, 37.571522 ], [ -122.013602, 37.571181 ], [ -122.014546, 37.571726 ] ], [ [ -122.049351, 37.529706 ], [ -122.049952, 37.529298 ], [ -122.049737, 37.529400 ], [ -122.049351, 37.529706 ] ], [ [ -122.044373, 37.562439 ], [ -122.045746, 37.561895 ], [ -122.044845, 37.562235 ], [ -122.044373, 37.562439 ] ], [ [ -122.005792, 37.563698 ], [ -122.005620, 37.563562 ], [ -122.005277, 37.563392 ], [ -122.005792, 37.563698 ] ], [ [ -122.080851, 37.577780 ], [ -122.080894, 37.577984 ], [ -122.080894, 37.577848 ], [ -122.080851, 37.577780 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.029052, 37.582133 ], [ -122.023258, 37.582133 ], [ -122.006693, 37.582133 ], [ -122.005663, 37.582133 ], [ -121.992359, 37.582133 ], [ -121.988754, 37.582133 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.569141 ], [ -121.988754, 37.565025 ], [ -121.988754, 37.555091 ], [ -121.988754, 37.544305 ], [ -121.988754, 37.531374 ], [ -121.988754, 37.522899 ], [ -121.988754, 37.521333 ], [ -121.988754, 37.463482 ], [ -121.992188, 37.464504 ], [ -121.992660, 37.464640 ], [ -121.994290, 37.466036 ], [ -121.995492, 37.466752 ], [ -121.996479, 37.467024 ], [ -121.996651, 37.467229 ], [ -121.997166, 37.467126 ], [ -121.997766, 37.467126 ], [ -122.001071, 37.466854 ], [ -122.020855, 37.465151 ], [ -122.021155, 37.465083 ], [ -122.022529, 37.465151 ], [ -122.023816, 37.465423 ], [ -122.025404, 37.465628 ], [ -122.029910, 37.465321 ], [ -122.036176, 37.464980 ], [ -122.037249, 37.464708 ], [ -122.038364, 37.464163 ], [ -122.040682, 37.462971 ], [ -122.042527, 37.461813 ], [ -122.044587, 37.460654 ], [ -122.046561, 37.459530 ], [ -122.047806, 37.459019 ], [ -122.048965, 37.458883 ], [ -122.050295, 37.458883 ], [ -122.051239, 37.459019 ], [ -122.051926, 37.459258 ], [ -122.057505, 37.462698 ], [ -122.081494, 37.477821 ], [ -122.103982, 37.493690 ], [ -122.109604, 37.497674 ], [ -122.115698, 37.504858 ], [ -122.116213, 37.505538 ], [ -122.117372, 37.506832 ], [ -122.117372, 37.506900 ], [ -122.149429, 37.546143 ], [ -122.156081, 37.554649 ], [ -122.167969, 37.569583 ], [ -122.171402, 37.573869 ], [ -122.171402, 37.582133 ], [ -122.153506, 37.582133 ], [ -122.096171, 37.582133 ], [ -122.080936, 37.582133 ], [ -122.076259, 37.582133 ], [ -122.071967, 37.582133 ], [ -122.065229, 37.582133 ], [ -122.061968, 37.582133 ], [ -122.049651, 37.582133 ], [ -122.029052, 37.582133 ] ], [ [ -122.059307, 37.569413 ], [ -122.056346, 37.554989 ], [ -122.056389, 37.555431 ], [ -122.059307, 37.569413 ] ], [ [ -122.022786, 37.566045 ], [ -122.023988, 37.566657 ], [ -122.027850, 37.568494 ], [ -122.022786, 37.566045 ] ], [ [ -122.014589, 37.542978 ], [ -122.015662, 37.541583 ], [ -122.016521, 37.540324 ], [ -122.014589, 37.542978 ] ], [ [ -122.119646, 37.571318 ], [ -122.121105, 37.571249 ], [ -122.122607, 37.571113 ], [ -122.119646, 37.571318 ] ], [ [ -122.010212, 37.520006 ], [ -122.012014, 37.515785 ], [ -122.010641, 37.518951 ], [ -122.010212, 37.520006 ] ], [ [ -122.009139, 37.567780 ], [ -122.008796, 37.566589 ], [ -122.008667, 37.566351 ], [ -122.009139, 37.567780 ] ], [ [ -122.024975, 37.562677 ], [ -122.024589, 37.561180 ], [ -122.024632, 37.561487 ], [ -122.024975, 37.562677 ] ], [ [ -122.024503, 37.544407 ], [ -122.026219, 37.542263 ], [ -122.026305, 37.542127 ], [ -122.024503, 37.544407 ] ], [ [ -122.053299, 37.540868 ], [ -122.052999, 37.540358 ], [ -122.052827, 37.540188 ], [ -122.053299, 37.540868 ] ], [ [ -122.063427, 37.529502 ], [ -122.063341, 37.529366 ], [ -122.062912, 37.529025 ], [ -122.063427, 37.529502 ] ], [ [ -122.014546, 37.571726 ], [ -122.014246, 37.571522 ], [ -122.013602, 37.571181 ], [ -122.014546, 37.571726 ] ], [ [ -122.049351, 37.529706 ], [ -122.049952, 37.529298 ], [ -122.049737, 37.529400 ], [ -122.049351, 37.529706 ] ], [ [ -122.044373, 37.562439 ], [ -122.045746, 37.561895 ], [ -122.044845, 37.562235 ], [ -122.044373, 37.562439 ] ], [ [ -122.005792, 37.563698 ], [ -122.005620, 37.563562 ], [ -122.005277, 37.563392 ], [ -122.005792, 37.563698 ] ], [ [ -122.080851, 37.577780 ], [ -122.080894, 37.577984 ], [ -122.080894, 37.577848 ], [ -122.080851, 37.577780 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 329, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.145309, 37.721306 ], [ -122.134838, 37.721306 ], [ -122.113080, 37.721306 ], [ -122.089520, 37.721306 ], [ -122.075830, 37.721306 ], [ -122.065058, 37.721306 ], [ -122.054286, 37.721306 ], [ -122.037592, 37.721306 ], [ -121.988754, 37.721306 ], [ -121.988754, 37.714584 ], [ -121.988754, 37.700325 ], [ -121.988754, 37.688066 ], [ -121.988754, 37.633912 ], [ -121.988754, 37.599204 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.576692 ], [ -121.998582, 37.576692 ], [ -122.016435, 37.576692 ], [ -122.023215, 37.576692 ], [ -122.026992, 37.576692 ], [ -122.039995, 37.576692 ], [ -122.044458, 37.576692 ], [ -122.047720, 37.576692 ], [ -122.058878, 37.576692 ], [ -122.060809, 37.576692 ], [ -122.069993, 37.576692 ], [ -122.080550, 37.576692 ], [ -122.088189, 37.576692 ], [ -122.150073, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671932 ], [ -122.171402, 37.702090 ], [ -122.171402, 37.713838 ], [ -122.171402, 37.720797 ], [ -122.171402, 37.721306 ], [ -122.169342, 37.721306 ], [ -122.162733, 37.721306 ], [ -122.145309, 37.721306 ] ], [ [ -122.056518, 37.592335 ], [ -122.055144, 37.590363 ], [ -122.051368, 37.585160 ], [ -122.056518, 37.592335 ] ], [ [ -122.136984, 37.679609 ], [ -122.133121, 37.673597 ], [ -122.133293, 37.673936 ], [ -122.136984, 37.679609 ] ], [ [ -122.026820, 37.576930 ], [ -122.026992, 37.576692 ], [ -122.025962, 37.577814 ], [ -122.026820, 37.576930 ] ], [ [ -122.080851, 37.577780 ], [ -122.080894, 37.577984 ], [ -122.080894, 37.577848 ], [ -122.080851, 37.577780 ] ], [ [ -122.137070, 37.713159 ], [ -122.130890, 37.708813 ], [ -122.131405, 37.709220 ], [ -122.137070, 37.713159 ] ], [ [ -122.074671, 37.695672 ], [ -122.080979, 37.695639 ], [ -122.081280, 37.695605 ], [ -122.074671, 37.695672 ] ], [ [ -122.078490, 37.640947 ], [ -122.075658, 37.636019 ], [ -122.075872, 37.636461 ], [ -122.078490, 37.640947 ] ], [ [ -122.158399, 37.679099 ], [ -122.155995, 37.676484 ], [ -122.154708, 37.675159 ], [ -122.158399, 37.679099 ] ], [ [ -122.063642, 37.678182 ], [ -122.058535, 37.679813 ], [ -122.059050, 37.679677 ], [ -122.063642, 37.678182 ] ], [ [ -122.066774, 37.589139 ], [ -122.064586, 37.586929 ], [ -122.064457, 37.586861 ], [ -122.066774, 37.589139 ] ], [ [ -122.084928, 37.661367 ], [ -122.085485, 37.660450 ], [ -122.086730, 37.658174 ], [ -122.084928, 37.661367 ] ], [ [ -122.091880, 37.648558 ], [ -122.092137, 37.647947 ], [ -122.092395, 37.647165 ], [ -122.091880, 37.648558 ] ], [ [ -122.122951, 37.680152 ], [ -122.120118, 37.678216 ], [ -122.118616, 37.677231 ], [ -122.122951, 37.680152 ] ], [ [ -122.085314, 37.606378 ], [ -122.083125, 37.604440 ], [ -122.082567, 37.603998 ], [ -122.085314, 37.606378 ] ], [ [ -122.077932, 37.613484 ], [ -122.073040, 37.613348 ], [ -122.077117, 37.613484 ], [ -122.077932, 37.613484 ] ], [ [ -122.022099, 37.699544 ], [ -122.024159, 37.698423 ], [ -122.023945, 37.698491 ], [ -122.022099, 37.699544 ] ], [ [ -122.145309, 37.721306 ], [ -122.145095, 37.720695 ], [ -122.144194, 37.718590 ], [ -122.145309, 37.721306 ] ], [ [ -122.106214, 37.697812 ], [ -122.106814, 37.698525 ], [ -122.107630, 37.699340 ], [ -122.106214, 37.697812 ] ], [ [ -122.150502, 37.691326 ], [ -122.153592, 37.691224 ], [ -122.151790, 37.691258 ], [ -122.150502, 37.691326 ] ], [ [ -122.012486, 37.703211 ], [ -122.015233, 37.703109 ], [ -122.015448, 37.703075 ], [ -122.012486, 37.703211 ] ], [ [ -122.091107, 37.692243 ], [ -122.093339, 37.691088 ], [ -122.091837, 37.691835 ], [ -122.091107, 37.692243 ] ], [ [ -122.069221, 37.590159 ], [ -122.070808, 37.588357 ], [ -122.070422, 37.588765 ], [ -122.069221, 37.590159 ] ], [ [ -122.088661, 37.711868 ], [ -122.088661, 37.710341 ], [ -122.088618, 37.710409 ], [ -122.088661, 37.711868 ] ], [ [ -122.049050, 37.677095 ], [ -122.048407, 37.676144 ], [ -122.048235, 37.675974 ], [ -122.049050, 37.677095 ] ], [ [ -122.083426, 37.610016 ], [ -122.083898, 37.609880 ], [ -122.085528, 37.609302 ], [ -122.083426, 37.610016 ] ], [ [ -122.108788, 37.700460 ], [ -122.107716, 37.699442 ], [ -122.108274, 37.700019 ], [ -122.108788, 37.700460 ] ], [ [ -122.162862, 37.690918 ], [ -122.162390, 37.689186 ], [ -122.162261, 37.688813 ], [ -122.162862, 37.690918 ] ], [ [ -122.108574, 37.713125 ], [ -122.110162, 37.712887 ], [ -122.108831, 37.713057 ], [ -122.108574, 37.713125 ] ], [ [ -122.091966, 37.592472 ], [ -122.091966, 37.592131 ], [ -122.091923, 37.591825 ], [ -122.091966, 37.592472 ] ], [ [ -122.062869, 37.665036 ], [ -122.064457, 37.664493 ], [ -122.064972, 37.664289 ], [ -122.062869, 37.665036 ] ], [ [ -122.094026, 37.690069 ], [ -122.095485, 37.689933 ], [ -122.095184, 37.689933 ], [ -122.094026, 37.690069 ] ], [ [ -122.054543, 37.684296 ], [ -122.054157, 37.683684 ], [ -122.053857, 37.683311 ], [ -122.054543, 37.684296 ] ], [ [ -122.143121, 37.711020 ], [ -122.143936, 37.710273 ], [ -122.144151, 37.710035 ], [ -122.143121, 37.711020 ] ], [ [ -122.066731, 37.651311 ], [ -122.068062, 37.650835 ], [ -122.066946, 37.651209 ], [ -122.066731, 37.651311 ] ], [ [ -122.081666, 37.695571 ], [ -122.082267, 37.695503 ], [ -122.082996, 37.695367 ], [ -122.081666, 37.695571 ] ], [ [ -122.115912, 37.714347 ], [ -122.115569, 37.714109 ], [ -122.115097, 37.713872 ], [ -122.115912, 37.714347 ] ], [ [ -122.118702, 37.685858 ], [ -122.117929, 37.686028 ], [ -122.118101, 37.686028 ], [ -122.118702, 37.685858 ] ], [ [ -122.038407, 37.649442 ], [ -122.038965, 37.648694 ], [ -122.038751, 37.648932 ], [ -122.038407, 37.649442 ] ], [ [ -122.112994, 37.634965 ], [ -122.112865, 37.634863 ], [ -122.112308, 37.634626 ], [ -122.112994, 37.634965 ] ], [ [ -122.110076, 37.632382 ], [ -122.109303, 37.631227 ], [ -122.110033, 37.632348 ], [ -122.110076, 37.632382 ] ], [ [ -122.037935, 37.646010 ], [ -122.037635, 37.645840 ], [ -122.037377, 37.645772 ], [ -122.037935, 37.646010 ] ], [ [ -122.063813, 37.662828 ], [ -122.063255, 37.662522 ], [ -122.063427, 37.662658 ], [ -122.063813, 37.662828 ] ], [ [ -122.107630, 37.713396 ], [ -122.108488, 37.713125 ], [ -122.107973, 37.713260 ], [ -122.107630, 37.713396 ] ], [ [ -122.046046, 37.647199 ], [ -122.046518, 37.646791 ], [ -122.046390, 37.646859 ], [ -122.046046, 37.647199 ] ], [ [ -122.033515, 37.676178 ], [ -122.034116, 37.676178 ], [ -122.034287, 37.676144 ], [ -122.033515, 37.676178 ] ], [ [ -122.052226, 37.702803 ], [ -122.051497, 37.702837 ], [ -122.052054, 37.702837 ], [ -122.052226, 37.702803 ] ], [ [ -122.063212, 37.685960 ], [ -122.063813, 37.686062 ], [ -122.063985, 37.686062 ], [ -122.063212, 37.685960 ] ], [ [ -122.055445, 37.698729 ], [ -122.055531, 37.698661 ], [ -122.055659, 37.698355 ], [ -122.055445, 37.698729 ] ], [ [ -122.052355, 37.702769 ], [ -122.052569, 37.702735 ], [ -122.052913, 37.702600 ], [ -122.052355, 37.702769 ] ], [ [ -122.046518, 37.646791 ], [ -122.046905, 37.646757 ], [ -122.047162, 37.646689 ], [ -122.046518, 37.646791 ] ], [ [ -122.013903, 37.631635 ], [ -122.013302, 37.631261 ], [ -122.013860, 37.631635 ], [ -122.013903, 37.631635 ] ], [ [ -122.055488, 37.700223 ], [ -122.055316, 37.699611 ], [ -122.055359, 37.699849 ], [ -122.055488, 37.700223 ] ], [ [ -122.112093, 37.712989 ], [ -122.111578, 37.712921 ], [ -122.111363, 37.712921 ], [ -122.112093, 37.712989 ] ], [ [ -122.007766, 37.628168 ], [ -122.007980, 37.628440 ], [ -122.008109, 37.628542 ], [ -122.007766, 37.628168 ] ], [ [ -122.061796, 37.686334 ], [ -122.062011, 37.686062 ], [ -122.061882, 37.686164 ], [ -122.061796, 37.686334 ] ], [ [ -122.021284, 37.699849 ], [ -122.021456, 37.699815 ], [ -122.021756, 37.699679 ], [ -122.021284, 37.699849 ] ], [ [ -122.064500, 37.692956 ], [ -122.065101, 37.692888 ], [ -122.064929, 37.692888 ], [ -122.064500, 37.692956 ] ], [ [ -122.121577, 37.716927 ], [ -122.121191, 37.717368 ], [ -122.121277, 37.717300 ], [ -122.121577, 37.716927 ] ], [ [ -122.030039, 37.628848 ], [ -122.030125, 37.628882 ], [ -122.030425, 37.628882 ], [ -122.030039, 37.628848 ] ], [ [ -122.039137, 37.648456 ], [ -122.039180, 37.648422 ], [ -122.039180, 37.648185 ], [ -122.039137, 37.648456 ] ], [ [ -122.102351, 37.701615 ], [ -122.102351, 37.701377 ], [ -122.102308, 37.701309 ], [ -122.102351, 37.701615 ] ], [ [ -122.104497, 37.714177 ], [ -122.104712, 37.714245 ], [ -122.104626, 37.714177 ], [ -122.104497, 37.714177 ] ], [ [ -122.043900, 37.703075 ], [ -122.044072, 37.702837 ], [ -122.043986, 37.702905 ], [ -122.043900, 37.703075 ] ], [ [ -122.077289, 37.678624 ], [ -122.077246, 37.678522 ], [ -122.077160, 37.678488 ], [ -122.077289, 37.678624 ] ], [ [ -122.078576, 37.679948 ], [ -122.078662, 37.680254 ], [ -122.078705, 37.680322 ], [ -122.078576, 37.679948 ] ], [ [ -122.043900, 37.704874 ], [ -122.043943, 37.704739 ], [ -122.043986, 37.704433 ], [ -122.043900, 37.704874 ] ], [ [ -122.045145, 37.702396 ], [ -122.045403, 37.702362 ], [ -122.045231, 37.702362 ], [ -122.045145, 37.702396 ] ], [ [ -122.130461, 37.708338 ], [ -122.130332, 37.708066 ], [ -122.130375, 37.708202 ], [ -122.130461, 37.708338 ] ], [ [ -122.036734, 37.646927 ], [ -122.036734, 37.646825 ], [ -122.036691, 37.646791 ], [ -122.036734, 37.646927 ] ], [ [ -122.055445, 37.703924 ], [ -122.055402, 37.703822 ], [ -122.055359, 37.703822 ], [ -122.055445, 37.703924 ] ], [ [ -122.118874, 37.698525 ], [ -122.118874, 37.698559 ], [ -122.118917, 37.698559 ], [ -122.118874, 37.698525 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.145309, 37.721306 ], [ -122.134838, 37.721306 ], [ -122.113080, 37.721306 ], [ -122.089520, 37.721306 ], [ -122.075830, 37.721306 ], [ -122.065058, 37.721306 ], [ -122.054286, 37.721306 ], [ -122.037592, 37.721306 ], [ -121.988754, 37.721306 ], [ -121.988754, 37.714584 ], [ -121.988754, 37.700325 ], [ -121.988754, 37.688066 ], [ -121.988754, 37.633912 ], [ -121.988754, 37.599204 ], [ -121.988754, 37.580093 ], [ -121.988754, 37.576692 ], [ -121.998582, 37.576692 ], [ -122.016435, 37.576692 ], [ -122.023215, 37.576692 ], [ -122.026992, 37.576692 ], [ -122.039995, 37.576692 ], [ -122.044458, 37.576692 ], [ -122.047720, 37.576692 ], [ -122.058878, 37.576692 ], [ -122.060809, 37.576692 ], [ -122.069993, 37.576692 ], [ -122.080550, 37.576692 ], [ -122.088189, 37.576692 ], [ -122.150073, 37.576692 ], [ -122.171402, 37.576692 ], [ -122.171402, 37.671966 ], [ -122.171402, 37.702090 ], [ -122.171402, 37.713838 ], [ -122.171402, 37.720797 ], [ -122.171402, 37.721306 ], [ -122.169342, 37.721306 ], [ -122.162733, 37.721306 ], [ -122.145309, 37.721306 ] ], [ [ -122.056518, 37.592335 ], [ -122.055144, 37.590363 ], [ -122.051368, 37.585160 ], [ -122.056518, 37.592335 ] ], [ [ -122.136984, 37.679609 ], [ -122.133121, 37.673597 ], [ -122.133293, 37.673936 ], [ -122.136984, 37.679609 ] ], [ [ -122.026820, 37.576930 ], [ -122.026992, 37.576692 ], [ -122.025962, 37.577814 ], [ -122.026820, 37.576930 ] ], [ [ -122.080851, 37.577780 ], [ -122.080894, 37.577984 ], [ -122.080894, 37.577848 ], [ -122.080851, 37.577780 ] ], [ [ -122.137070, 37.713159 ], [ -122.130890, 37.708813 ], [ -122.131405, 37.709220 ], [ -122.137070, 37.713159 ] ], [ [ -122.074671, 37.695672 ], [ -122.080979, 37.695639 ], [ -122.081280, 37.695605 ], [ -122.074671, 37.695672 ] ], [ [ -122.078490, 37.640947 ], [ -122.075658, 37.636019 ], [ -122.075872, 37.636461 ], [ -122.078490, 37.640947 ] ], [ [ -122.158399, 37.679099 ], [ -122.155995, 37.676484 ], [ -122.154708, 37.675159 ], [ -122.158399, 37.679099 ] ], [ [ -122.063642, 37.678182 ], [ -122.058535, 37.679813 ], [ -122.059050, 37.679677 ], [ -122.063642, 37.678182 ] ], [ [ -122.066774, 37.589139 ], [ -122.064586, 37.586929 ], [ -122.064457, 37.586861 ], [ -122.066774, 37.589139 ] ], [ [ -122.084928, 37.661367 ], [ -122.085485, 37.660450 ], [ -122.086730, 37.658174 ], [ -122.084928, 37.661367 ] ], [ [ -122.091880, 37.648558 ], [ -122.092137, 37.647947 ], [ -122.092395, 37.647165 ], [ -122.091880, 37.648558 ] ], [ [ -122.122951, 37.680152 ], [ -122.120118, 37.678216 ], [ -122.118616, 37.677231 ], [ -122.122951, 37.680152 ] ], [ [ -122.085314, 37.606378 ], [ -122.083125, 37.604440 ], [ -122.082567, 37.603998 ], [ -122.085314, 37.606378 ] ], [ [ -122.077932, 37.613484 ], [ -122.073040, 37.613348 ], [ -122.077117, 37.613484 ], [ -122.077932, 37.613484 ] ], [ [ -122.022099, 37.699544 ], [ -122.024159, 37.698423 ], [ -122.023945, 37.698491 ], [ -122.022099, 37.699544 ] ], [ [ -122.145309, 37.721306 ], [ -122.145095, 37.720695 ], [ -122.144194, 37.718590 ], [ -122.145309, 37.721306 ] ], [ [ -122.106214, 37.697812 ], [ -122.106814, 37.698525 ], [ -122.107630, 37.699340 ], [ -122.106214, 37.697812 ] ], [ [ -122.150502, 37.691326 ], [ -122.153592, 37.691224 ], [ -122.151790, 37.691258 ], [ -122.150502, 37.691326 ] ], [ [ -122.012486, 37.703211 ], [ -122.015233, 37.703109 ], [ -122.015448, 37.703075 ], [ -122.012486, 37.703211 ] ], [ [ -122.091107, 37.692243 ], [ -122.093339, 37.691088 ], [ -122.091837, 37.691835 ], [ -122.091107, 37.692243 ] ], [ [ -122.069221, 37.590159 ], [ -122.070808, 37.588357 ], [ -122.070422, 37.588765 ], [ -122.069221, 37.590159 ] ], [ [ -122.088661, 37.711868 ], [ -122.088661, 37.710341 ], [ -122.088618, 37.710409 ], [ -122.088661, 37.711868 ] ], [ [ -122.049050, 37.677095 ], [ -122.048407, 37.676144 ], [ -122.048235, 37.675974 ], [ -122.049050, 37.677095 ] ], [ [ -122.083426, 37.610016 ], [ -122.083898, 37.609880 ], [ -122.085528, 37.609302 ], [ -122.083426, 37.610016 ] ], [ [ -122.108788, 37.700460 ], [ -122.107716, 37.699442 ], [ -122.108274, 37.700019 ], [ -122.108788, 37.700460 ] ], [ [ -122.162862, 37.690918 ], [ -122.162390, 37.689186 ], [ -122.162261, 37.688813 ], [ -122.162862, 37.690918 ] ], [ [ -122.108574, 37.713125 ], [ -122.110162, 37.712887 ], [ -122.108831, 37.713057 ], [ -122.108574, 37.713125 ] ], [ [ -122.091966, 37.592472 ], [ -122.091966, 37.592131 ], [ -122.091923, 37.591825 ], [ -122.091966, 37.592472 ] ], [ [ -122.062869, 37.665036 ], [ -122.064457, 37.664493 ], [ -122.064972, 37.664289 ], [ -122.062869, 37.665036 ] ], [ [ -122.094026, 37.690069 ], [ -122.095485, 37.689933 ], [ -122.095184, 37.689933 ], [ -122.094026, 37.690069 ] ], [ [ -122.054543, 37.684296 ], [ -122.054157, 37.683684 ], [ -122.053857, 37.683311 ], [ -122.054543, 37.684296 ] ], [ [ -122.143121, 37.711020 ], [ -122.143936, 37.710273 ], [ -122.144151, 37.710035 ], [ -122.143121, 37.711020 ] ], [ [ -122.066731, 37.651311 ], [ -122.068062, 37.650835 ], [ -122.066946, 37.651209 ], [ -122.066731, 37.651311 ] ], [ [ -122.081666, 37.695571 ], [ -122.082267, 37.695503 ], [ -122.082996, 37.695367 ], [ -122.081666, 37.695571 ] ], [ [ -122.115912, 37.714347 ], [ -122.115569, 37.714109 ], [ -122.115097, 37.713872 ], [ -122.115912, 37.714347 ] ], [ [ -122.118702, 37.685858 ], [ -122.117929, 37.686028 ], [ -122.118101, 37.686028 ], [ -122.118702, 37.685858 ] ], [ [ -122.038407, 37.649442 ], [ -122.038965, 37.648694 ], [ -122.038751, 37.648932 ], [ -122.038407, 37.649442 ] ], [ [ -122.112994, 37.634965 ], [ -122.112865, 37.634863 ], [ -122.112308, 37.634626 ], [ -122.112994, 37.634965 ] ], [ [ -122.110076, 37.632382 ], [ -122.109303, 37.631227 ], [ -122.110033, 37.632348 ], [ -122.110076, 37.632382 ] ], [ [ -122.037935, 37.646010 ], [ -122.037635, 37.645840 ], [ -122.037377, 37.645772 ], [ -122.037935, 37.646010 ] ], [ [ -122.063813, 37.662828 ], [ -122.063255, 37.662522 ], [ -122.063427, 37.662658 ], [ -122.063813, 37.662828 ] ], [ [ -122.107630, 37.713396 ], [ -122.108488, 37.713125 ], [ -122.107973, 37.713260 ], [ -122.107630, 37.713396 ] ], [ [ -122.046046, 37.647199 ], [ -122.046518, 37.646791 ], [ -122.046390, 37.646859 ], [ -122.046046, 37.647199 ] ], [ [ -122.033515, 37.676178 ], [ -122.034116, 37.676178 ], [ -122.034287, 37.676144 ], [ -122.033515, 37.676178 ] ], [ [ -122.052226, 37.702803 ], [ -122.051497, 37.702837 ], [ -122.052054, 37.702837 ], [ -122.052226, 37.702803 ] ], [ [ -122.063212, 37.685960 ], [ -122.063813, 37.686062 ], [ -122.063985, 37.686062 ], [ -122.063212, 37.685960 ] ], [ [ -122.055445, 37.698729 ], [ -122.055531, 37.698661 ], [ -122.055659, 37.698355 ], [ -122.055445, 37.698729 ] ], [ [ -122.052355, 37.702769 ], [ -122.052569, 37.702735 ], [ -122.052913, 37.702600 ], [ -122.052355, 37.702769 ] ], [ [ -122.046518, 37.646791 ], [ -122.046905, 37.646757 ], [ -122.047162, 37.646689 ], [ -122.046518, 37.646791 ] ], [ [ -122.013903, 37.631635 ], [ -122.013302, 37.631261 ], [ -122.013860, 37.631635 ], [ -122.013903, 37.631635 ] ], [ [ -122.055488, 37.700223 ], [ -122.055316, 37.699611 ], [ -122.055359, 37.699849 ], [ -122.055488, 37.700223 ] ], [ [ -122.112093, 37.712989 ], [ -122.111578, 37.712921 ], [ -122.111363, 37.712921 ], [ -122.112093, 37.712989 ] ], [ [ -122.007766, 37.628168 ], [ -122.007980, 37.628440 ], [ -122.008109, 37.628542 ], [ -122.007766, 37.628168 ] ], [ [ -122.061796, 37.686334 ], [ -122.062011, 37.686062 ], [ -122.061882, 37.686164 ], [ -122.061796, 37.686334 ] ], [ [ -122.021284, 37.699849 ], [ -122.021456, 37.699815 ], [ -122.021756, 37.699679 ], [ -122.021284, 37.699849 ] ], [ [ -122.064500, 37.692956 ], [ -122.065101, 37.692888 ], [ -122.064929, 37.692888 ], [ -122.064500, 37.692956 ] ], [ [ -122.121577, 37.716927 ], [ -122.121191, 37.717368 ], [ -122.121277, 37.717300 ], [ -122.121577, 37.716927 ] ], [ [ -122.030039, 37.628848 ], [ -122.030125, 37.628882 ], [ -122.030425, 37.628882 ], [ -122.030039, 37.628848 ] ], [ [ -122.039137, 37.648456 ], [ -122.039180, 37.648422 ], [ -122.039180, 37.648185 ], [ -122.039137, 37.648456 ] ], [ [ -122.102351, 37.701615 ], [ -122.102351, 37.701377 ], [ -122.102308, 37.701309 ], [ -122.102351, 37.701615 ] ], [ [ -122.104497, 37.714177 ], [ -122.104712, 37.714245 ], [ -122.104626, 37.714177 ], [ -122.104497, 37.714177 ] ], [ [ -122.043900, 37.703075 ], [ -122.044072, 37.702837 ], [ -122.043986, 37.702905 ], [ -122.043900, 37.703075 ] ], [ [ -122.077289, 37.678624 ], [ -122.077246, 37.678522 ], [ -122.077160, 37.678488 ], [ -122.077289, 37.678624 ] ], [ [ -122.078576, 37.679948 ], [ -122.078662, 37.680254 ], [ -122.078705, 37.680322 ], [ -122.078576, 37.679948 ] ], [ [ -122.043900, 37.704874 ], [ -122.043943, 37.704739 ], [ -122.043986, 37.704433 ], [ -122.043900, 37.704874 ] ], [ [ -122.045145, 37.702396 ], [ -122.045403, 37.702362 ], [ -122.045231, 37.702362 ], [ -122.045145, 37.702396 ] ], [ [ -122.130461, 37.708338 ], [ -122.130332, 37.708066 ], [ -122.130375, 37.708202 ], [ -122.130461, 37.708338 ] ], [ [ -122.036734, 37.646927 ], [ -122.036734, 37.646825 ], [ -122.036691, 37.646791 ], [ -122.036734, 37.646927 ] ], [ [ -122.055445, 37.703924 ], [ -122.055402, 37.703822 ], [ -122.055359, 37.703822 ], [ -122.055445, 37.703924 ] ], [ [ -122.118874, 37.698525 ], [ -122.118874, 37.698559 ], [ -122.118917, 37.698559 ], [ -122.118874, 37.698525 ] ] ] } } ] } ] } , @@ -125,7 +125,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 330, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "merged", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.926527, 37.721306 ], [ -121.920819, 37.721306 ], [ -121.910219, 37.721306 ], [ -121.871638, 37.721306 ], [ -121.852455, 37.721306 ], [ -121.851726, 37.721306 ], [ -121.825333, 37.721306 ], [ -121.812973, 37.721306 ], [ -121.812973, 37.701038 ], [ -121.812973, 37.675329 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930690, 37.576692 ], [ -121.971717, 37.576692 ], [ -121.995621, 37.576692 ], [ -121.995621, 37.584718 ], [ -121.995621, 37.594070 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690205 ], [ -121.995621, 37.702939 ], [ -121.995621, 37.708575 ], [ -121.995621, 37.721306 ], [ -121.981072, 37.721306 ], [ -121.963949, 37.721306 ], [ -121.960773, 37.718624 ], [ -121.950345, 37.720933 ], [ -121.948929, 37.721306 ], [ -121.941762, 37.721306 ], [ -121.926527, 37.721306 ] ], [ [ -121.916399, 37.685247 ], [ -121.914296, 37.679847 ], [ -121.910992, 37.671525 ], [ -121.916399, 37.685247 ] ], [ [ -121.848722, 37.693873 ], [ -121.858592, 37.694009 ], [ -121.848464, 37.693839 ], [ -121.848722, 37.693873 ] ], [ [ -121.910176, 37.718590 ], [ -121.910219, 37.715841 ], [ -121.910219, 37.710443 ], [ -121.910176, 37.718590 ] ], [ [ -121.910133, 37.710375 ], [ -121.908889, 37.709424 ], [ -121.905584, 37.707047 ], [ -121.910133, 37.710375 ] ], [ [ -121.908631, 37.665478 ], [ -121.910477, 37.670200 ], [ -121.910262, 37.669554 ], [ -121.908631, 37.665478 ] ], [ [ -121.896701, 37.675805 ], [ -121.891937, 37.672782 ], [ -121.894555, 37.674480 ], [ -121.896701, 37.675805 ] ], [ [ -121.872025, 37.716180 ], [ -121.872067, 37.715365 ], [ -121.872067, 37.714279 ], [ -121.872025, 37.713872 ], [ -121.872025, 37.716180 ] ], [ [ -121.926527, 37.721306 ], [ -121.926742, 37.718590 ], [ -121.926656, 37.719100 ], [ -121.926527, 37.721306 ] ], [ [ -121.872196, 37.701581 ], [ -121.871080, 37.701547 ], [ -121.866746, 37.701513 ], [ -121.872196, 37.701581 ] ], [ [ -121.891680, 37.701751 ], [ -121.897602, 37.701853 ], [ -121.896615, 37.701819 ], [ -121.891680, 37.701751 ] ], [ [ -121.868076, 37.664934 ], [ -121.866875, 37.666056 ], [ -121.866360, 37.666599 ], [ -121.868076, 37.664934 ] ], [ [ -121.908631, 37.665478 ], [ -121.908031, 37.664289 ], [ -121.907558, 37.663474 ], [ -121.908631, 37.665478 ] ], [ [ -121.942663, 37.597912 ], [ -121.941032, 37.598592 ], [ -121.941376, 37.598490 ], [ -121.942663, 37.597912 ] ], [ [ -121.884127, 37.636835 ], [ -121.884170, 37.636121 ], [ -121.884127, 37.635781 ], [ -121.884127, 37.636835 ] ], [ [ -121.897774, 37.594206 ], [ -121.896658, 37.594036 ], [ -121.896186, 37.594002 ], [ -121.897774, 37.594206 ] ], [ [ -121.905198, 37.595668 ], [ -121.903911, 37.595634 ], [ -121.904125, 37.595668 ], [ -121.905198, 37.595668 ] ], [ [ -121.903567, 37.697744 ], [ -121.903439, 37.696895 ], [ -121.903481, 37.697438 ], [ -121.903567, 37.697744 ] ], [ [ -121.863828, 37.668467 ], [ -121.864686, 37.667992 ], [ -121.864986, 37.667788 ], [ -121.863828, 37.668467 ] ], [ [ -121.870866, 37.653077 ], [ -121.870694, 37.652975 ], [ -121.869965, 37.652704 ], [ -121.870866, 37.653077 ] ], [ [ -121.843915, 37.657222 ], [ -121.844044, 37.657121 ], [ -121.844301, 37.656713 ], [ -121.843915, 37.657222 ] ], [ [ -121.848378, 37.699815 ], [ -121.848292, 37.699204 ], [ -121.848292, 37.699510 ], [ -121.848378, 37.699815 ] ], [ [ -121.942663, 37.597912 ], [ -121.943521, 37.597674 ], [ -121.943307, 37.597708 ], [ -121.942663, 37.597912 ] ], [ [ -121.876616, 37.665444 ], [ -121.876016, 37.665410 ], [ -121.876059, 37.665444 ], [ -121.876616, 37.665444 ] ], [ [ -121.946526, 37.597640 ], [ -121.946011, 37.597504 ], [ -121.945882, 37.597504 ], [ -121.946526, 37.597640 ] ], [ [ -121.946654, 37.712581 ], [ -121.946912, 37.712514 ], [ -121.947041, 37.712412 ], [ -121.946654, 37.712581 ] ], [ [ -121.937985, 37.597538 ], [ -121.937943, 37.597130 ], [ -121.937943, 37.597436 ], [ -121.937985, 37.597538 ] ], [ [ -121.940947, 37.613586 ], [ -121.941075, 37.612600 ], [ -121.940947, 37.613484 ], [ -121.940947, 37.613586 ] ], [ [ -121.843143, 37.658038 ], [ -121.843271, 37.657834 ], [ -121.843185, 37.657902 ], [ -121.843143, 37.658038 ] ], [ [ -121.847348, 37.701615 ], [ -121.847219, 37.701581 ], [ -121.846962, 37.701547 ], [ -121.847348, 37.701615 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.926527, 37.721306 ], [ -121.920819, 37.721306 ], [ -121.910219, 37.721306 ], [ -121.871638, 37.721306 ], [ -121.852455, 37.721306 ], [ -121.851726, 37.721306 ], [ -121.825333, 37.721306 ], [ -121.812973, 37.721306 ], [ -121.812973, 37.701038 ], [ -121.812973, 37.675329 ], [ -121.812973, 37.654980 ], [ -121.812973, 37.576692 ], [ -121.930690, 37.576692 ], [ -121.971717, 37.576692 ], [ -121.995621, 37.576692 ], [ -121.995621, 37.584718 ], [ -121.995621, 37.594070 ], [ -121.995621, 37.631431 ], [ -121.995621, 37.690205 ], [ -121.995621, 37.702939 ], [ -121.995621, 37.708575 ], [ -121.995621, 37.721306 ], [ -121.981072, 37.721306 ], [ -121.963949, 37.721306 ], [ -121.960773, 37.718624 ], [ -121.950345, 37.720933 ], [ -121.948929, 37.721306 ], [ -121.941762, 37.721306 ], [ -121.926527, 37.721306 ] ], [ [ -121.916399, 37.685247 ], [ -121.914296, 37.679847 ], [ -121.910992, 37.671525 ], [ -121.916399, 37.685247 ] ], [ [ -121.848722, 37.693873 ], [ -121.858592, 37.694009 ], [ -121.848464, 37.693839 ], [ -121.848722, 37.693873 ] ], [ [ -121.910176, 37.718590 ], [ -121.910219, 37.715841 ], [ -121.910219, 37.710443 ], [ -121.910176, 37.718590 ] ], [ [ -121.910133, 37.710375 ], [ -121.908889, 37.709424 ], [ -121.905584, 37.707047 ], [ -121.910133, 37.710375 ] ], [ [ -121.908631, 37.665478 ], [ -121.910477, 37.670200 ], [ -121.910262, 37.669554 ], [ -121.908631, 37.665478 ] ], [ [ -121.896701, 37.675805 ], [ -121.891937, 37.672782 ], [ -121.894555, 37.674480 ], [ -121.896701, 37.675805 ] ], [ [ -121.872025, 37.716180 ], [ -121.872067, 37.715365 ], [ -121.872067, 37.714279 ], [ -121.872025, 37.713872 ], [ -121.872025, 37.716180 ] ], [ [ -121.926527, 37.721306 ], [ -121.926742, 37.718590 ], [ -121.926656, 37.719100 ], [ -121.926527, 37.721306 ] ], [ [ -121.872196, 37.701581 ], [ -121.871080, 37.701547 ], [ -121.866746, 37.701513 ], [ -121.872196, 37.701581 ] ], [ [ -121.891680, 37.701751 ], [ -121.897602, 37.701853 ], [ -121.896615, 37.701819 ], [ -121.891680, 37.701751 ] ], [ [ -121.868076, 37.664934 ], [ -121.866875, 37.666056 ], [ -121.866360, 37.666599 ], [ -121.868076, 37.664934 ] ], [ [ -121.908631, 37.665478 ], [ -121.908031, 37.664289 ], [ -121.907558, 37.663474 ], [ -121.908631, 37.665478 ] ], [ [ -121.942663, 37.597912 ], [ -121.941032, 37.598592 ], [ -121.941376, 37.598490 ], [ -121.942663, 37.597912 ] ], [ [ -121.884127, 37.636835 ], [ -121.884170, 37.636121 ], [ -121.884127, 37.635781 ], [ -121.884127, 37.636835 ] ], [ [ -121.897774, 37.594206 ], [ -121.896658, 37.594036 ], [ -121.896186, 37.594002 ], [ -121.897774, 37.594206 ] ], [ [ -121.874471, 37.677944 ], [ -121.874170, 37.677163 ], [ -121.874342, 37.677741 ], [ -121.874471, 37.677944 ] ], [ [ -121.905198, 37.595668 ], [ -121.903911, 37.595634 ], [ -121.904125, 37.595668 ], [ -121.905198, 37.595668 ] ], [ [ -121.903567, 37.697744 ], [ -121.903439, 37.696895 ], [ -121.903481, 37.697438 ], [ -121.903567, 37.697744 ] ], [ [ -121.863828, 37.668467 ], [ -121.864686, 37.667992 ], [ -121.864986, 37.667788 ], [ -121.863828, 37.668467 ] ], [ [ -121.870866, 37.653077 ], [ -121.870694, 37.652975 ], [ -121.869965, 37.652704 ], [ -121.870866, 37.653077 ] ], [ [ -121.843915, 37.657222 ], [ -121.844044, 37.657121 ], [ -121.844301, 37.656713 ], [ -121.843915, 37.657222 ] ], [ [ -121.848378, 37.699815 ], [ -121.848292, 37.699204 ], [ -121.848292, 37.699510 ], [ -121.848378, 37.699815 ] ], [ [ -121.942663, 37.597912 ], [ -121.943521, 37.597674 ], [ -121.943307, 37.597708 ], [ -121.942663, 37.597912 ] ], [ [ -121.876616, 37.665444 ], [ -121.876016, 37.665410 ], [ -121.876059, 37.665444 ], [ -121.876616, 37.665444 ] ], [ [ -121.946526, 37.597640 ], [ -121.946011, 37.597504 ], [ -121.945882, 37.597504 ], [ -121.946526, 37.597640 ] ], [ [ -121.946654, 37.712581 ], [ -121.946912, 37.712514 ], [ -121.947041, 37.712412 ], [ -121.946654, 37.712581 ] ], [ [ -121.937985, 37.597538 ], [ -121.937943, 37.597130 ], [ -121.937943, 37.597436 ], [ -121.937985, 37.597538 ] ], [ [ -121.940947, 37.613586 ], [ -121.941075, 37.612600 ], [ -121.940947, 37.613484 ], [ -121.940947, 37.613586 ] ], [ [ -121.843143, 37.658038 ], [ -121.843271, 37.657834 ], [ -121.843185, 37.657902 ], [ -121.843143, 37.658038 ] ], [ [ -121.847348, 37.701615 ], [ -121.847219, 37.701581 ], [ -121.846962, 37.701547 ], [ -121.847348, 37.701615 ] ] ] } } ] } ] } , diff --git a/tests/csv/out-null.mbtiles.json b/tests/csv/out-null.mbtiles.json index 286e6df1f..67837b8e0 100644 --- a/tests/csv/out-null.mbtiles.json +++ b/tests/csv/out-null.mbtiles.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-175.220565,-41.299988,179.216647,64.150024", +"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,64.150024", "bounds": "-180.000000,-41.299988,180.000000,85.051129", "center": "0.000000,0.000000,0", "description": "tests/csv/out-null.mbtiles", diff --git a/tests/csv/out.mbtiles.json b/tests/csv/out.mbtiles.json index f79173d60..228d55950 100644 --- a/tests/csv/out.mbtiles.json +++ b/tests/csv/out.mbtiles.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-175.220565,-41.299988,179.216647,64.150024", +"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,64.150024", "bounds": "-180.000000,-41.299988,180.000000,85.051129", "center": "0.000000,0.000000,0", "description": "tests/csv/out.mbtiles", diff --git a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json index a49565a11..c7002f265 100644 --- a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json +++ b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json @@ -1,6 +1,6 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-175.220565,-41.299974,179.216647,64.150024", -"bounds": "-175.220565,-41.299974,179.216647,64.150024", +"antimeridian_adjusted_bounds": "-175.220564,-41.299974,179.216647,64.150024", +"bounds": "-175.220564,-41.299974,179.216647,64.150024", "center": "16.875000,44.951199,5", "description": "tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json.check.mbtiles", "format": "pbf", diff --git a/tests/id/out/-Z11.json b/tests/id/out/-Z11.json index cd23fc49f..27bf6cb4a 100644 --- a/tests/id/out/-Z11.json +++ b/tests/id/out/-Z11.json @@ -20,12 +20,12 @@ , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241354, 37.807038 ], [ -122.240968, 37.806868 ], [ -122.240410, 37.806800 ], [ -122.239938, 37.806800 ], [ -122.239509, 37.806732 ], [ -122.238436, 37.806088 ], [ -122.237277, 37.805647 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833005 ], [ -122.294312, 37.832497 ], [ -122.294054, 37.831853 ], [ -122.293839, 37.830395 ], [ -122.293882, 37.829413 ], [ -122.293797, 37.829006 ], [ -122.293582, 37.828565 ], [ -122.293239, 37.828158 ], [ -122.292724, 37.827785 ], [ -122.290320, 37.826565 ], [ -122.289548, 37.826396 ], [ -122.288218, 37.826328 ], [ -122.287488, 37.826430 ], [ -122.282896, 37.827277 ], [ -122.281737, 37.827277 ], [ -122.281222, 37.827209 ], [ -122.278519, 37.826599 ], [ -122.275128, 37.825752 ], [ -122.270408, 37.824701 ], [ -122.268434, 37.824158 ], [ -122.265944, 37.823582 ], [ -122.262340, 37.822870 ], [ -122.260151, 37.822192 ], [ -122.259078, 37.821819 ], [ -122.255902, 37.820226 ], [ -122.254272, 37.819175 ], [ -122.253027, 37.818192 ], [ -122.252297, 37.817277 ], [ -122.251697, 37.816158 ], [ -122.251310, 37.815073 ], [ -122.250581, 37.812327 ], [ -122.250366, 37.811818 ], [ -122.250152, 37.811479 ], [ -122.249594, 37.810903 ], [ -122.249207, 37.810598 ], [ -122.248693, 37.810326 ], [ -122.245946, 37.809445 ], [ -122.243543, 37.808801 ], [ -122.241311, 37.808055 ], [ -122.235990, 37.805681 ], [ -122.234831, 37.805037 ], [ -122.233543, 37.804223 ], [ -122.230625, 37.801918 ], [ -122.229981, 37.801477 ], [ -122.229123, 37.801036 ], [ -122.228479, 37.800765 ], [ -122.227707, 37.800561 ], [ -122.220583, 37.799069 ], [ -122.216463, 37.798086 ], [ -122.215776, 37.797848 ], [ -122.212172, 37.796967 ], [ -122.211142, 37.796628 ], [ -122.210069, 37.796187 ], [ -122.206507, 37.794491 ], [ -122.205219, 37.793745 ], [ -122.204490, 37.793168 ], [ -122.203932, 37.792626 ], [ -122.201357, 37.789845 ], [ -122.200627, 37.789167 ], [ -122.200241, 37.788929 ], [ -122.199082, 37.788217 ], [ -122.193761, 37.785639 ], [ -122.192516, 37.785165 ], [ -122.191272, 37.784792 ], [ -122.189727, 37.784418 ], [ -122.188611, 37.784249 ], [ -122.184706, 37.784011 ], [ -122.179556, 37.783842 ], [ -122.178741, 37.783706 ], [ -122.178268, 37.783571 ], [ -122.173676, 37.780959 ], [ -122.169385, 37.778686 ], [ -122.167969, 37.778008 ], [ -122.164536, 37.776448 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184062, 37.776583 ], [ -122.180629, 37.774616 ], [ -122.179685, 37.773937 ] ] } } , { "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181144, 37.774887 ], [ -122.180157, 37.774243 ], [ -122.177968, 37.772547 ], [ -122.176938, 37.771529 ], [ -122.176595, 37.771258 ], [ -122.173247, 37.769663 ], [ -122.173119, 37.769663 ], [ -122.172003, 37.769154 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833005 ], [ -122.294312, 37.832497 ], [ -122.294054, 37.831853 ], [ -122.293839, 37.830395 ], [ -122.293882, 37.829413 ], [ -122.293797, 37.829006 ], [ -122.293582, 37.828565 ], [ -122.293239, 37.828158 ], [ -122.292724, 37.827785 ], [ -122.290320, 37.826565 ], [ -122.289548, 37.826396 ], [ -122.288218, 37.826328 ], [ -122.287488, 37.826430 ], [ -122.282896, 37.827277 ], [ -122.281737, 37.827277 ], [ -122.281222, 37.827209 ], [ -122.278519, 37.826599 ], [ -122.275128, 37.825752 ], [ -122.270408, 37.824701 ], [ -122.268434, 37.824158 ], [ -122.265944, 37.823582 ], [ -122.262340, 37.822870 ], [ -122.260151, 37.822192 ], [ -122.259078, 37.821819 ], [ -122.255902, 37.820226 ], [ -122.254272, 37.819175 ], [ -122.253027, 37.818192 ], [ -122.252297, 37.817277 ], [ -122.251697, 37.816158 ], [ -122.251310, 37.815073 ], [ -122.250581, 37.812327 ], [ -122.250366, 37.811818 ], [ -122.250152, 37.811479 ], [ -122.249594, 37.810903 ], [ -122.249207, 37.810598 ], [ -122.248693, 37.810326 ], [ -122.245946, 37.809445 ], [ -122.243543, 37.808801 ], [ -122.241311, 37.808055 ], [ -122.235990, 37.805681 ], [ -122.234831, 37.805037 ], [ -122.233543, 37.804223 ], [ -122.230625, 37.801918 ], [ -122.229981, 37.801477 ], [ -122.229123, 37.801036 ], [ -122.228479, 37.800765 ], [ -122.227707, 37.800561 ], [ -122.220583, 37.799069 ], [ -122.216463, 37.798086 ], [ -122.215776, 37.797848 ], [ -122.212172, 37.796967 ], [ -122.211142, 37.796628 ], [ -122.210069, 37.796187 ], [ -122.206507, 37.794491 ], [ -122.205219, 37.793745 ], [ -122.204490, 37.793168 ], [ -122.203932, 37.792626 ], [ -122.201357, 37.789845 ], [ -122.200627, 37.789167 ], [ -122.200241, 37.788929 ], [ -122.199082, 37.788217 ], [ -122.193761, 37.785639 ], [ -122.192516, 37.785165 ], [ -122.191272, 37.784792 ], [ -122.189727, 37.784418 ], [ -122.188611, 37.784249 ], [ -122.184706, 37.784011 ], [ -122.179556, 37.783842 ], [ -122.178741, 37.783706 ], [ -122.178268, 37.783571 ], [ -122.173676, 37.780959 ], [ -122.169385, 37.778686 ], [ -122.167969, 37.778008 ], [ -122.164536, 37.776448 ] ] } } +, { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172003, 37.769154 ], [ -122.169685, 37.767628 ], [ -122.167969, 37.766339 ], [ -122.164536, 37.762369 ] ] } } , { "type": "Feature", "id": 1073741824, "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169771, 37.767560 ], [ -122.168355, 37.766542 ], [ -122.167969, 37.766203 ], [ -122.164536, 37.762233 ] ] } } @@ -56,12 +56,12 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 657, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200906, 37.789438 ], [ -122.200606, 37.789184 ], [ -122.199790, 37.788641 ], [ -122.199318, 37.788370 ], [ -122.198761, 37.788081 ], [ -122.194490, 37.785945 ], [ -122.193739, 37.785622 ], [ -122.192109, 37.785029 ], [ -122.191250, 37.784775 ], [ -122.190328, 37.784554 ], [ -122.189727, 37.784435 ], [ -122.188590, 37.784249 ], [ -122.187366, 37.784147 ], [ -122.184684, 37.783994 ], [ -122.179534, 37.783842 ], [ -122.178741, 37.783706 ], [ -122.178247, 37.783571 ], [ -122.173676, 37.780976 ], [ -122.169385, 37.778703 ], [ -122.167969, 37.777991 ], [ -122.166252, 37.777228 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184041, 37.776566 ], [ -122.180607, 37.774633 ], [ -122.180285, 37.774429 ], [ -122.179706, 37.773954 ] ] } } , { "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181165, 37.774870 ], [ -122.180157, 37.774260 ], [ -122.179642, 37.773836 ], [ -122.177947, 37.772564 ], [ -122.176938, 37.771529 ], [ -122.176595, 37.771258 ], [ -122.173226, 37.769663 ], [ -122.173140, 37.769663 ], [ -122.172003, 37.769171 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.200906, 37.789438 ], [ -122.200606, 37.789184 ], [ -122.200499, 37.789133 ], [ -122.199790, 37.788641 ], [ -122.199318, 37.788370 ], [ -122.198761, 37.788081 ], [ -122.194490, 37.785945 ], [ -122.193739, 37.785622 ], [ -122.192109, 37.785029 ], [ -122.191250, 37.784775 ], [ -122.190328, 37.784554 ], [ -122.189727, 37.784435 ], [ -122.188590, 37.784249 ], [ -122.187366, 37.784147 ], [ -122.184684, 37.783994 ], [ -122.179534, 37.783842 ], [ -122.178741, 37.783706 ], [ -122.178247, 37.783571 ], [ -122.173676, 37.780976 ], [ -122.169385, 37.778703 ], [ -122.167969, 37.777991 ], [ -122.166252, 37.777228 ] ] } } +, { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.172003, 37.769171 ], [ -122.169707, 37.767611 ], [ -122.168226, 37.766559 ], [ -122.167969, 37.766339 ], [ -122.166252, 37.764371 ] ] } } , { "type": "Feature", "id": 1073741824, "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169771, 37.767560 ], [ -122.168334, 37.766542 ], [ -122.167969, 37.766203 ], [ -122.166252, 37.764235 ] ] } } @@ -88,7 +88,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 658, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169685, 37.778856 ], [ -122.167969, 37.777991 ], [ -122.165673, 37.776990 ], [ -122.163270, 37.775854 ], [ -122.159235, 37.773819 ], [ -122.158098, 37.773157 ], [ -122.157025, 37.772394 ], [ -122.156038, 37.771495 ], [ -122.155201, 37.770596 ], [ -122.154515, 37.769595 ], [ -122.152348, 37.766101 ], [ -122.151875, 37.765456 ], [ -122.150502, 37.763794 ], [ -122.148721, 37.761131 ], [ -122.148292, 37.760317 ], [ -122.148077, 37.759757 ], [ -122.148013, 37.759485 ], [ -122.147927, 37.758552 ], [ -122.147949, 37.758230 ], [ -122.148035, 37.757755 ], [ -122.148271, 37.757178 ], [ -122.148571, 37.756686 ], [ -122.148914, 37.756262 ], [ -122.150481, 37.754820 ], [ -122.150996, 37.754277 ], [ -122.151403, 37.753717 ], [ -122.151575, 37.753429 ], [ -122.151811, 37.752767 ], [ -122.151897, 37.752309 ], [ -122.151940, 37.751766 ], [ -122.151897, 37.751138 ], [ -122.151768, 37.750680 ], [ -122.151618, 37.750239 ], [ -122.149665, 37.746218 ], [ -122.149215, 37.745505 ], [ -122.148829, 37.745013 ], [ -122.148485, 37.744623 ], [ -122.148142, 37.744335 ], [ -122.147820, 37.744080 ], [ -122.146554, 37.743215 ], [ -122.146039, 37.742808 ], [ -122.145588, 37.742333 ], [ -122.143936, 37.740211 ], [ -122.143013, 37.739380 ], [ -122.141404, 37.738073 ], [ -122.141125, 37.737768 ], [ -122.140718, 37.737174 ], [ -122.140460, 37.736699 ], [ -122.140288, 37.736241 ], [ -122.139494, 37.732847 ], [ -122.138443, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.137907, 37.725956 ], [ -122.137671, 37.725057 ], [ -122.137413, 37.724463 ], [ -122.136919, 37.723665 ], [ -122.134645, 37.720678 ], [ -122.134023, 37.719745 ], [ -122.133379, 37.718590 ], [ -122.132714, 37.717232 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169685, 37.778856 ], [ -122.167969, 37.777991 ], [ -122.165673, 37.776990 ], [ -122.163270, 37.775854 ], [ -122.159235, 37.773819 ], [ -122.158098, 37.773157 ], [ -122.157025, 37.772394 ], [ -122.156038, 37.771495 ], [ -122.155201, 37.770596 ], [ -122.154515, 37.769595 ], [ -122.152348, 37.766101 ], [ -122.151875, 37.765456 ], [ -122.150502, 37.763794 ], [ -122.148721, 37.761131 ], [ -122.148292, 37.760317 ], [ -122.148077, 37.759757 ], [ -122.148013, 37.759485 ], [ -122.147927, 37.758552 ], [ -122.147992, 37.757975 ], [ -122.148035, 37.757755 ], [ -122.148271, 37.757178 ], [ -122.148571, 37.756686 ], [ -122.148914, 37.756262 ], [ -122.150481, 37.754820 ], [ -122.150996, 37.754277 ], [ -122.151403, 37.753717 ], [ -122.151575, 37.753429 ], [ -122.151811, 37.752767 ], [ -122.151897, 37.752309 ], [ -122.151940, 37.751766 ], [ -122.151897, 37.751138 ], [ -122.151768, 37.750680 ], [ -122.151618, 37.750239 ], [ -122.149665, 37.746218 ], [ -122.149215, 37.745505 ], [ -122.148829, 37.745013 ], [ -122.148485, 37.744623 ], [ -122.148142, 37.744335 ], [ -122.147820, 37.744080 ], [ -122.146554, 37.743215 ], [ -122.146039, 37.742808 ], [ -122.145588, 37.742333 ], [ -122.143936, 37.740211 ], [ -122.143013, 37.739380 ], [ -122.141404, 37.738073 ], [ -122.141125, 37.737768 ], [ -122.140718, 37.737174 ], [ -122.140460, 37.736699 ], [ -122.140288, 37.736241 ], [ -122.139494, 37.732847 ], [ -122.138443, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.137907, 37.725956 ], [ -122.137671, 37.725057 ], [ -122.137413, 37.724463 ], [ -122.136919, 37.723665 ], [ -122.134645, 37.720678 ], [ -122.134023, 37.719745 ], [ -122.133379, 37.718590 ], [ -122.132714, 37.717232 ] ] } } , { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.169685, 37.767611 ], [ -122.168226, 37.766559 ], [ -122.167969, 37.766339 ], [ -122.166510, 37.764676 ], [ -122.163227, 37.760859 ], [ -122.163098, 37.760571 ], [ -122.161617, 37.756466 ] ] } } , @@ -116,17 +116,17 @@ , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241504, 37.807275 ], [ -122.241408, 37.807156 ], [ -122.241451, 37.807122 ], [ -122.241354, 37.807029 ], [ -122.241139, 37.806927 ], [ -122.240968, 37.806868 ], [ -122.240657, 37.806800 ], [ -122.240410, 37.806783 ], [ -122.239916, 37.806800 ], [ -122.239616, 37.806749 ], [ -122.239519, 37.806715 ], [ -122.239133, 37.806512 ], [ -122.238801, 37.806283 ], [ -122.238457, 37.806080 ], [ -122.237910, 37.805842 ], [ -122.237266, 37.805639 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256718, 37.820658 ], [ -122.255859, 37.820192 ], [ -122.255334, 37.819879 ], [ -122.254679, 37.819438 ], [ -122.254261, 37.819184 ], [ -122.253660, 37.818726 ], [ -122.253381, 37.818497 ], [ -122.253038, 37.818175 ], [ -122.252458, 37.817489 ], [ -122.252104, 37.816963 ], [ -122.251761, 37.816310 ], [ -122.251503, 37.815641 ], [ -122.251289, 37.814946 ], [ -122.250581, 37.812327 ], [ -122.250409, 37.811920 ], [ -122.250141, 37.811471 ], [ -122.249798, 37.811081 ], [ -122.249476, 37.810801 ], [ -122.249197, 37.810598 ], [ -122.249036, 37.810496 ], [ -122.248703, 37.810335 ], [ -122.248467, 37.810233 ], [ -122.246718, 37.809708 ], [ -122.246557, 37.809665 ], [ -122.245935, 37.809445 ], [ -122.245302, 37.809284 ], [ -122.243553, 37.808784 ], [ -122.242470, 37.808462 ], [ -122.241290, 37.808063 ], [ -122.239627, 37.807351 ], [ -122.238640, 37.806902 ], [ -122.238060, 37.806597 ], [ -122.237438, 37.806351 ], [ -122.236869, 37.806080 ], [ -122.235990, 37.805690 ], [ -122.234842, 37.805054 ], [ -122.234337, 37.804740 ], [ -122.233565, 37.804240 ], [ -122.233222, 37.803986 ], [ -122.231548, 37.802638 ], [ -122.230625, 37.801926 ], [ -122.230368, 37.801731 ], [ -122.229992, 37.801477 ], [ -122.229681, 37.801299 ], [ -122.229134, 37.801027 ], [ -122.228490, 37.800773 ], [ -122.228115, 37.800663 ], [ -122.227718, 37.800570 ], [ -122.226977, 37.800426 ], [ -122.224263, 37.799824 ], [ -122.220583, 37.799061 ], [ -122.217128, 37.798230 ], [ -122.216485, 37.798094 ], [ -122.215755, 37.797831 ], [ -122.213695, 37.797374 ], [ -122.211914, 37.796907 ], [ -122.211056, 37.796611 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256718, 37.820658 ], [ -122.255859, 37.820192 ], [ -122.255334, 37.819879 ], [ -122.254679, 37.819438 ], [ -122.254261, 37.819184 ], [ -122.253660, 37.818726 ], [ -122.253381, 37.818497 ], [ -122.253038, 37.818175 ], [ -122.252458, 37.817489 ], [ -122.252104, 37.816963 ], [ -122.251761, 37.816310 ], [ -122.251503, 37.815641 ], [ -122.251289, 37.814946 ], [ -122.250581, 37.812327 ], [ -122.250409, 37.811920 ], [ -122.250141, 37.811471 ], [ -122.249798, 37.811081 ], [ -122.249476, 37.810793 ], [ -122.249036, 37.810496 ], [ -122.248703, 37.810335 ], [ -122.248467, 37.810233 ], [ -122.246718, 37.809708 ], [ -122.246557, 37.809665 ], [ -122.245935, 37.809445 ], [ -122.245302, 37.809284 ], [ -122.243553, 37.808784 ], [ -122.242470, 37.808462 ], [ -122.241290, 37.808063 ], [ -122.239627, 37.807351 ], [ -122.238640, 37.806902 ], [ -122.238060, 37.806597 ], [ -122.237438, 37.806351 ], [ -122.236869, 37.806080 ], [ -122.235990, 37.805690 ], [ -122.234842, 37.805054 ], [ -122.234337, 37.804740 ], [ -122.233565, 37.804240 ], [ -122.233222, 37.803986 ], [ -122.231548, 37.802638 ], [ -122.230625, 37.801926 ], [ -122.230368, 37.801731 ], [ -122.229992, 37.801477 ], [ -122.229681, 37.801299 ], [ -122.229134, 37.801027 ], [ -122.228490, 37.800773 ], [ -122.228115, 37.800663 ], [ -122.227718, 37.800570 ], [ -122.226977, 37.800426 ], [ -122.224263, 37.799824 ], [ -122.220583, 37.799061 ], [ -122.217128, 37.798230 ], [ -122.216485, 37.798094 ], [ -122.215755, 37.797831 ], [ -122.213695, 37.797374 ], [ -122.211914, 37.796907 ], [ -122.211056, 37.796611 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1315, "y": 3166 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199984, 37.788760 ], [ -122.199329, 37.788361 ], [ -122.198771, 37.788081 ], [ -122.194480, 37.785953 ], [ -122.193750, 37.785631 ], [ -122.192506, 37.785165 ], [ -122.192109, 37.785029 ], [ -122.191250, 37.784783 ], [ -122.190328, 37.784554 ], [ -122.189738, 37.784427 ], [ -122.188590, 37.784249 ], [ -122.187366, 37.784147 ], [ -122.184695, 37.784003 ], [ -122.179545, 37.783842 ], [ -122.179030, 37.783774 ], [ -122.178751, 37.783715 ], [ -122.178247, 37.783571 ], [ -122.173687, 37.780967 ], [ -122.169396, 37.778695 ], [ -122.167969, 37.777999 ], [ -122.167690, 37.777855 ], [ -122.167110, 37.777601 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184041, 37.776575 ], [ -122.180607, 37.774624 ], [ -122.180296, 37.774429 ], [ -122.179695, 37.773954 ] ] } } , -{ "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181165, 37.774879 ], [ -122.180167, 37.774251 ], [ -122.179652, 37.773836 ], [ -122.179341, 37.773615 ], [ -122.178515, 37.772971 ], [ -122.177957, 37.772564 ], [ -122.177346, 37.771919 ], [ -122.176949, 37.771529 ], [ -122.176788, 37.771393 ], [ -122.176595, 37.771258 ], [ -122.176434, 37.771173 ], [ -122.175457, 37.770723 ], [ -122.173237, 37.769655 ], [ -122.173129, 37.769663 ], [ -122.171992, 37.769171 ] ] } } +{ "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181165, 37.774879 ], [ -122.180167, 37.774251 ], [ -122.179652, 37.773836 ], [ -122.179341, 37.773607 ], [ -122.178515, 37.772971 ], [ -122.177957, 37.772564 ], [ -122.177346, 37.771919 ], [ -122.176949, 37.771529 ], [ -122.176788, 37.771393 ], [ -122.176595, 37.771258 ], [ -122.176434, 37.771173 ], [ -122.175457, 37.770723 ], [ -122.173237, 37.769655 ], [ -122.173129, 37.769663 ], [ -122.171992, 37.769171 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.199984, 37.788760 ], [ -122.199329, 37.788361 ], [ -122.198771, 37.788081 ], [ -122.194480, 37.785953 ], [ -122.193750, 37.785631 ], [ -122.192506, 37.785165 ], [ -122.192109, 37.785029 ], [ -122.191250, 37.784783 ], [ -122.190328, 37.784554 ], [ -122.189738, 37.784427 ], [ -122.188590, 37.784249 ], [ -122.187366, 37.784147 ], [ -122.184695, 37.784003 ], [ -122.179545, 37.783842 ], [ -122.179030, 37.783774 ], [ -122.178751, 37.783715 ], [ -122.178247, 37.783571 ], [ -122.173687, 37.780967 ], [ -122.169396, 37.778695 ], [ -122.167969, 37.777999 ], [ -122.167690, 37.777855 ], [ -122.167110, 37.777601 ] ] } } , { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.171992, 37.769171 ], [ -122.169932, 37.767755 ], [ -122.169696, 37.767611 ], [ -122.168226, 37.766568 ], [ -122.167969, 37.766339 ], [ -122.167690, 37.766042 ], [ -122.167110, 37.765355 ] ] } } , @@ -148,7 +148,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1316, "y": 3167 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151200, 37.754023 ], [ -122.151414, 37.753726 ], [ -122.151607, 37.753344 ], [ -122.151715, 37.753073 ], [ -122.151811, 37.752767 ], [ -122.151886, 37.752445 ], [ -122.151929, 37.752038 ], [ -122.151940, 37.751758 ], [ -122.151908, 37.751249 ], [ -122.151854, 37.750969 ], [ -122.151779, 37.750680 ], [ -122.151618, 37.750248 ], [ -122.151425, 37.749815 ], [ -122.151114, 37.749221 ], [ -122.150770, 37.748466 ], [ -122.149676, 37.746218 ], [ -122.149526, 37.745947 ], [ -122.149225, 37.745505 ], [ -122.148904, 37.745098 ], [ -122.148474, 37.744623 ], [ -122.148142, 37.744335 ], [ -122.147820, 37.744080 ], [ -122.146554, 37.743215 ], [ -122.146136, 37.742876 ], [ -122.145717, 37.742477 ], [ -122.145588, 37.742341 ], [ -122.145106, 37.741679 ], [ -122.144043, 37.740305 ], [ -122.143593, 37.739881 ], [ -122.143024, 37.739388 ], [ -122.142359, 37.738862 ], [ -122.141404, 37.738073 ], [ -122.141190, 37.737836 ], [ -122.141061, 37.737666 ], [ -122.140771, 37.737276 ], [ -122.140610, 37.737004 ], [ -122.140460, 37.736699 ], [ -122.140288, 37.736232 ], [ -122.139881, 37.734433 ], [ -122.139494, 37.732855 ], [ -122.139162, 37.731591 ], [ -122.138432, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.137917, 37.725965 ], [ -122.137756, 37.725345 ], [ -122.137660, 37.725048 ], [ -122.137402, 37.724463 ], [ -122.137241, 37.724166 ], [ -122.136919, 37.723665 ], [ -122.136523, 37.723122 ], [ -122.135310, 37.721569 ], [ -122.134645, 37.720678 ], [ -122.134033, 37.719745 ], [ -122.133368, 37.718590 ], [ -122.133025, 37.717911 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.151200, 37.754023 ], [ -122.151414, 37.753726 ], [ -122.151607, 37.753344 ], [ -122.151715, 37.753073 ], [ -122.151811, 37.752767 ], [ -122.151886, 37.752445 ], [ -122.151929, 37.752038 ], [ -122.151940, 37.751758 ], [ -122.151908, 37.751249 ], [ -122.151854, 37.750969 ], [ -122.151779, 37.750680 ], [ -122.151618, 37.750248 ], [ -122.151425, 37.749815 ], [ -122.151114, 37.749221 ], [ -122.150770, 37.748466 ], [ -122.149676, 37.746218 ], [ -122.149526, 37.745947 ], [ -122.149225, 37.745505 ], [ -122.148904, 37.745098 ], [ -122.148474, 37.744623 ], [ -122.148142, 37.744335 ], [ -122.147820, 37.744080 ], [ -122.146554, 37.743215 ], [ -122.146136, 37.742876 ], [ -122.145717, 37.742477 ], [ -122.145588, 37.742341 ], [ -122.145106, 37.741679 ], [ -122.144043, 37.740305 ], [ -122.143593, 37.739881 ], [ -122.143024, 37.739388 ], [ -122.142359, 37.738862 ], [ -122.141404, 37.738073 ], [ -122.141190, 37.737836 ], [ -122.141061, 37.737666 ], [ -122.140771, 37.737276 ], [ -122.140610, 37.737004 ], [ -122.140460, 37.736699 ], [ -122.140288, 37.736232 ], [ -122.139494, 37.732855 ], [ -122.139162, 37.731591 ], [ -122.138432, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.137917, 37.725965 ], [ -122.137756, 37.725345 ], [ -122.137660, 37.725048 ], [ -122.137402, 37.724463 ], [ -122.137241, 37.724166 ], [ -122.136919, 37.723665 ], [ -122.136523, 37.723122 ], [ -122.135310, 37.721569 ], [ -122.134645, 37.720678 ], [ -122.134033, 37.719745 ], [ -122.133368, 37.718590 ], [ -122.133025, 37.717911 ] ] } } , { "type": "Feature", "id": 1073741824, "properties": { "LINEARID": "1105089465114", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.160802, 37.754023 ], [ -122.160555, 37.753344 ], [ -122.159826, 37.751334 ], [ -122.157229, 37.747372 ], [ -122.156500, 37.746227 ], [ -122.156328, 37.746015 ], [ -122.156167, 37.745896 ], [ -122.154826, 37.744988 ], [ -122.154043, 37.744428 ], [ -122.153828, 37.744250 ], [ -122.153431, 37.743885 ], [ -122.152541, 37.742960 ], [ -122.152240, 37.742723 ], [ -122.151725, 37.742341 ], [ -122.151264, 37.742061 ], [ -122.150888, 37.741866 ], [ -122.149075, 37.741017 ], [ -122.148582, 37.740797 ], [ -122.147831, 37.740424 ], [ -122.146286, 37.739694 ] ] } } ] } @@ -156,7 +156,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1316, "y": 3166 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168827, 37.778423 ], [ -122.167969, 37.777999 ], [ -122.167690, 37.777855 ], [ -122.165684, 37.776990 ], [ -122.163280, 37.775862 ], [ -122.160416, 37.774387 ], [ -122.159246, 37.773819 ], [ -122.158506, 37.773412 ], [ -122.158098, 37.773166 ], [ -122.157530, 37.772776 ], [ -122.157025, 37.772394 ], [ -122.156435, 37.771868 ], [ -122.156028, 37.771495 ], [ -122.155201, 37.770588 ], [ -122.154858, 37.770113 ], [ -122.154504, 37.769595 ], [ -122.152348, 37.766093 ], [ -122.151875, 37.765465 ], [ -122.150813, 37.764201 ], [ -122.150502, 37.763803 ], [ -122.149183, 37.761852 ], [ -122.148721, 37.761122 ], [ -122.148292, 37.760317 ], [ -122.148067, 37.759757 ], [ -122.147970, 37.759307 ], [ -122.147917, 37.758722 ], [ -122.147949, 37.758221 ], [ -122.148035, 37.757763 ], [ -122.148271, 37.757170 ], [ -122.148453, 37.756856 ], [ -122.148710, 37.756508 ], [ -122.148904, 37.756262 ], [ -122.149129, 37.756033 ], [ -122.150481, 37.754812 ], [ -122.151006, 37.754277 ], [ -122.151414, 37.753717 ], [ -122.151607, 37.753344 ], [ -122.151715, 37.753073 ], [ -122.151843, 37.752665 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168827, 37.778423 ], [ -122.167969, 37.777999 ], [ -122.167690, 37.777855 ], [ -122.165684, 37.776990 ], [ -122.163280, 37.775862 ], [ -122.160416, 37.774387 ], [ -122.159246, 37.773819 ], [ -122.158506, 37.773412 ], [ -122.158098, 37.773166 ], [ -122.157530, 37.772776 ], [ -122.157025, 37.772394 ], [ -122.156435, 37.771868 ], [ -122.156028, 37.771495 ], [ -122.155201, 37.770588 ], [ -122.154858, 37.770113 ], [ -122.154504, 37.769595 ], [ -122.152348, 37.766093 ], [ -122.151875, 37.765465 ], [ -122.150813, 37.764201 ], [ -122.150502, 37.763803 ], [ -122.149183, 37.761852 ], [ -122.148721, 37.761122 ], [ -122.148292, 37.760317 ], [ -122.148067, 37.759757 ], [ -122.147970, 37.759307 ], [ -122.147917, 37.758722 ], [ -122.147949, 37.758221 ], [ -122.147981, 37.757967 ], [ -122.148035, 37.757763 ], [ -122.148271, 37.757170 ], [ -122.148453, 37.756856 ], [ -122.148710, 37.756508 ], [ -122.148904, 37.756262 ], [ -122.149129, 37.756033 ], [ -122.150481, 37.754812 ], [ -122.151006, 37.754277 ], [ -122.151414, 37.753717 ], [ -122.151607, 37.753344 ], [ -122.151715, 37.753073 ], [ -122.151843, 37.752665 ] ] } } , { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168827, 37.766992 ], [ -122.168226, 37.766568 ], [ -122.167969, 37.766339 ], [ -122.167690, 37.766042 ], [ -122.167164, 37.765423 ], [ -122.166499, 37.764685 ], [ -122.165941, 37.763998 ], [ -122.165684, 37.763718 ], [ -122.164814, 37.762683 ], [ -122.163355, 37.761029 ], [ -122.163237, 37.760859 ], [ -122.163098, 37.760571 ], [ -122.161628, 37.756474 ] ] } } , @@ -172,7 +172,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2626, "y": 6329 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294564, 37.833010 ], [ -122.294295, 37.832505 ], [ -122.294134, 37.832090 ], [ -122.294065, 37.831849 ], [ -122.293888, 37.830900 ], [ -122.293845, 37.830637 ], [ -122.293823, 37.830395 ], [ -122.293872, 37.829400 ], [ -122.293797, 37.829006 ], [ -122.293721, 37.828815 ], [ -122.293593, 37.828565 ], [ -122.293335, 37.828256 ], [ -122.293233, 37.828154 ], [ -122.292965, 37.827942 ], [ -122.292745, 37.827798 ], [ -122.292493, 37.827658 ], [ -122.291302, 37.827040 ], [ -122.291104, 37.826930 ], [ -122.290546, 37.826663 ], [ -122.290342, 37.826574 ], [ -122.289945, 37.826455 ], [ -122.289543, 37.826383 ], [ -122.289248, 37.826353 ], [ -122.289044, 37.826341 ], [ -122.288598, 37.826328 ], [ -122.288228, 37.826341 ], [ -122.287998, 37.826358 ], [ -122.287719, 37.826391 ], [ -122.287493, 37.826430 ], [ -122.286817, 37.826561 ], [ -122.285594, 37.826777 ], [ -122.284473, 37.826985 ], [ -122.283170, 37.827235 ], [ -122.282907, 37.827269 ], [ -122.282698, 37.827281 ], [ -122.282327, 37.827290 ], [ -122.281753, 37.827281 ], [ -122.281512, 37.827260 ], [ -122.281024, 37.827188 ], [ -122.280804, 37.827146 ], [ -122.278524, 37.826603 ], [ -122.278401, 37.826565 ], [ -122.277832, 37.826421 ], [ -122.277403, 37.826315 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294564, 37.833010 ], [ -122.294295, 37.832505 ], [ -122.294134, 37.832090 ], [ -122.294065, 37.831849 ], [ -122.293888, 37.830900 ], [ -122.293845, 37.830637 ], [ -122.293823, 37.830395 ], [ -122.293872, 37.829400 ], [ -122.293797, 37.829006 ], [ -122.293721, 37.828815 ], [ -122.293593, 37.828565 ], [ -122.293335, 37.828256 ], [ -122.293233, 37.828154 ], [ -122.292965, 37.827942 ], [ -122.292745, 37.827798 ], [ -122.292493, 37.827658 ], [ -122.291302, 37.827040 ], [ -122.291104, 37.826930 ], [ -122.290546, 37.826663 ], [ -122.290342, 37.826574 ], [ -122.289945, 37.826455 ], [ -122.289543, 37.826383 ], [ -122.289248, 37.826353 ], [ -122.289044, 37.826341 ], [ -122.288598, 37.826328 ], [ -122.288228, 37.826341 ], [ -122.287998, 37.826358 ], [ -122.287719, 37.826391 ], [ -122.287493, 37.826430 ], [ -122.286817, 37.826561 ], [ -122.285594, 37.826777 ], [ -122.284473, 37.826985 ], [ -122.283170, 37.827235 ], [ -122.282907, 37.827269 ], [ -122.282698, 37.827281 ], [ -122.282327, 37.827290 ], [ -122.281753, 37.827281 ], [ -122.281512, 37.827260 ], [ -122.281024, 37.827188 ], [ -122.280804, 37.827146 ], [ -122.279919, 37.826938 ], [ -122.279854, 37.826917 ], [ -122.278524, 37.826603 ], [ -122.278395, 37.826565 ], [ -122.277832, 37.826425 ], [ -122.277403, 37.826315 ] ] } } ] } ] } , @@ -184,7 +184,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2627, "y": 6329 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278261, 37.826531 ], [ -122.277832, 37.826421 ], [ -122.275144, 37.825747 ], [ -122.275059, 37.825735 ], [ -122.274125, 37.825544 ], [ -122.270408, 37.824705 ], [ -122.269732, 37.824506 ], [ -122.268965, 37.824315 ], [ -122.268450, 37.824175 ], [ -122.267350, 37.823959 ], [ -122.265928, 37.823599 ], [ -122.264856, 37.823391 ], [ -122.264577, 37.823328 ], [ -122.263525, 37.823133 ], [ -122.262323, 37.822874 ], [ -122.262039, 37.822802 ], [ -122.261921, 37.822773 ], [ -122.261079, 37.822463 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.278261, 37.826531 ], [ -122.277832, 37.826425 ], [ -122.275144, 37.825747 ], [ -122.275059, 37.825735 ], [ -122.274125, 37.825544 ], [ -122.270408, 37.824705 ], [ -122.269732, 37.824506 ], [ -122.268965, 37.824315 ], [ -122.268450, 37.824175 ], [ -122.267350, 37.823959 ], [ -122.265928, 37.823599 ], [ -122.264856, 37.823391 ], [ -122.264577, 37.823328 ], [ -122.263525, 37.823133 ], [ -122.262323, 37.822874 ], [ -122.262039, 37.822802 ], [ -122.261921, 37.822773 ], [ -122.261079, 37.822463 ] ] } } ] } ] } , @@ -192,7 +192,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.237712, 37.805783 ], [ -122.237272, 37.805643 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236199, 37.805783 ], [ -122.235990, 37.805690 ], [ -122.235539, 37.805444 ], [ -122.234847, 37.805054 ], [ -122.234337, 37.804745 ], [ -122.233887, 37.804452 ], [ -122.233565, 37.804240 ], [ -122.233458, 37.804160 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.236199, 37.805783 ], [ -122.235990, 37.805690 ], [ -122.235534, 37.805444 ], [ -122.234847, 37.805054 ], [ -122.234337, 37.804745 ], [ -122.233887, 37.804452 ], [ -122.233565, 37.804240 ], [ -122.233458, 37.804160 ] ] } } ] } ] } , @@ -204,7 +204,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241510, 37.807275 ], [ -122.241472, 37.807241 ], [ -122.241408, 37.807160 ], [ -122.241456, 37.807127 ], [ -122.241354, 37.807033 ], [ -122.241145, 37.806927 ], [ -122.240973, 37.806868 ], [ -122.240657, 37.806804 ], [ -122.240410, 37.806788 ], [ -122.240163, 37.806800 ], [ -122.239922, 37.806800 ], [ -122.239793, 37.806783 ], [ -122.239621, 37.806749 ], [ -122.239525, 37.806720 ], [ -122.239412, 37.806669 ], [ -122.239138, 37.806512 ], [ -122.238806, 37.806283 ], [ -122.238597, 37.806156 ], [ -122.238457, 37.806084 ], [ -122.238189, 37.805961 ], [ -122.237910, 37.805847 ], [ -122.237272, 37.805643 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256289, 37.820429 ], [ -122.255859, 37.820196 ], [ -122.255334, 37.819879 ], [ -122.254685, 37.819442 ], [ -122.254261, 37.819184 ], [ -122.253660, 37.818726 ], [ -122.253381, 37.818497 ], [ -122.253043, 37.818179 ], [ -122.252796, 37.817900 ], [ -122.252458, 37.817489 ], [ -122.252110, 37.816963 ], [ -122.251766, 37.816315 ], [ -122.251691, 37.816145 ], [ -122.251503, 37.815645 ], [ -122.251289, 37.814950 ], [ -122.250586, 37.812331 ], [ -122.250495, 37.812098 ], [ -122.250414, 37.811924 ], [ -122.250291, 37.811704 ], [ -122.250141, 37.811475 ], [ -122.249975, 37.811276 ], [ -122.249798, 37.811085 ], [ -122.249610, 37.810907 ], [ -122.249197, 37.810598 ], [ -122.249036, 37.810500 ], [ -122.248709, 37.810335 ], [ -122.248473, 37.810233 ], [ -122.246724, 37.809708 ], [ -122.246557, 37.809670 ], [ -122.245935, 37.809445 ], [ -122.245302, 37.809288 ], [ -122.243559, 37.808788 ], [ -122.242475, 37.808462 ], [ -122.241853, 37.808262 ], [ -122.241295, 37.808067 ], [ -122.240496, 37.807733 ], [ -122.239627, 37.807355 ], [ -122.238645, 37.806906 ], [ -122.238060, 37.806601 ], [ -122.237438, 37.806351 ], [ -122.236869, 37.806080 ], [ -122.235990, 37.805690 ], [ -122.235539, 37.805444 ], [ -122.234938, 37.805105 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.256289, 37.820429 ], [ -122.255859, 37.820196 ], [ -122.255334, 37.819879 ], [ -122.254685, 37.819442 ], [ -122.254261, 37.819184 ], [ -122.253660, 37.818726 ], [ -122.253381, 37.818497 ], [ -122.253043, 37.818179 ], [ -122.252796, 37.817900 ], [ -122.252458, 37.817489 ], [ -122.252110, 37.816963 ], [ -122.251766, 37.816315 ], [ -122.251691, 37.816145 ], [ -122.251503, 37.815645 ], [ -122.251289, 37.814950 ], [ -122.250586, 37.812331 ], [ -122.250495, 37.812098 ], [ -122.250366, 37.811831 ], [ -122.250141, 37.811475 ], [ -122.249975, 37.811276 ], [ -122.249798, 37.811085 ], [ -122.249610, 37.810907 ], [ -122.249476, 37.810797 ], [ -122.249197, 37.810598 ], [ -122.249036, 37.810500 ], [ -122.248709, 37.810335 ], [ -122.248473, 37.810233 ], [ -122.246724, 37.809708 ], [ -122.246557, 37.809670 ], [ -122.245935, 37.809445 ], [ -122.245302, 37.809288 ], [ -122.243559, 37.808788 ], [ -122.242475, 37.808462 ], [ -122.241853, 37.808262 ], [ -122.241295, 37.808067 ], [ -122.240496, 37.807733 ], [ -122.239627, 37.807355 ], [ -122.238645, 37.806906 ], [ -122.238060, 37.806601 ], [ -122.237438, 37.806351 ], [ -122.236869, 37.806080 ], [ -122.235990, 37.805690 ], [ -122.235534, 37.805444 ], [ -122.234938, 37.805105 ] ] } } ] } ] } , @@ -222,7 +222,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2630, "y": 6331 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212343, 37.797022 ], [ -122.212155, 37.796975 ], [ -122.211914, 37.796903 ], [ -122.211667, 37.796827 ], [ -122.211142, 37.796644 ], [ -122.210771, 37.796505 ], [ -122.210058, 37.796191 ], [ -122.208953, 37.795653 ], [ -122.206512, 37.794504 ], [ -122.205884, 37.794177 ], [ -122.205203, 37.793745 ], [ -122.204913, 37.793520 ], [ -122.204474, 37.793160 ], [ -122.203916, 37.792617 ], [ -122.203492, 37.792155 ], [ -122.203406, 37.792079 ], [ -122.201529, 37.790036 ], [ -122.201352, 37.789853 ], [ -122.200665, 37.789226 ], [ -122.200617, 37.789184 ], [ -122.200515, 37.789137 ], [ -122.200241, 37.788929 ], [ -122.199538, 37.788480 ], [ -122.199329, 37.788361 ], [ -122.199077, 37.788230 ], [ -122.198771, 37.788081 ], [ -122.198079, 37.787742 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.212343, 37.797022 ], [ -122.212155, 37.796975 ], [ -122.211914, 37.796903 ], [ -122.211667, 37.796827 ], [ -122.211142, 37.796644 ], [ -122.210771, 37.796505 ], [ -122.210058, 37.796191 ], [ -122.208953, 37.795653 ], [ -122.206512, 37.794504 ], [ -122.205884, 37.794177 ], [ -122.205203, 37.793745 ], [ -122.204913, 37.793520 ], [ -122.204474, 37.793160 ], [ -122.203916, 37.792617 ], [ -122.203492, 37.792155 ], [ -122.203406, 37.792079 ], [ -122.201529, 37.790036 ], [ -122.201352, 37.789853 ], [ -122.200665, 37.789226 ], [ -122.200617, 37.789184 ], [ -122.200509, 37.789137 ], [ -122.200241, 37.788929 ], [ -122.199538, 37.788480 ], [ -122.199329, 37.788361 ], [ -122.199077, 37.788230 ], [ -122.198771, 37.788081 ], [ -122.198079, 37.787742 ] ] } } ] } ] } , @@ -238,11 +238,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2631, "y": 6332 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190371, 37.784563 ], [ -122.189941, 37.784474 ], [ -122.189738, 37.784431 ], [ -122.188954, 37.784304 ], [ -122.188595, 37.784253 ], [ -122.187366, 37.784147 ], [ -122.185607, 37.784045 ], [ -122.184695, 37.784003 ], [ -122.179840, 37.783863 ], [ -122.179545, 37.783846 ], [ -122.179036, 37.783774 ], [ -122.178751, 37.783715 ], [ -122.178252, 37.783575 ], [ -122.173687, 37.780972 ], [ -122.173247, 37.780747 ], [ -122.169396, 37.778699 ], [ -122.168366, 37.778199 ], [ -122.167969, 37.777999 ], [ -122.167695, 37.777859 ], [ -122.167540, 37.777792 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1103690483032", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.184046, 37.776575 ], [ -122.183917, 37.776507 ], [ -122.183080, 37.776019 ], [ -122.182265, 37.775574 ], [ -122.181310, 37.775019 ], [ -122.181117, 37.774917 ], [ -122.180613, 37.774629 ], [ -122.180296, 37.774429 ], [ -122.180119, 37.774298 ], [ -122.179701, 37.773954 ] ] } } , -{ "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181165, 37.774879 ], [ -122.180361, 37.774387 ], [ -122.180167, 37.774255 ], [ -122.179652, 37.773836 ], [ -122.179347, 37.773615 ], [ -122.178521, 37.772971 ], [ -122.177957, 37.772564 ], [ -122.177346, 37.771919 ], [ -122.176949, 37.771529 ], [ -122.176809, 37.771410 ], [ -122.176707, 37.771334 ], [ -122.176600, 37.771262 ], [ -122.176439, 37.771173 ], [ -122.175431, 37.770715 ], [ -122.174728, 37.770376 ] ] } } +{ "type": "Feature", "id": 0, "properties": { "LINEARID": "1102406970092", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.181165, 37.774879 ], [ -122.180361, 37.774387 ], [ -122.180167, 37.774255 ], [ -122.179652, 37.773836 ], [ -122.179341, 37.773611 ], [ -122.178521, 37.772971 ], [ -122.177957, 37.772564 ], [ -122.177346, 37.771919 ], [ -122.176949, 37.771529 ], [ -122.176809, 37.771410 ], [ -122.176707, 37.771334 ], [ -122.176600, 37.771262 ], [ -122.176439, 37.771173 ], [ -122.175431, 37.770715 ], [ -122.174728, 37.770376 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.190371, 37.784563 ], [ -122.189941, 37.784474 ], [ -122.189738, 37.784431 ], [ -122.188954, 37.784304 ], [ -122.188595, 37.784253 ], [ -122.187366, 37.784147 ], [ -122.185607, 37.784045 ], [ -122.184695, 37.784003 ], [ -122.183011, 37.783948 ], [ -122.179840, 37.783863 ], [ -122.179545, 37.783846 ], [ -122.179036, 37.783774 ], [ -122.178751, 37.783715 ], [ -122.178252, 37.783575 ], [ -122.173687, 37.780972 ], [ -122.173247, 37.780747 ], [ -122.169396, 37.778699 ], [ -122.168366, 37.778199 ], [ -122.167969, 37.777999 ], [ -122.167695, 37.777859 ], [ -122.167540, 37.777792 ] ] } } ] } ] } , @@ -256,7 +256,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2632, "y": 6333 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.155641, 37.771054 ], [ -122.155319, 37.770715 ], [ -122.155207, 37.770592 ], [ -122.154858, 37.770117 ], [ -122.154509, 37.769600 ], [ -122.152353, 37.766097 ], [ -122.152187, 37.765868 ], [ -122.151875, 37.765465 ], [ -122.150813, 37.764205 ], [ -122.150502, 37.763803 ], [ -122.149789, 37.762751 ], [ -122.148936, 37.761466 ], [ -122.148727, 37.761127 ], [ -122.148297, 37.760321 ], [ -122.148206, 37.760075 ], [ -122.148072, 37.759757 ], [ -122.148008, 37.759485 ], [ -122.147976, 37.759307 ], [ -122.147922, 37.758722 ], [ -122.147922, 37.758548 ], [ -122.147949, 37.758226 ], [ -122.147992, 37.757971 ], [ -122.148040, 37.757763 ], [ -122.148099, 37.757590 ], [ -122.148190, 37.757361 ], [ -122.148276, 37.757174 ], [ -122.148458, 37.756860 ], [ -122.148710, 37.756508 ], [ -122.148909, 37.756262 ], [ -122.149408, 37.755779 ], [ -122.150154, 37.755117 ], [ -122.150481, 37.754816 ], [ -122.150706, 37.754595 ], [ -122.151006, 37.754277 ], [ -122.151414, 37.753721 ], [ -122.151607, 37.753344 ], [ -122.151741, 37.753005 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.155641, 37.771054 ], [ -122.155319, 37.770715 ], [ -122.155207, 37.770592 ], [ -122.154858, 37.770117 ], [ -122.154509, 37.769600 ], [ -122.152353, 37.766097 ], [ -122.152187, 37.765868 ], [ -122.151875, 37.765465 ], [ -122.150813, 37.764205 ], [ -122.150502, 37.763803 ], [ -122.149789, 37.762751 ], [ -122.148936, 37.761466 ], [ -122.148727, 37.761127 ], [ -122.148297, 37.760321 ], [ -122.148206, 37.760075 ], [ -122.148072, 37.759757 ], [ -122.148008, 37.759485 ], [ -122.147976, 37.759307 ], [ -122.147922, 37.758722 ], [ -122.147922, 37.758548 ], [ -122.147949, 37.758226 ], [ -122.147986, 37.757971 ], [ -122.148040, 37.757763 ], [ -122.148099, 37.757590 ], [ -122.148190, 37.757361 ], [ -122.148276, 37.757174 ], [ -122.148458, 37.756860 ], [ -122.148710, 37.756508 ], [ -122.148909, 37.756262 ], [ -122.149408, 37.755779 ], [ -122.150154, 37.755117 ], [ -122.150481, 37.754816 ], [ -122.150706, 37.754595 ], [ -122.151006, 37.754277 ], [ -122.151414, 37.753721 ], [ -122.151607, 37.753344 ], [ -122.151741, 37.753005 ] ] } } , { "type": "Feature", "id": 123, "properties": { "LINEARID": "1102954918511", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.168398, 37.766686 ], [ -122.168226, 37.766568 ], [ -122.168022, 37.766398 ], [ -122.167969, 37.766343 ], [ -122.167690, 37.766046 ], [ -122.167169, 37.765423 ], [ -122.166504, 37.764685 ], [ -122.165941, 37.764002 ], [ -122.165689, 37.763722 ], [ -122.164814, 37.762683 ], [ -122.164332, 37.762123 ], [ -122.163361, 37.761033 ], [ -122.163237, 37.760864 ], [ -122.163146, 37.760686 ], [ -122.163103, 37.760571 ], [ -122.161628, 37.756474 ] ] } } , @@ -278,7 +278,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2633, "y": 6335 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140315, 37.736309 ], [ -122.140288, 37.736236 ], [ -122.140224, 37.735969 ], [ -122.140095, 37.735430 ], [ -122.139881, 37.734438 ], [ -122.139500, 37.732855 ], [ -122.139167, 37.731595 ], [ -122.138438, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.138169, 37.727620 ], [ -122.137971, 37.726270 ], [ -122.137917, 37.725965 ], [ -122.137869, 37.725744 ], [ -122.137762, 37.725350 ], [ -122.137665, 37.725053 ], [ -122.137579, 37.724836 ], [ -122.137408, 37.724463 ], [ -122.137247, 37.724166 ], [ -122.136925, 37.723665 ], [ -122.136523, 37.723122 ], [ -122.136109, 37.722604 ], [ -122.135841, 37.722248 ], [ -122.135310, 37.721569 ], [ -122.134645, 37.720678 ], [ -122.134033, 37.719745 ], [ -122.133374, 37.718590 ], [ -122.133202, 37.718251 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.140315, 37.736309 ], [ -122.140288, 37.736236 ], [ -122.140224, 37.735969 ], [ -122.140095, 37.735430 ], [ -122.139891, 37.734493 ], [ -122.139500, 37.732855 ], [ -122.139167, 37.731595 ], [ -122.138438, 37.729045 ], [ -122.138336, 37.728638 ], [ -122.138169, 37.727620 ], [ -122.137971, 37.726270 ], [ -122.137917, 37.725965 ], [ -122.137869, 37.725744 ], [ -122.137762, 37.725350 ], [ -122.137665, 37.725053 ], [ -122.137579, 37.724836 ], [ -122.137408, 37.724463 ], [ -122.137247, 37.724166 ], [ -122.136925, 37.723665 ], [ -122.136523, 37.723122 ], [ -122.136109, 37.722604 ], [ -122.135841, 37.722248 ], [ -122.135310, 37.721569 ], [ -122.134645, 37.720678 ], [ -122.134033, 37.719745 ], [ -122.133374, 37.718590 ], [ -122.133202, 37.718251 ] ] } } ] } ] } , diff --git a/tests/join-population/joined-i.mbtiles.json b/tests/join-population/joined-i.mbtiles.json index 0e1353c38..c191b2f35 100644 --- a/tests/join-population/joined-i.mbtiles.json +++ b/tests/join-population/joined-i.mbtiles.json @@ -5,7 +5,7 @@ "description": "tests/join-population/tabblock_06001420.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles '-YALAND10:Land area' '-L{\"file\": \"tests/join-population/tabblock_06001420.json\", \"description\": \"population\"}'; ./tile-join -q -f -i -o tests/join-population/joined-i.mbtiles -x GEOID10 -c tests/join-population/population.csv tests/join-population/tabblock_06001420.mbtiles", -"json": "{\"vector_layers\":[{\"id\":\"tabblock_06001420\",\"description\":\"population\",\"minzoom\":4,\"maxzoom\":12,\"fields\":{\"ALAND10\":\"Land area\",\"AWATER10\":\"Number\",\"BLOCKCE10\":\"String\",\"COUNTYFP10\":\"String\",\"FUNCSTAT10\":\"String\",\"INTPTLAT10\":\"String\",\"INTPTLON10\":\"String\",\"MTFCC10\":\"String\",\"NAME10\":\"String\",\"STATEFP10\":\"String\",\"TRACTCE10\":\"String\",\"UACE10\":\"String\",\"UATYP10\":\"String\",\"UR10\":\"String\",\"population\":\"Mixed\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"tabblock_06001420\",\"count\":1001,\"geometry\":\"Polygon\",\"attributeCount\":15,\"attributes\":[{\"attribute\":\"ALAND10\",\"count\":162,\"type\":\"number\",\"values\":[10019,10125,10320,10339,10769,10776,10975,11206,11297,11306,11372,11825,11928,11997,1201,12044,12062,12213,12579,12945,13013,13106,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14523,14541,14557,1457,14593,14639,14791,14799,14980,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,17210,17230,17265,17308,17581,17622,17780,17893,18064,18095,18377,18586,18637,1878,18897,19453,19544,19676,19773,19818,19896,20277,20386,20486],\"min\":280,\"max\":412555},{\"attribute\":\"AWATER10\",\"count\":1,\"type\":\"number\",\"values\":[0],\"min\":0,\"max\":0},{\"attribute\":\"BLOCKCE10\",\"count\":72,\"type\":\"string\",\"values\":[\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1026\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3023\",\"3024\",\"3026\",\"3027\",\"3028\",\"3031\"]},{\"attribute\":\"COUNTYFP10\",\"count\":1,\"type\":\"string\",\"values\":[\"001\"]},{\"attribute\":\"FUNCSTAT10\",\"count\":1,\"type\":\"string\",\"values\":[\"S\"]},{\"attribute\":\"INTPTLAT10\",\"count\":161,\"type\":\"string\",\"values\":[\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883693\",\"+37.883707\",\"+37.883836\",\"+37.883875\",\"+37.883973\",\"+37.884009\",\"+37.884079\",\"+37.884338\",\"+37.884369\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884896\",\"+37.884919\",\"+37.885307\",\"+37.885308\",\"+37.885448\",\"+37.885491\",\"+37.885646\",\"+37.885811\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886322\",\"+37.886339\",\"+37.886460\",\"+37.886495\",\"+37.886596\",\"+37.886608\",\"+37.886830\",\"+37.887238\",\"+37.887570\",\"+37.887789\",\"+37.887945\",\"+37.888027\",\"+37.888238\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888848\",\"+37.888859\",\"+37.888863\",\"+37.888908\",\"+37.888930\",\"+37.888934\",\"+37.889007\",\"+37.889049\",\"+37.889126\",\"+37.889177\",\"+37.889251\",\"+37.889326\",\"+37.889411\",\"+37.889518\",\"+37.889545\",\"+37.889669\",\"+37.889828\",\"+37.889955\",\"+37.890058\",\"+37.890110\",\"+37.890166\",\"+37.890172\",\"+37.890209\",\"+37.890214\",\"+37.890278\",\"+37.890696\",\"+37.890858\",\"+37.891028\",\"+37.891101\",\"+37.891200\",\"+37.891205\",\"+37.891320\",\"+37.891425\",\"+37.891538\",\"+37.891658\",\"+37.891713\",\"+37.891785\",\"+37.891804\",\"+37.891809\",\"+37.891823\",\"+37.891824\"]},{\"attribute\":\"INTPTLON10\",\"count\":162,\"type\":\"string\",\"values\":[\"-122.282371\",\"-122.282689\",\"-122.283067\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.284471\",\"-122.284571\",\"-122.284831\",\"-122.285020\",\"-122.285175\",\"-122.285609\",\"-122.285901\",\"-122.285971\",\"-122.286349\",\"-122.286366\",\"-122.286636\",\"-122.286865\",\"-122.286913\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288382\",\"-122.288602\",\"-122.288628\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291391\",\"-122.291474\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292153\",\"-122.292309\",\"-122.292394\",\"-122.292674\",\"-122.292756\",\"-122.292777\",\"-122.292811\",\"-122.292824\",\"-122.292906\",\"-122.293296\",\"-122.293364\",\"-122.293455\",\"-122.293477\",\"-122.293508\",\"-122.293592\",\"-122.293633\",\"-122.294157\",\"-122.294213\",\"-122.294338\",\"-122.294418\",\"-122.294456\",\"-122.294503\",\"-122.294972\",\"-122.295039\",\"-122.295184\",\"-122.295286\",\"-122.295319\",\"-122.295359\",\"-122.295566\",\"-122.295888\",\"-122.296030\",\"-122.296083\",\"-122.296144\",\"-122.296175\",\"-122.296220\",\"-122.296405\",\"-122.296474\",\"-122.296730\"]},{\"attribute\":\"MTFCC10\",\"count\":1,\"type\":\"string\",\"values\":[\"G5040\"]},{\"attribute\":\"NAME10\",\"count\":72,\"type\":\"string\",\"values\":[\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1026\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3023\",\"Block 3024\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3031\"]},{\"attribute\":\"STATEFP10\",\"count\":1,\"type\":\"string\",\"values\":[\"06\"]},{\"attribute\":\"TRACTCE10\",\"count\":6,\"type\":\"string\",\"values\":[\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\":\"UACE10\",\"count\":1,\"type\":\"string\",\"values\":[\"78904\"]},{\"attribute\":\"UATYP10\",\"count\":1,\"type\":\"string\",\"values\":[\"U\"]},{\"attribute\":\"UR10\",\"count\":1,\"type\":\"string\",\"values\":[\"U\"]},{\"attribute\":\"population\",\"count\":74,\"type\":\"mixed\",\"values\":[\"\",1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\":1,\"max\":1118}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"tabblock_06001420\",\"description\":\"population\",\"minzoom\":4,\"maxzoom\":12,\"fields\":{\"ALAND10\":\"Land area\",\"AWATER10\":\"Number\",\"BLOCKCE10\":\"String\",\"COUNTYFP10\":\"String\",\"FUNCSTAT10\":\"String\",\"INTPTLAT10\":\"String\",\"INTPTLON10\":\"String\",\"MTFCC10\":\"String\",\"NAME10\":\"String\",\"STATEFP10\":\"String\",\"TRACTCE10\":\"String\",\"UACE10\":\"String\",\"UATYP10\":\"String\",\"UR10\":\"String\",\"population\":\"Mixed\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"tabblock_06001420\",\"count\":1007,\"geometry\":\"Polygon\",\"attributeCount\":15,\"attributes\":[{\"attribute\":\"ALAND10\",\"count\":162,\"type\":\"number\",\"values\":[10019,10125,10320,10339,10769,10776,10975,11206,11297,11306,11372,11825,11928,11997,1201,12044,12062,12213,12579,12945,13013,13106,13452,13985,14000,14042,14044,14053,14087,14101,14158,14169,14185,14193,14219,14237,14270,14291,14449,14452,14523,14541,14557,1457,14593,14639,14791,14799,14980,15100,15240,15260,15494,15574,15665,15730,15921,15930,15974,16117,16120,16165,16183,16238,16246,16253,16332,16353,16431,16453,16535,16537,16605,16635,16691,16994,17210,17230,17265,17308,17581,17622,17780,17893,18064,18095,18377,18586,18637,1878,18897,19453,19544,19676,19773,19818,19896,20277,20386,20486],\"min\":280,\"max\":412555},{\"attribute\":\"AWATER10\",\"count\":1,\"type\":\"number\",\"values\":[0],\"min\":0,\"max\":0},{\"attribute\":\"BLOCKCE10\",\"count\":72,\"type\":\"string\",\"values\":[\"1000\",\"1001\",\"1002\",\"1003\",\"1004\",\"1005\",\"1006\",\"1007\",\"1008\",\"1009\",\"1010\",\"1011\",\"1012\",\"1013\",\"1014\",\"1015\",\"1016\",\"1017\",\"1018\",\"1019\",\"1020\",\"1021\",\"1022\",\"1023\",\"1024\",\"1026\",\"1029\",\"1030\",\"1031\",\"2000\",\"2001\",\"2002\",\"2003\",\"2004\",\"2005\",\"2006\",\"2007\",\"2008\",\"2009\",\"2010\",\"2011\",\"2012\",\"2013\",\"2014\",\"2015\",\"3000\",\"3001\",\"3002\",\"3003\",\"3004\",\"3005\",\"3006\",\"3007\",\"3008\",\"3009\",\"3010\",\"3012\",\"3013\",\"3014\",\"3015\",\"3016\",\"3017\",\"3018\",\"3019\",\"3020\",\"3021\",\"3023\",\"3024\",\"3026\",\"3027\",\"3028\",\"3031\"]},{\"attribute\":\"COUNTYFP10\",\"count\":1,\"type\":\"string\",\"values\":[\"001\"]},{\"attribute\":\"FUNCSTAT10\",\"count\":1,\"type\":\"string\",\"values\":[\"S\"]},{\"attribute\":\"INTPTLAT10\",\"count\":161,\"type\":\"string\",\"values\":[\"+37.882724\",\"+37.882857\",\"+37.882965\",\"+37.883224\",\"+37.883323\",\"+37.883462\",\"+37.883481\",\"+37.883493\",\"+37.883527\",\"+37.883536\",\"+37.883579\",\"+37.883693\",\"+37.883707\",\"+37.883836\",\"+37.883875\",\"+37.883973\",\"+37.884009\",\"+37.884079\",\"+37.884338\",\"+37.884369\",\"+37.884677\",\"+37.884743\",\"+37.884747\",\"+37.884896\",\"+37.884919\",\"+37.885307\",\"+37.885308\",\"+37.885448\",\"+37.885491\",\"+37.885646\",\"+37.885811\",\"+37.885997\",\"+37.886159\",\"+37.886194\",\"+37.886197\",\"+37.886322\",\"+37.886339\",\"+37.886460\",\"+37.886495\",\"+37.886596\",\"+37.886608\",\"+37.886830\",\"+37.887238\",\"+37.887570\",\"+37.887789\",\"+37.887945\",\"+37.888027\",\"+37.888238\",\"+37.888332\",\"+37.888340\",\"+37.888416\",\"+37.888418\",\"+37.888441\",\"+37.888458\",\"+37.888540\",\"+37.888616\",\"+37.888634\",\"+37.888734\",\"+37.888782\",\"+37.888848\",\"+37.888859\",\"+37.888863\",\"+37.888908\",\"+37.888930\",\"+37.888934\",\"+37.889007\",\"+37.889049\",\"+37.889126\",\"+37.889177\",\"+37.889251\",\"+37.889326\",\"+37.889411\",\"+37.889518\",\"+37.889545\",\"+37.889669\",\"+37.889828\",\"+37.889955\",\"+37.890058\",\"+37.890110\",\"+37.890166\",\"+37.890172\",\"+37.890209\",\"+37.890214\",\"+37.890278\",\"+37.890696\",\"+37.890858\",\"+37.891028\",\"+37.891101\",\"+37.891200\",\"+37.891205\",\"+37.891320\",\"+37.891425\",\"+37.891538\",\"+37.891658\",\"+37.891713\",\"+37.891785\",\"+37.891804\",\"+37.891809\",\"+37.891823\",\"+37.891824\"]},{\"attribute\":\"INTPTLON10\",\"count\":162,\"type\":\"string\",\"values\":[\"-122.282371\",\"-122.282689\",\"-122.283067\",\"-122.283424\",\"-122.283651\",\"-122.283723\",\"-122.283797\",\"-122.284471\",\"-122.284571\",\"-122.284831\",\"-122.285020\",\"-122.285175\",\"-122.285609\",\"-122.285901\",\"-122.285971\",\"-122.286349\",\"-122.286366\",\"-122.286636\",\"-122.286865\",\"-122.286913\",\"-122.287097\",\"-122.287125\",\"-122.287205\",\"-122.287275\",\"-122.287323\",\"-122.287379\",\"-122.287583\",\"-122.287634\",\"-122.287747\",\"-122.287757\",\"-122.287836\",\"-122.287926\",\"-122.287969\",\"-122.288382\",\"-122.288602\",\"-122.288628\",\"-122.288696\",\"-122.288764\",\"-122.288787\",\"-122.288910\",\"-122.289020\",\"-122.289219\",\"-122.289472\",\"-122.289530\",\"-122.289570\",\"-122.289663\",\"-122.289764\",\"-122.289959\",\"-122.290117\",\"-122.290340\",\"-122.290441\",\"-122.290522\",\"-122.290615\",\"-122.290964\",\"-122.290980\",\"-122.291137\",\"-122.291217\",\"-122.291391\",\"-122.291474\",\"-122.291817\",\"-122.291926\",\"-122.292014\",\"-122.292153\",\"-122.292309\",\"-122.292394\",\"-122.292674\",\"-122.292756\",\"-122.292777\",\"-122.292811\",\"-122.292824\",\"-122.292906\",\"-122.293296\",\"-122.293364\",\"-122.293455\",\"-122.293477\",\"-122.293508\",\"-122.293592\",\"-122.293633\",\"-122.294157\",\"-122.294213\",\"-122.294338\",\"-122.294418\",\"-122.294456\",\"-122.294503\",\"-122.294972\",\"-122.295039\",\"-122.295184\",\"-122.295286\",\"-122.295319\",\"-122.295359\",\"-122.295566\",\"-122.295888\",\"-122.296030\",\"-122.296083\",\"-122.296144\",\"-122.296175\",\"-122.296220\",\"-122.296405\",\"-122.296474\",\"-122.296730\"]},{\"attribute\":\"MTFCC10\",\"count\":1,\"type\":\"string\",\"values\":[\"G5040\"]},{\"attribute\":\"NAME10\",\"count\":72,\"type\":\"string\",\"values\":[\"Block 1000\",\"Block 1001\",\"Block 1002\",\"Block 1003\",\"Block 1004\",\"Block 1005\",\"Block 1006\",\"Block 1007\",\"Block 1008\",\"Block 1009\",\"Block 1010\",\"Block 1011\",\"Block 1012\",\"Block 1013\",\"Block 1014\",\"Block 1015\",\"Block 1016\",\"Block 1017\",\"Block 1018\",\"Block 1019\",\"Block 1020\",\"Block 1021\",\"Block 1022\",\"Block 1023\",\"Block 1024\",\"Block 1026\",\"Block 1029\",\"Block 1030\",\"Block 1031\",\"Block 2000\",\"Block 2001\",\"Block 2002\",\"Block 2003\",\"Block 2004\",\"Block 2005\",\"Block 2006\",\"Block 2007\",\"Block 2008\",\"Block 2009\",\"Block 2010\",\"Block 2011\",\"Block 2012\",\"Block 2013\",\"Block 2014\",\"Block 2015\",\"Block 3000\",\"Block 3001\",\"Block 3002\",\"Block 3003\",\"Block 3004\",\"Block 3005\",\"Block 3006\",\"Block 3007\",\"Block 3008\",\"Block 3009\",\"Block 3010\",\"Block 3012\",\"Block 3013\",\"Block 3014\",\"Block 3015\",\"Block 3016\",\"Block 3017\",\"Block 3018\",\"Block 3019\",\"Block 3020\",\"Block 3021\",\"Block 3023\",\"Block 3024\",\"Block 3026\",\"Block 3027\",\"Block 3028\",\"Block 3031\"]},{\"attribute\":\"STATEFP10\",\"count\":1,\"type\":\"string\",\"values\":[\"06\"]},{\"attribute\":\"TRACTCE10\",\"count\":6,\"type\":\"string\",\"values\":[\"420100\",\"420200\",\"420300\",\"420400\",\"420500\",\"420600\"]},{\"attribute\":\"UACE10\",\"count\":1,\"type\":\"string\",\"values\":[\"78904\"]},{\"attribute\":\"UATYP10\",\"count\":1,\"type\":\"string\",\"values\":[\"U\"]},{\"attribute\":\"UR10\",\"count\":1,\"type\":\"string\",\"values\":[\"U\"]},{\"attribute\":\"population\",\"count\":74,\"type\":\"mixed\",\"values\":[\"\",1,10,11,1118,113,116,12,13,133,145,15,16,17,18,19,2,21,212,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,4,40,41,414,42,43,44,45,46,47,49,50,51,53,54,55,56,57,58,60,62,63,64,65,66,68,69,7,70,73,82,83,84,86,87,9,90,91,98],\"min\":1,\"max\":1118}]}]}}", "maxzoom": "12", "minzoom": "0", "name": "tests/join-population/tabblock_06001420.mbtiles", @@ -15,7 +15,9 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -27,10 +29,14 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1017", "population": 22, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10769, "AWATER10": 0, "INTPTLAT10": "+37.892188", "INTPTLON10": "-122.293477" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.894363 ], [ -122.291565, 37.890028 ], [ -122.297058, 37.890028 ], [ -122.297058, 37.894363 ], [ -122.291565, 37.894363 ] ] ] } } @@ -51,7 +57,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -61,7 +67,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -75,11 +81,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -167,12 +173,16 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1003", "population": 24, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16635, "AWATER10": 0, "INTPTLAT10": "+37.893128", "INTPTLON10": "-122.300432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.894363 ], [ -122.299805, 37.892196 ], [ -122.300491, 37.892196 ], [ -122.301178, 37.893821 ], [ -122.300491, 37.894363 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3021", "population": 23, "NAME10": "Block 3021", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11997, "AWATER10": 0, "INTPTLAT10": "+37.890278", "INTPTLON10": "-122.303039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.890028 ], [ -122.302551, 37.888944 ], [ -122.303925, 37.888944 ], [ -122.303925, 37.890028 ], [ -122.302551, 37.890028 ] ] ] } } @@ -187,9 +197,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , @@ -209,9 +219,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -221,16 +229,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -397,6 +407,8 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -435,7 +447,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -499,9 +511,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -513,18 +523,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -753,7 +765,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -821,9 +833,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -835,18 +845,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1075,7 +1087,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1145,9 +1157,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1159,18 +1169,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1403,7 +1415,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1465,17 +1477,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -1487,18 +1497,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -1731,7 +1743,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895244 ], [ -122.300470, 37.895074 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299268, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.894515 ], [ -122.302895, 37.893804 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303174, 37.893364 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303088, 37.894515 ] ] ] } } , @@ -1793,17 +1805,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306778, 37.885574 ], [ -122.304482, 37.885320 ], [ -122.303946, 37.883576 ], [ -122.303431, 37.883677 ], [ -122.303410, 37.882881 ], [ -122.302938, 37.883000 ], [ -122.302594, 37.883051 ], [ -122.302423, 37.882746 ], [ -122.302358, 37.882492 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302938, 37.882407 ], [ -122.303131, 37.882306 ], [ -122.303324, 37.882272 ], [ -122.304375, 37.882272 ], [ -122.305233, 37.882204 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306306, 37.883847 ], [ -122.306778, 37.885574 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.301843, 37.883152 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.302186, 37.883119 ], [ -122.301993, 37.883119 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301843, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301993, 37.883119 ], [ -122.302186, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299268, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299268, 37.897038 ], [ -122.298753, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299268, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895921 ], [ -122.297080, 37.895752 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , @@ -1815,18 +1825,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299955, 37.893449 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298753, 37.895413 ], [ -122.299268, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895752 ], [ -122.296565, 37.894109 ], [ -122.296672, 37.894109 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297080, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298753, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298753, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298753, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299955, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893449 ], [ -122.299590, 37.892314 ], [ -122.299697, 37.892280 ], [ -122.299998, 37.893195 ], [ -122.300062, 37.893432 ], [ -122.299955, 37.893449 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892179 ], [ -122.298238, 37.893804 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296565, 37.894109 ], [ -122.297080, 37.895752 ], [ -122.296264, 37.895921 ] ] ] } } @@ -1965,9 +1977,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2003", "population": 58, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24754, "AWATER10": 0, "INTPTLAT10": "+37.885811", "INTPTLON10": "-122.294338" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294376, 37.887318 ], [ -122.293453, 37.884507 ], [ -122.293475, 37.884490 ], [ -122.294312, 37.884321 ], [ -122.295213, 37.887149 ], [ -122.294376, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292960, 37.883017 ], [ -122.293131, 37.882983 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "population": 33, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292938, 37.883017 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292960, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "population": 40, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292938, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "population": 30, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291758, 37.884846 ], [ -122.291243, 37.883237 ], [ -122.291801, 37.883135 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291758, 37.884846 ] ] ] } } , @@ -1993,7 +2005,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "population": 28, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892856 ], [ -122.287424, 37.892805 ], [ -122.287509, 37.890875 ], [ -122.288775, 37.890807 ], [ -122.288711, 37.891078 ], [ -122.288475, 37.891332 ], [ -122.288411, 37.891467 ], [ -122.288325, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "population": 54, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288110, 37.888775 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "population": 13, "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890892 ], [ -122.286158, 37.889401 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889063 ], [ -122.287703, 37.890875 ], [ -122.287509, 37.890875 ], [ -122.287509, 37.890841 ], [ -122.286651, 37.890892 ] ] ] } } , diff --git a/tests/join-population/joined-no-tile-stats.mbtiles.json b/tests/join-population/joined-no-tile-stats.mbtiles.json index 1dc1676e7..890e66402 100644 --- a/tests/join-population/joined-no-tile-stats.mbtiles.json +++ b/tests/join-population/joined-no-tile-stats.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/joined-null.mbtiles.json b/tests/join-population/joined-null.mbtiles.json index a8f53d42d..520f1bc99 100644 --- a/tests/join-population/joined-null.mbtiles.json +++ b/tests/join-population/joined-null.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/joined-tile-stats-attributes-limit.mbtiles.json b/tests/join-population/joined-tile-stats-attributes-limit.mbtiles.json index 27575db13..4ca1b1cd3 100644 --- a/tests/join-population/joined-tile-stats-attributes-limit.mbtiles.json +++ b/tests/join-population/joined-tile-stats-attributes-limit.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/joined-tile-stats-sample-values-limit.mbtiles.json b/tests/join-population/joined-tile-stats-sample-values-limit.mbtiles.json index 45a7ec761..8ba101fec 100644 --- a/tests/join-population/joined-tile-stats-sample-values-limit.mbtiles.json +++ b/tests/join-population/joined-tile-stats-sample-values-limit.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/joined-tile-stats-values-limit.mbtiles.json b/tests/join-population/joined-tile-stats-values-limit.mbtiles.json index 27c7ae75d..1c8ad0041 100644 --- a/tests/join-population/joined-tile-stats-values-limit.mbtiles.json +++ b/tests/join-population/joined-tile-stats-values-limit.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/joined.mbtiles.json b/tests/join-population/joined.mbtiles.json index f73db5d64..4c005f664 100644 --- a/tests/join-population/joined.mbtiles.json +++ b/tests/join-population/joined.mbtiles.json @@ -15,13 +15,13 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "population": 16, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -35,7 +35,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -45,11 +45,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "population": 87, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "population": 33, "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -83,7 +83,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "population": 1118, "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "population": 34, "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -101,7 +101,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "population": 87, "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "population": 86, "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -117,11 +117,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "population": 49, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "population": 28, "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -225,7 +225,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "population": 42, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "population": 41, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -241,23 +241,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "population": 33, "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "population": 29, "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "population": 50, "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "population": 35, "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "population": 33, "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "population": 38, "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "population": 37, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -273,14 +273,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "population": 33, "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "population": 116, "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "population": 133, "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "population": 90, "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "population": 33, "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "population": 43, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "population": 212, "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -299,9 +299,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "population": 113, "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -315,16 +313,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -417,10 +417,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "population": 83, "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "population": 98, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "population": 63, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "population": 91, "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -501,10 +501,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "population": 64, "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "population": 73, "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -573,7 +573,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -669,9 +669,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -687,18 +685,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -995,7 +995,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1103,9 +1103,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1121,20 +1119,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1341,7 +1341,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1395,10 +1395,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "population": 34, "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "population": 1, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "population": 36, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "population": 19, "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1479,7 +1479,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1597,9 +1597,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1615,20 +1613,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1851,7 +1851,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1887,7 +1887,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2003,7 +2003,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "population": 11, "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2113,17 +2113,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "population": 145, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "population": 44, "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "population": 414, "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "population": 68, "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "population": 56, "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "population": 62, "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "population": 47, "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "population": 29, "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2139,20 +2137,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "population": 57, "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "population": 32, "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "population": 31, "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "population": 32, "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "population": 46, "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "population": 10, "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "population": 12, "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "population": 46, "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "population": 41, "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "population": 33, "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2375,7 +2375,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "population": 33, "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "population": 15, "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2411,7 +2411,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , diff --git a/tests/join-population/just-macarthur.mbtiles.json b/tests/join-population/just-macarthur.mbtiles.json index ea5a2f269..7753b88a1 100644 --- a/tests/join-population/just-macarthur.mbtiles.json +++ b/tests/join-population/just-macarthur.mbtiles.json @@ -170,7 +170,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -264,7 +264,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , diff --git a/tests/join-population/macarthur-6-9-exclude.mbtiles.json b/tests/join-population/macarthur-6-9-exclude.mbtiles.json index baaf2447e..0d12cbb5c 100644 --- a/tests/join-population/macarthur-6-9-exclude.mbtiles.json +++ b/tests/join-population/macarthur-6-9-exclude.mbtiles.json @@ -140,7 +140,7 @@ , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , diff --git a/tests/join-population/macarthur-6-9.mbtiles.json b/tests/join-population/macarthur-6-9.mbtiles.json index 5f4031f34..7f4cdab08 100644 --- a/tests/join-population/macarthur-6-9.mbtiles.json +++ b/tests/join-population/macarthur-6-9.mbtiles.json @@ -140,7 +140,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , diff --git a/tests/join-population/merged-folder.mbtiles.json b/tests/join-population/merged-folder.mbtiles.json index 9dd4e3a78..aa6152db6 100644 --- a/tests/join-population/merged-folder.mbtiles.json +++ b/tests/join-population/merged-folder.mbtiles.json @@ -21,13 +21,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -63,7 +63,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -73,11 +73,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -143,7 +143,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -161,7 +161,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -177,11 +177,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -313,7 +313,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -329,23 +329,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -361,14 +361,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -387,9 +387,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -403,16 +401,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -505,10 +505,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -589,10 +589,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -705,7 +705,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -801,9 +801,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -819,18 +817,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -1121,7 +1121,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -1221,7 +1221,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1329,9 +1329,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1347,20 +1345,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1567,7 +1567,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1621,10 +1621,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1697,7 +1697,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , @@ -1797,7 +1797,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1915,9 +1915,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1933,20 +1931,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -2169,7 +2169,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -2205,7 +2205,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2367,7 +2367,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2477,17 +2477,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2503,20 +2501,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2739,7 +2739,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2775,7 +2775,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , @@ -2907,7 +2907,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895244 ], [ -122.300470, 37.895074 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299268, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.894515 ], [ -122.302895, 37.893804 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303174, 37.893364 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303088, 37.894515 ] ] ] } } , @@ -3017,17 +3017,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306778, 37.885574 ], [ -122.304482, 37.885320 ], [ -122.303946, 37.883576 ], [ -122.303431, 37.883677 ], [ -122.303410, 37.882881 ], [ -122.302938, 37.883000 ], [ -122.302594, 37.883051 ], [ -122.302423, 37.882746 ], [ -122.302358, 37.882492 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302938, 37.882407 ], [ -122.303131, 37.882306 ], [ -122.303324, 37.882272 ], [ -122.304375, 37.882272 ], [ -122.305233, 37.882204 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306306, 37.883847 ], [ -122.306778, 37.885574 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.301843, 37.883152 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.302186, 37.883119 ], [ -122.301993, 37.883119 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301843, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301993, 37.883119 ], [ -122.302186, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299268, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299268, 37.897038 ], [ -122.298753, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299268, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895921 ], [ -122.297080, 37.895752 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , @@ -3043,20 +3041,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299955, 37.893449 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298753, 37.895413 ], [ -122.299268, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895752 ], [ -122.296565, 37.894109 ], [ -122.296672, 37.894109 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297080, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298753, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298753, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298753, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299955, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893449 ], [ -122.299590, 37.892314 ], [ -122.299697, 37.892280 ], [ -122.299998, 37.893195 ], [ -122.300062, 37.893432 ], [ -122.299955, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299697, 37.892280 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892179 ], [ -122.298238, 37.893804 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296565, 37.894109 ], [ -122.297080, 37.895752 ], [ -122.296264, 37.895921 ] ] ] } } @@ -3265,9 +3265,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292445, 37.887708 ], [ -122.292209, 37.886878 ], [ -122.291737, 37.885439 ], [ -122.291522, 37.884897 ], [ -122.291565, 37.884880 ], [ -122.291758, 37.884846 ], [ -122.292681, 37.887657 ], [ -122.292445, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292960, 37.883017 ], [ -122.293131, 37.882983 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292938, 37.883017 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292960, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292938, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291758, 37.884846 ], [ -122.291243, 37.883237 ], [ -122.291801, 37.883135 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291758, 37.884846 ] ] ] } } , @@ -3279,7 +3279,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288282, 37.888555 ], [ -122.289312, 37.885964 ], [ -122.290041, 37.888199 ], [ -122.288282, 37.888555 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289398, 37.885760 ], [ -122.289312, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289634, 37.885100 ], [ -122.289312, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292101, 37.887776 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884897 ], [ -122.291737, 37.885439 ], [ -122.292209, 37.886878 ], [ -122.292445, 37.887708 ], [ -122.292101, 37.887776 ] ] ] } } , @@ -3303,7 +3303,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892856 ], [ -122.287424, 37.892805 ], [ -122.287509, 37.890875 ], [ -122.288775, 37.890807 ], [ -122.288711, 37.891078 ], [ -122.288475, 37.891332 ], [ -122.288411, 37.891467 ], [ -122.288325, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288110, 37.888775 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890892 ], [ -122.286158, 37.889401 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889063 ], [ -122.287703, 37.890875 ], [ -122.287509, 37.890875 ], [ -122.287509, 37.890841 ], [ -122.286651, 37.890892 ] ] ] } } , @@ -3315,7 +3315,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288282, 37.888555 ], [ -122.289076, 37.888385 ], [ -122.289097, 37.888453 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288153, 37.888876 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288110, 37.888775 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889401 ], [ -122.286115, 37.889351 ], [ -122.286415, 37.889266 ], [ -122.287080, 37.888995 ], [ -122.287102, 37.889063 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889401 ] ] ] } } , diff --git a/tests/join-population/merged.mbtiles.json b/tests/join-population/merged.mbtiles.json index 72323e150..35d443e61 100644 --- a/tests/join-population/merged.mbtiles.json +++ b/tests/join-population/merged.mbtiles.json @@ -21,13 +21,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -63,7 +63,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -73,11 +73,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -143,7 +143,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -161,7 +161,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -177,11 +177,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -313,7 +313,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -329,23 +329,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -361,14 +361,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -387,9 +387,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -403,16 +401,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -505,10 +505,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -589,10 +589,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -705,7 +705,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -801,9 +801,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -819,18 +817,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -1121,7 +1121,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -1221,7 +1221,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1329,9 +1329,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1347,20 +1345,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1567,7 +1567,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1621,10 +1621,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1697,7 +1697,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , @@ -1797,7 +1797,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1915,9 +1915,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1933,20 +1931,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -2169,7 +2169,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -2205,7 +2205,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2367,7 +2367,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2477,17 +2477,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2503,20 +2501,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2739,7 +2739,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2775,7 +2775,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , @@ -2907,7 +2907,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895244 ], [ -122.300470, 37.895074 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299268, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.894515 ], [ -122.302895, 37.893804 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303174, 37.893364 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303088, 37.894515 ] ] ] } } , @@ -3017,17 +3017,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306778, 37.885574 ], [ -122.304482, 37.885320 ], [ -122.303946, 37.883576 ], [ -122.303431, 37.883677 ], [ -122.303410, 37.882881 ], [ -122.302938, 37.883000 ], [ -122.302594, 37.883051 ], [ -122.302423, 37.882746 ], [ -122.302358, 37.882492 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302938, 37.882407 ], [ -122.303131, 37.882306 ], [ -122.303324, 37.882272 ], [ -122.304375, 37.882272 ], [ -122.305233, 37.882204 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306306, 37.883847 ], [ -122.306778, 37.885574 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.301843, 37.883152 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.302186, 37.883119 ], [ -122.301993, 37.883119 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301843, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301993, 37.883119 ], [ -122.302186, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299268, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299268, 37.897038 ], [ -122.298753, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299268, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895921 ], [ -122.297080, 37.895752 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , @@ -3043,20 +3041,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299955, 37.893449 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298753, 37.895413 ], [ -122.299268, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895752 ], [ -122.296565, 37.894109 ], [ -122.296672, 37.894109 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297080, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298753, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298753, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298753, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299955, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893449 ], [ -122.299590, 37.892314 ], [ -122.299697, 37.892280 ], [ -122.299998, 37.893195 ], [ -122.300062, 37.893432 ], [ -122.299955, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299697, 37.892280 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892179 ], [ -122.298238, 37.893804 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296565, 37.894109 ], [ -122.297080, 37.895752 ], [ -122.296264, 37.895921 ] ] ] } } @@ -3265,9 +3265,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292445, 37.887708 ], [ -122.292209, 37.886878 ], [ -122.291737, 37.885439 ], [ -122.291522, 37.884897 ], [ -122.291565, 37.884880 ], [ -122.291758, 37.884846 ], [ -122.292681, 37.887657 ], [ -122.292445, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292960, 37.883017 ], [ -122.293131, 37.882983 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292938, 37.883017 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292960, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292938, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291758, 37.884846 ], [ -122.291243, 37.883237 ], [ -122.291801, 37.883135 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291758, 37.884846 ] ] ] } } , @@ -3279,7 +3279,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288282, 37.888555 ], [ -122.289312, 37.885964 ], [ -122.290041, 37.888199 ], [ -122.288282, 37.888555 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289398, 37.885760 ], [ -122.289312, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289634, 37.885100 ], [ -122.289312, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292101, 37.887776 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884897 ], [ -122.291737, 37.885439 ], [ -122.292209, 37.886878 ], [ -122.292445, 37.887708 ], [ -122.292101, 37.887776 ] ] ] } } , @@ -3303,7 +3303,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892856 ], [ -122.287424, 37.892805 ], [ -122.287509, 37.890875 ], [ -122.288775, 37.890807 ], [ -122.288711, 37.891078 ], [ -122.288475, 37.891332 ], [ -122.288411, 37.891467 ], [ -122.288325, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288110, 37.888775 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890892 ], [ -122.286158, 37.889401 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889063 ], [ -122.287703, 37.890875 ], [ -122.287509, 37.890875 ], [ -122.287509, 37.890841 ], [ -122.286651, 37.890892 ] ] ] } } , @@ -3315,7 +3315,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288282, 37.888555 ], [ -122.289076, 37.888385 ], [ -122.289097, 37.888453 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288153, 37.888876 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288110, 37.888775 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889401 ], [ -122.286115, 37.889351 ], [ -122.286415, 37.889266 ], [ -122.287080, 37.888995 ], [ -122.287102, 37.889063 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889401 ] ] ] } } , diff --git a/tests/join-population/no-macarthur.mbtiles.json b/tests/join-population/no-macarthur.mbtiles.json index ec5495b26..fdb1acf16 100644 --- a/tests/join-population/no-macarthur.mbtiles.json +++ b/tests/join-population/no-macarthur.mbtiles.json @@ -21,13 +21,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -41,7 +41,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -51,11 +51,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -89,7 +89,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -107,7 +107,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -123,11 +123,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -231,7 +231,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -247,23 +247,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -279,14 +279,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -305,9 +305,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -321,16 +319,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -423,10 +423,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -507,10 +507,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -579,7 +579,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -675,9 +675,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -693,18 +691,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -1001,7 +1001,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1109,9 +1109,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1127,20 +1125,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1347,7 +1347,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1401,10 +1401,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1485,7 +1485,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1603,9 +1603,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1621,20 +1619,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -1857,7 +1857,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -1893,7 +1893,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2009,7 +2009,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2119,17 +2119,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2145,20 +2143,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2381,7 +2381,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2417,7 +2417,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , @@ -2533,7 +2533,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895244 ], [ -122.300470, 37.895074 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299268, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.894515 ], [ -122.302895, 37.893804 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303174, 37.893364 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303088, 37.894515 ] ] ] } } , @@ -2643,17 +2643,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306778, 37.885574 ], [ -122.304482, 37.885320 ], [ -122.303946, 37.883576 ], [ -122.303431, 37.883677 ], [ -122.303410, 37.882881 ], [ -122.302938, 37.883000 ], [ -122.302594, 37.883051 ], [ -122.302423, 37.882746 ], [ -122.302358, 37.882492 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302938, 37.882407 ], [ -122.303131, 37.882306 ], [ -122.303324, 37.882272 ], [ -122.304375, 37.882272 ], [ -122.305233, 37.882204 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306306, 37.883847 ], [ -122.306778, 37.885574 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.301843, 37.883152 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.302186, 37.883119 ], [ -122.301993, 37.883119 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301843, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301993, 37.883119 ], [ -122.302186, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299268, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299268, 37.897038 ], [ -122.298753, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299268, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895921 ], [ -122.297080, 37.895752 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , @@ -2669,20 +2667,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299955, 37.893449 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298753, 37.895413 ], [ -122.299268, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895752 ], [ -122.296565, 37.894109 ], [ -122.296672, 37.894109 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297080, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298753, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298753, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298753, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299955, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893449 ], [ -122.299590, 37.892314 ], [ -122.299697, 37.892280 ], [ -122.299998, 37.893195 ], [ -122.300062, 37.893432 ], [ -122.299955, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299697, 37.892280 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892179 ], [ -122.298238, 37.893804 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296565, 37.894109 ], [ -122.297080, 37.895752 ], [ -122.296264, 37.895921 ] ] ] } } @@ -2891,9 +2891,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292445, 37.887708 ], [ -122.292209, 37.886878 ], [ -122.291737, 37.885439 ], [ -122.291522, 37.884897 ], [ -122.291565, 37.884880 ], [ -122.291758, 37.884846 ], [ -122.292681, 37.887657 ], [ -122.292445, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292960, 37.883017 ], [ -122.293131, 37.882983 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292938, 37.883017 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292960, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292938, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291758, 37.884846 ], [ -122.291243, 37.883237 ], [ -122.291801, 37.883135 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291758, 37.884846 ] ] ] } } , @@ -2905,7 +2905,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288282, 37.888555 ], [ -122.289312, 37.885964 ], [ -122.290041, 37.888199 ], [ -122.288282, 37.888555 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289398, 37.885760 ], [ -122.289312, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289634, 37.885100 ], [ -122.289312, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292101, 37.887776 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884897 ], [ -122.291737, 37.885439 ], [ -122.292209, 37.886878 ], [ -122.292445, 37.887708 ], [ -122.292101, 37.887776 ] ] ] } } , @@ -2929,7 +2929,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892856 ], [ -122.287424, 37.892805 ], [ -122.287509, 37.890875 ], [ -122.288775, 37.890807 ], [ -122.288711, 37.891078 ], [ -122.288475, 37.891332 ], [ -122.288411, 37.891467 ], [ -122.288325, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288110, 37.888775 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890892 ], [ -122.286158, 37.889401 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889063 ], [ -122.287703, 37.890875 ], [ -122.287509, 37.890875 ], [ -122.287509, 37.890841 ], [ -122.286651, 37.890892 ] ] ] } } , @@ -2941,7 +2941,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288282, 37.888555 ], [ -122.289076, 37.888385 ], [ -122.289097, 37.888453 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288153, 37.888876 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288110, 37.888775 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889401 ], [ -122.286115, 37.889351 ], [ -122.286415, 37.889266 ], [ -122.287080, 37.888995 ], [ -122.287102, 37.889063 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889401 ] ] ] } } , diff --git a/tests/join-population/raw-merged-folder.json b/tests/join-population/raw-merged-folder.json index 63058e232..b52a2206a 100644 --- a/tests/join-population/raw-merged-folder.json +++ b/tests/join-population/raw-merged-folder.json @@ -21,13 +21,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6, "compressed": false }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tabblock_06001420", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.900865 ], [ -122.299805, 37.892196 ], [ -122.310791, 37.892196 ], [ -122.310791, 37.900865 ], [ -122.299805, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.887860 ], [ -122.310791, 37.883525 ], [ -122.327271, 37.879189 ], [ -122.332764, 37.887860 ], [ -122.316284, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3008", "GEOID10": "060014203003008", "NAME10": "Block 3008", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1111196, "INTPTLAT10": "+37.892891", "INTPTLON10": "-122.320295" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.310791, 37.896530 ], [ -122.310791, 37.892196 ], [ -122.332764, 37.887860 ], [ -122.310791, 37.896530 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.883525 ], [ -122.310791, 37.883525 ], [ -122.310791, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "2004", "GEOID10": "060014201002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11206, "AWATER10": 0, "INTPTLAT10": "+37.897263", "INTPTLON10": "-122.288602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283325, 37.900865 ], [ -122.283325, 37.892196 ], [ -122.294312, 37.892196 ], [ -122.294312, 37.900865 ], [ -122.283325, 37.900865 ] ] ] } } , @@ -63,7 +63,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.898698 ], [ -122.305298, 37.890028 ], [ -122.308044, 37.898698 ], [ -122.302551, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.892196 ], [ -122.302551, 37.892196 ], [ -122.302551, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.900865 ], [ -122.297058, 37.896530 ], [ -122.302551, 37.896530 ], [ -122.302551, 37.900865 ], [ -122.297058, 37.900865 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1012", "GEOID10": "060014204001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "R", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 1632801, "INTPTLAT10": "+37.884202", "INTPTLON10": "-122.323753" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.316284, 37.890028 ], [ -122.313538, 37.881357 ], [ -122.327271, 37.877021 ], [ -122.335510, 37.890028 ], [ -122.316284, 37.890028 ] ] ] } } , @@ -73,11 +73,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305298, 37.890028 ], [ -122.305298, 37.885693 ], [ -122.310791, 37.885693 ], [ -122.310791, 37.890028 ], [ -122.305298, 37.890028 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.887860 ], [ -122.294312, 37.883525 ], [ -122.299805, 37.883525 ], [ -122.299805, 37.887860 ], [ -122.294312, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.892196 ], [ -122.299805, 37.887860 ], [ -122.305298, 37.887860 ], [ -122.305298, 37.892196 ], [ -122.299805, 37.892196 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.885693 ], [ -122.299805, 37.881357 ], [ -122.305298, 37.881357 ], [ -122.305298, 37.885693 ], [ -122.299805, 37.885693 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1006", "GEOID10": "060014201001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14453, "AWATER10": 0, "INTPTLAT10": "+37.898332", "INTPTLON10": "-122.295280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.900865 ], [ -122.291565, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.900865 ], [ -122.291565, 37.900865 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "1007", "GEOID10": "060014201001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17265, "AWATER10": 0, "INTPTLAT10": "+37.896623", "INTPTLON10": "-122.294972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291565, 37.896530 ], [ -122.291565, 37.892196 ], [ -122.297058, 37.892196 ], [ -122.297058, 37.896530 ], [ -122.291565, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2007", "GEOID10": "060014202002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14053, "AWATER10": 0, "INTPTLAT10": "+37.893393", "INTPTLON10": "-122.295888" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.896530 ], [ -122.294312, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.896530 ], [ -122.294312, 37.896530 ] ] ] } } , @@ -143,7 +143,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "2000", "GEOID10": "060014203002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 412555, "AWATER10": 0, "INTPTLAT10": "+37.894918", "INTPTLON10": "-122.304889" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.898698 ], [ -122.303925, 37.890028 ], [ -122.306671, 37.890028 ], [ -122.309418, 37.897614 ], [ -122.301178, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.899781 ], [ -122.299805, 37.897614 ], [ -122.302551, 37.897614 ], [ -122.302551, 37.899781 ], [ -122.299805, 37.899781 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1007", "GEOID10": "060014203001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16120, "AWATER10": 0, "INTPTLAT10": "+37.892790", "INTPTLON10": "-122.302128" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.894363 ], [ -122.301178, 37.892196 ], [ -122.303925, 37.892196 ], [ -122.303925, 37.894363 ], [ -122.301178, 37.894363 ] ] ] } } , @@ -161,7 +161,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.892196 ], [ -122.301178, 37.890028 ], [ -122.303925, 37.890028 ], [ -122.303925, 37.892196 ], [ -122.301178, 37.892196 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1006", "GEOID10": "060014203001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17308, "AWATER10": 0, "INTPTLAT10": "+37.890858", "INTPTLON10": "-122.301509" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1005", "GEOID10": "060014203001005", "NAME10": "Block 1005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17622, "AWATER10": 0, "INTPTLAT10": "+37.891028", "INTPTLON10": "-122.300665" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893279 ], [ -122.299805, 37.891112 ], [ -122.302551, 37.891112 ], [ -122.302551, 37.893279 ], [ -122.299805, 37.893279 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.886777 ], [ -122.302551, 37.884609 ], [ -122.305298, 37.884609 ], [ -122.305298, 37.886777 ], [ -122.302551, 37.886777 ] ] ] } } , @@ -177,11 +177,11 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.899781 ], [ -122.298431, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.899781 ], [ -122.298431, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.898698 ], [ -122.294312, 37.896530 ], [ -122.297058, 37.896530 ], [ -122.297058, 37.898698 ], [ -122.294312, 37.898698 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1001", "GEOID10": "060014202001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11928, "AWATER10": 0, "INTPTLAT10": "+37.898151", "INTPTLON10": "-122.297410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.899781 ], [ -122.297058, 37.897614 ], [ -122.299805, 37.897614 ], [ -122.299805, 37.899781 ], [ -122.297058, 37.899781 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.896530 ], [ -122.298431, 37.894363 ], [ -122.301178, 37.894363 ], [ -122.301178, 37.896530 ], [ -122.298431, 37.896530 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.895447 ], [ -122.301178, 37.895447 ], [ -122.301178, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.893279 ], [ -122.297058, 37.891112 ], [ -122.299805, 37.891112 ], [ -122.299805, 37.893279 ], [ -122.297058, 37.893279 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.896530 ], [ -122.297058, 37.894363 ], [ -122.299805, 37.894363 ], [ -122.299805, 37.896530 ], [ -122.297058, 37.896530 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2003", "GEOID10": "060014202002003", "NAME10": "Block 2003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14449, "AWATER10": 0, "INTPTLAT10": "+37.895194", "INTPTLON10": "-122.295566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294312, 37.895447 ], [ -122.294312, 37.893279 ], [ -122.297058, 37.893279 ], [ -122.297058, 37.895447 ], [ -122.294312, 37.895447 ] ] ] } } , @@ -313,7 +313,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1000", "GEOID10": "060014203001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16605, "AWATER10": 0, "INTPTLAT10": "+37.895003", "INTPTLON10": "-122.301039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301178, 37.895989 ], [ -122.300491, 37.894363 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.895989 ], [ -122.301178, 37.895989 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1007", "GEOID10": "060014202001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 914, "AWATER10": 0, "INTPTLAT10": "+37.896362", "INTPTLON10": "-122.300941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.897072 ], [ -122.300491, 37.895989 ], [ -122.301865, 37.895989 ], [ -122.301865, 37.897072 ], [ -122.300491, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3003", "GEOID10": "060014202003003", "NAME10": "Block 3003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 2234, "AWATER10": 0, "INTPTLAT10": "+37.894252", "INTPTLON10": "-122.300273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.299118, 37.892737 ], [ -122.300491, 37.892737 ], [ -122.300491, 37.893821 ], [ -122.299118, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1001", "GEOID10": "060014203001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16165, "AWATER10": 0, "INTPTLAT10": "+37.894817", "INTPTLON10": "-122.301882" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.895989 ], [ -122.301178, 37.893821 ], [ -122.301865, 37.893821 ], [ -122.302551, 37.895447 ], [ -122.301865, 37.895989 ] ] ] } } , @@ -329,23 +329,23 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3012", "GEOID10": "060014203003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14539, "AWATER10": 0, "INTPTLAT10": "+37.889402", "INTPTLON10": "-122.308055" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.891112 ], [ -122.307358, 37.889486 ], [ -122.308731, 37.887860 ], [ -122.308044, 37.891112 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3011", "GEOID10": "060014203003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10961, "AWATER10": 0, "INTPTLAT10": "+37.888506", "INTPTLON10": "-122.308680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308044, 37.887860 ], [ -122.308044, 37.886777 ], [ -122.309418, 37.886777 ], [ -122.309418, 37.887860 ], [ -122.308044, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3016", "GEOID10": "060014203003016", "NAME10": "Block 3016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12044, "AWATER10": 0, "INTPTLAT10": "+37.889955", "INTPTLON10": "-122.306745" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.891112 ], [ -122.305984, 37.890028 ], [ -122.307358, 37.890028 ], [ -122.307358, 37.891112 ], [ -122.305984, 37.891112 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3013", "GEOID10": "060014203003013", "NAME10": "Block 3013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 7694, "AWATER10": 0, "INTPTLAT10": "+37.887764", "INTPTLON10": "-122.307126" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3029", "GEOID10": "060014203003029", "NAME10": "Block 3029", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14565, "AWATER10": 0, "INTPTLAT10": "+37.887885", "INTPTLON10": "-122.307846" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3018", "GEOID10": "060014203003018", "NAME10": "Block 3018", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9739, "AWATER10": 0, "INTPTLAT10": "+37.889126", "INTPTLON10": "-122.306649" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.890028 ], [ -122.306671, 37.888944 ], [ -122.308044, 37.888944 ], [ -122.308044, 37.890028 ], [ -122.306671, 37.890028 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3019", "GEOID10": "060014203003019", "NAME10": "Block 3019", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17581, "AWATER10": 0, "INTPTLAT10": "+37.889545", "INTPTLON10": "-122.304605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.890570 ], [ -122.303238, 37.889486 ], [ -122.305984, 37.888944 ], [ -122.305984, 37.889486 ], [ -122.303238, 37.890570 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3014", "GEOID10": "060014203003014", "NAME10": "Block 3014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10339, "AWATER10": 0, "INTPTLAT10": "+37.888418", "INTPTLON10": "-122.306440" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.888402 ], [ -122.306671, 37.887318 ], [ -122.308044, 37.887318 ], [ -122.308044, 37.888402 ], [ -122.306671, 37.888402 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3027", "GEOID10": "060014203003027", "NAME10": "Block 3027", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13106, "AWATER10": 0, "INTPTLAT10": "+37.888238", "INTPTLON10": "-122.305124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.304611, 37.887860 ], [ -122.304611, 37.886777 ], [ -122.305984, 37.886777 ], [ -122.305984, 37.887860 ], [ -122.304611, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1010", "GEOID10": "060014204001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6192, "AWATER10": 0, "INTPTLAT10": "+37.885673", "INTPTLON10": "-122.309189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308731, 37.887860 ], [ -122.308731, 37.886777 ], [ -122.310104, 37.886777 ], [ -122.310104, 37.887860 ], [ -122.308731, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1006", "GEOID10": "060014204001006", "NAME10": "Block 1006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 59431, "AWATER10": 0, "INTPTLAT10": "+37.884942", "INTPTLON10": "-122.308145" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.307358, 37.887318 ], [ -122.308044, 37.881899 ], [ -122.308731, 37.885151 ], [ -122.308731, 37.887318 ], [ -122.307358, 37.887318 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1007", "GEOID10": "060014204001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1737, "AWATER10": 0, "INTPTLAT10": "+37.887163", "INTPTLON10": "-122.307922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3031", "GEOID10": "060014203003031", "NAME10": "Block 3031", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9685, "AWATER10": 0, "INTPTLAT10": "+37.887789", "INTPTLON10": "-122.306195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.305984, 37.887860 ], [ -122.305984, 37.886777 ], [ -122.307358, 37.886777 ], [ -122.307358, 37.887860 ], [ -122.305984, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1009", "GEOID10": "060014203001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 17210, "AWATER10": 0, "INTPTLAT10": "+37.890696", "INTPTLON10": "-122.302349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.891654 ], [ -122.301865, 37.890028 ], [ -122.302551, 37.889486 ], [ -122.303238, 37.891654 ], [ -122.302551, 37.891654 ] ] ] } } , @@ -361,14 +361,14 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3026", "GEOID10": "060014203003026", "NAME10": "Block 3026", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14219, "AWATER10": 0, "INTPTLAT10": "+37.888340", "INTPTLON10": "-122.304261" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.887860 ], [ -122.302551, 37.886777 ], [ -122.303925, 37.886777 ], [ -122.303925, 37.887860 ], [ -122.302551, 37.887860 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1002", "GEOID10": "060014204001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 5453, "AWATER10": 0, "INTPTLAT10": "+37.887412", "INTPTLON10": "-122.304567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306671, 37.887860 ], [ -122.306671, 37.886777 ], [ -122.308044, 37.886777 ], [ -122.308044, 37.887860 ], [ -122.306671, 37.887860 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1016", "GEOID10": "060014204001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8910, "AWATER10": 0, "INTPTLAT10": "+37.884743", "INTPTLON10": "-122.304095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303925, 37.886235 ], [ -122.303925, 37.885151 ], [ -122.305298, 37.885151 ], [ -122.305298, 37.886235 ], [ -122.303925, 37.886235 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1013", "GEOID10": "060014204001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 9671, "AWATER10": 0, "INTPTLAT10": "+37.884896", "INTPTLON10": "-122.303418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1017", "GEOID10": "060014204001017", "NAME10": "Block 1017", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6144, "AWATER10": 0, "INTPTLAT10": "+37.884747", "INTPTLON10": "-122.303748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.886235 ], [ -122.303238, 37.885151 ], [ -122.304611, 37.885151 ], [ -122.304611, 37.886235 ], [ -122.303238, 37.886235 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "3023", "GEOID10": "060014203003023", "NAME10": "Block 3023", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16332, "AWATER10": 0, "INTPTLAT10": "+37.888540", "INTPTLON10": "-122.302547" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.302551, 37.889486 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.887318 ], [ -122.303238, 37.889486 ], [ -122.302551, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1000", "GEOID10": "060014204001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11282, "AWATER10": 0, "INTPTLAT10": "+37.887379", "INTPTLON10": "-122.298870" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.887318 ], [ -122.297058, 37.886235 ], [ -122.298431, 37.886235 ], [ -122.298431, 37.887318 ], [ -122.297058, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1010", "GEOID10": "060014203001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20386, "AWATER10": 0, "INTPTLAT10": "+37.888634", "INTPTLON10": "-122.301622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.301865, 37.890028 ], [ -122.300491, 37.887860 ], [ -122.301865, 37.887860 ], [ -122.302551, 37.889486 ], [ -122.301865, 37.890028 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1001", "GEOID10": "060014204001001", "NAME10": "Block 1001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 98716, "AWATER10": 0, "INTPTLAT10": "+37.886596", "INTPTLON10": "-122.303980" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.887860 ], [ -122.300491, 37.886235 ], [ -122.306671, 37.885693 ], [ -122.307358, 37.887318 ], [ -122.300491, 37.887860 ] ] ] } } @@ -387,9 +387,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.898698 ], [ -122.299118, 37.897614 ], [ -122.300491, 37.897614 ], [ -122.300491, 37.898698 ], [ -122.299118, 37.898698 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.898698 ], [ -122.299805, 37.897614 ], [ -122.301178, 37.897614 ], [ -122.301178, 37.898698 ], [ -122.299805, 37.898698 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.895989 ], [ -122.299118, 37.894905 ], [ -122.300491, 37.894905 ], [ -122.300491, 37.895989 ], [ -122.299118, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1000", "GEOID10": "060014202001000", "NAME10": "Block 1000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13452, "AWATER10": 0, "INTPTLAT10": "+37.898271", "INTPTLON10": "-122.296474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.898156 ], [ -122.294998, 37.897072 ], [ -122.296371, 37.897072 ], [ -122.296371, 37.898156 ], [ -122.294998, 37.898156 ] ] ] } } , @@ -403,16 +401,18 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.895447 ], [ -122.299118, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.894905 ], [ -122.299805, 37.895447 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897614 ], [ -122.298431, 37.896530 ], [ -122.299805, 37.896530 ], [ -122.299805, 37.897614 ], [ -122.298431, 37.897614 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.898156 ], [ -122.297058, 37.897072 ], [ -122.298431, 37.897072 ], [ -122.298431, 37.898156 ], [ -122.297058, 37.898156 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895989 ], [ -122.297745, 37.894905 ], [ -122.299118, 37.894905 ], [ -122.299118, 37.895989 ], [ -122.297745, 37.895989 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893821 ], [ -122.298431, 37.892196 ], [ -122.299118, 37.891654 ], [ -122.299805, 37.893279 ], [ -122.299118, 37.893821 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.894363 ], [ -122.297745, 37.893279 ], [ -122.299118, 37.893279 ], [ -122.299118, 37.894363 ], [ -122.297745, 37.894363 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.894905 ], [ -122.295685, 37.893821 ], [ -122.297058, 37.893821 ], [ -122.297058, 37.894905 ], [ -122.295685, 37.894905 ] ] ] } } @@ -505,10 +505,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1015", "GEOID10": "060014205001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 29154, "AWATER10": 0, "INTPTLAT10": "+37.888616", "INTPTLON10": "-122.297036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.890570 ], [ -122.296371, 37.886777 ], [ -122.297058, 37.886777 ], [ -122.297745, 37.890028 ], [ -122.297058, 37.890570 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1016", "GEOID10": "060014205001016", "NAME10": "Block 1016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 614, "AWATER10": 0, "INTPTLAT10": "+37.886929", "INTPTLON10": "-122.296487" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.887318 ], [ -122.296371, 37.886235 ], [ -122.297745, 37.886235 ], [ -122.297745, 37.887318 ], [ -122.296371, 37.887318 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2005", "GEOID10": "060014205002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24545, "AWATER10": 0, "INTPTLAT10": "+37.885491", "INTPTLON10": "-122.296030" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.886777 ], [ -122.294998, 37.884067 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.886777 ], [ -122.296371, 37.886777 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "1013", "GEOID10": "060014205001013", "NAME10": "Block 1013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 616, "AWATER10": 0, "INTPTLAT10": "+37.887099", "INTPTLON10": "-122.295642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.295685, 37.887318 ], [ -122.295685, 37.886235 ], [ -122.297058, 37.886235 ], [ -122.297058, 37.887318 ], [ -122.295685, 37.887318 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2004", "GEOID10": "060014205002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 24848, "AWATER10": 0, "INTPTLAT10": "+37.885646", "INTPTLON10": "-122.295184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.294998, 37.887318 ], [ -122.294312, 37.884067 ], [ -122.294998, 37.884067 ], [ -122.296371, 37.886777 ], [ -122.294998, 37.887318 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2006", "GEOID10": "060014205002006", "NAME10": "Block 2006", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 25305, "AWATER10": 0, "INTPTLAT10": "+37.885307", "INTPTLON10": "-122.296875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.886777 ], [ -122.295685, 37.884067 ], [ -122.297058, 37.884067 ], [ -122.297745, 37.886777 ], [ -122.297058, 37.886777 ] ] ] } } @@ -589,10 +589,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.285385, 37.887318 ], [ -122.286072, 37.887860 ], [ -122.286072, 37.889486 ], [ -122.285385, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1015", "GEOID10": "060014206001015", "NAME10": "Block 1015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 627, "AWATER10": 0, "INTPTLAT10": "+37.889112", "INTPTLON10": "-122.283212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.282639, 37.889486 ], [ -122.282639, 37.888402 ], [ -122.284012, 37.888402 ], [ -122.284012, 37.889486 ], [ -122.282639, 37.889486 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285385, 37.889486 ], [ -122.283325, 37.888944 ], [ -122.284012, 37.887318 ], [ -122.285385, 37.887318 ], [ -122.285385, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.886235 ], [ -122.286072, 37.885151 ], [ -122.287445, 37.885151 ], [ -122.287445, 37.886235 ], [ -122.286072, 37.886235 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2013", "GEOID10": "060014206002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 27693, "AWATER10": 0, "INTPTLAT10": "+37.886194", "INTPTLON10": "-122.287757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.288132, 37.884609 ], [ -122.288818, 37.884609 ], [ -122.287445, 37.887860 ], [ -122.286758, 37.887860 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2014", "GEOID10": "060014206002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 41589, "AWATER10": 0, "INTPTLAT10": "+37.884919", "INTPTLON10": "-122.287379" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286758, 37.887860 ], [ -122.285385, 37.887318 ], [ -122.286758, 37.884067 ], [ -122.288132, 37.884067 ], [ -122.287445, 37.885693 ], [ -122.286758, 37.885693 ], [ -122.286758, 37.887860 ] ] ] } } @@ -705,7 +705,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299461, 37.895176 ], [ -122.300491, 37.895176 ], [ -122.300835, 37.896801 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303238, 37.894634 ], [ -122.302208, 37.891654 ], [ -122.303238, 37.891654 ], [ -122.303581, 37.892737 ], [ -122.303238, 37.894634 ] ] ] } } , @@ -801,9 +801,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897072 ], [ -122.299118, 37.897072 ], [ -122.299805, 37.898156 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.898427 ], [ -122.299805, 37.898156 ], [ -122.299118, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898427 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299461, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299118, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897614 ], [ -122.296371, 37.895989 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.897343 ], [ -122.296715, 37.897614 ] ] ] } } , @@ -819,18 +817,20 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299805, 37.893550 ], [ -122.300491, 37.895176 ], [ -122.299461, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897072 ], [ -122.297745, 37.895447 ], [ -122.298775, 37.895447 ], [ -122.299118, 37.897072 ], [ -122.298431, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296715, 37.894092 ], [ -122.297401, 37.893821 ], [ -122.297745, 37.895447 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297745, 37.895447 ], [ -122.298431, 37.897072 ], [ -122.297745, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297745, 37.895447 ], [ -122.297401, 37.893821 ], [ -122.298088, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297745, 37.895447 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298431, 37.891925 ], [ -122.299461, 37.891925 ], [ -122.299805, 37.893550 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299805, 37.893821 ], [ -122.299805, 37.893279 ], [ -122.300491, 37.893279 ], [ -122.300491, 37.893821 ], [ -122.299805, 37.893821 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298088, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299461, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893821 ], [ -122.296715, 37.892196 ], [ -122.297745, 37.892196 ], [ -122.298088, 37.893821 ], [ -122.297401, 37.893821 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296371, 37.895989 ], [ -122.295685, 37.894363 ], [ -122.296715, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296371, 37.895989 ] ] ] } } @@ -1121,7 +1121,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -1221,7 +1221,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896801 ], [ -122.299633, 37.895176 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896801 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891654 ], [ -122.303410, 37.892873 ], [ -122.303066, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1329,9 +1329,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.898427 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897072 ], [ -122.299633, 37.898291 ], [ -122.298775, 37.898427 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.898291 ], [ -122.299290, 37.897072 ], [ -122.300148, 37.896801 ], [ -122.300491, 37.898291 ], [ -122.299633, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897072 ], [ -122.298775, 37.895447 ], [ -122.299633, 37.895176 ], [ -122.300148, 37.896801 ], [ -122.299290, 37.897072 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296715, 37.897479 ], [ -122.296200, 37.895853 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897343 ], [ -122.296715, 37.897479 ] ] ] } } , @@ -1347,20 +1345,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895176 ], [ -122.299118, 37.893550 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895176 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895447 ], [ -122.299290, 37.897072 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897343 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897343 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895447 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299118, 37.893550 ], [ -122.298603, 37.891925 ], [ -122.299461, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299118, 37.893550 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299633, 37.892331 ], [ -122.299976, 37.893144 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299461, 37.892466 ], [ -122.299461, 37.892196 ], [ -122.299805, 37.892196 ], [ -122.299805, 37.892466 ], [ -122.299461, 37.892466 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895447 ], [ -122.298260, 37.893821 ], [ -122.299118, 37.893550 ], [ -122.299633, 37.895176 ], [ -122.298775, 37.895447 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296200, 37.895853 ], [ -122.295685, 37.894228 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296200, 37.895853 ] ] ] } } @@ -1567,7 +1567,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888131 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289677, 37.885828 ], [ -122.289333, 37.885828 ], [ -122.289333, 37.885422 ], [ -122.289677, 37.885422 ], [ -122.289677, 37.885828 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289677, 37.884880 ], [ -122.289677, 37.885151 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887725 ], [ -122.291222, 37.885015 ], [ -122.291565, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887725 ] ] ] } } , @@ -1621,10 +1621,10 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2009", "GEOID10": "060014206002009", "NAME10": "Block 2009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 19896, "AWATER10": 0, "INTPTLAT10": "+37.888416", "INTPTLON10": "-122.285609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285213, 37.889486 ], [ -122.285042, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.286415, 37.887589 ], [ -122.286072, 37.888673 ], [ -122.286072, 37.889351 ], [ -122.285213, 37.889486 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1008", "GEOID10": "060014206001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 832, "AWATER10": 0, "INTPTLAT10": "+37.889391", "INTPTLON10": "-122.284590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889622 ], [ -122.285042, 37.889351 ], [ -122.285385, 37.889351 ], [ -122.285385, 37.889622 ], [ -122.285042, 37.889622 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1010", "GEOID10": "060014206001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1878, "AWATER10": 0, "INTPTLAT10": "+37.888908", "INTPTLON10": "-122.285020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.284870, 37.888402 ], [ -122.285385, 37.887318 ], [ -122.285042, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1007", "GEOID10": "060014206001007", "NAME10": "Block 1007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 282, "AWATER10": 0, "INTPTLAT10": "+37.889214", "INTPTLON10": "-122.283828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.283497, 37.889215 ], [ -122.283497, 37.888944 ], [ -122.283840, 37.888944 ], [ -122.283840, 37.889215 ], [ -122.283497, 37.889215 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "1009", "GEOID10": "060014206001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 22493, "AWATER10": 0, "INTPTLAT10": "+37.888332", "INTPTLON10": "-122.284471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.285042, 37.889486 ], [ -122.283669, 37.889080 ], [ -122.284355, 37.887183 ], [ -122.285213, 37.887318 ], [ -122.284870, 37.888402 ], [ -122.285042, 37.889486 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2015", "GEOID10": "060014206002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 8164, "AWATER10": 0, "INTPTLAT10": "+37.886159", "INTPTLON10": "-122.286865" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287102, 37.886641 ], [ -122.286243, 37.886506 ], [ -122.286587, 37.885693 ], [ -122.287445, 37.885828 ], [ -122.287102, 37.886641 ] ] ] } } @@ -1697,7 +1697,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , @@ -1797,7 +1797,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300148, 37.896869 ], [ -122.299633, 37.895244 ], [ -122.300491, 37.895040 ], [ -122.301006, 37.896666 ], [ -122.300148, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302208, 37.891789 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892805 ], [ -122.303152, 37.893550 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -1915,9 +1915,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898495 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897005 ], [ -122.299719, 37.898291 ], [ -122.298861, 37.898495 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897005 ], [ -122.300148, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300234, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897005 ], [ -122.298775, 37.895379 ], [ -122.299633, 37.895244 ], [ -122.300148, 37.896869 ], [ -122.299290, 37.897005 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296801, 37.897546 ], [ -122.296286, 37.895921 ], [ -122.297058, 37.895718 ], [ -122.297573, 37.897411 ], [ -122.296801, 37.897546 ] ] ] } } , @@ -1933,20 +1931,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299633, 37.895244 ], [ -122.299032, 37.893618 ], [ -122.299976, 37.893415 ], [ -122.300491, 37.895040 ], [ -122.299633, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895379 ], [ -122.299290, 37.897005 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895718 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895718 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297573, 37.897411 ], [ -122.297058, 37.895718 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297573, 37.897411 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298260, 37.893821 ], [ -122.298775, 37.895379 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299032, 37.893618 ], [ -122.298517, 37.891992 ], [ -122.299376, 37.891789 ], [ -122.299976, 37.893415 ], [ -122.299032, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299976, 37.893415 ], [ -122.299547, 37.892331 ], [ -122.299719, 37.892263 ], [ -122.299976, 37.893212 ], [ -122.300062, 37.893415 ], [ -122.299976, 37.893415 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299547, 37.892331 ], [ -122.299376, 37.891789 ], [ -122.299547, 37.891789 ], [ -122.299719, 37.892263 ], [ -122.299547, 37.892331 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895379 ], [ -122.298260, 37.893821 ], [ -122.299032, 37.893618 ], [ -122.299633, 37.895244 ], [ -122.298775, 37.895379 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892196 ], [ -122.298260, 37.893821 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296286, 37.895921 ], [ -122.295685, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895718 ], [ -122.296286, 37.895921 ] ] ] } } @@ -2169,7 +2169,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288303, 37.888538 ], [ -122.289333, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288303, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289419, 37.885760 ], [ -122.289333, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289333, 37.885964 ], [ -122.289248, 37.885828 ], [ -122.289591, 37.884880 ], [ -122.289677, 37.884880 ], [ -122.289591, 37.885083 ], [ -122.289333, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887793 ], [ -122.291136, 37.884948 ], [ -122.291479, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887725 ], [ -122.292080, 37.887793 ] ] ] } } , @@ -2205,7 +2205,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.289076, 37.888402 ], [ -122.289076, 37.888470 ], [ -122.288218, 37.888606 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888876 ], [ -122.288132, 37.888673 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288818, 37.890773 ], [ -122.288132, 37.888741 ], [ -122.288132, 37.888606 ], [ -122.288303, 37.888538 ], [ -122.288218, 37.888809 ], [ -122.288818, 37.890773 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286072, 37.889351 ], [ -122.287102, 37.889012 ], [ -122.286415, 37.889351 ], [ -122.286072, 37.889351 ] ] ] } } , @@ -2367,7 +2367,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300105, 37.896869 ], [ -122.299590, 37.895244 ], [ -122.300448, 37.895074 ], [ -122.300963, 37.896700 ], [ -122.300105, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299247, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303066, 37.894498 ], [ -122.302251, 37.891755 ], [ -122.303066, 37.891586 ], [ -122.303495, 37.892839 ], [ -122.303109, 37.893516 ], [ -122.303066, 37.894498 ] ] ] } } , @@ -2477,17 +2477,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306757, 37.885557 ], [ -122.304482, 37.885320 ], [ -122.303925, 37.883559 ], [ -122.303410, 37.883660 ], [ -122.303410, 37.882881 ], [ -122.302594, 37.883051 ], [ -122.302337, 37.882475 ], [ -122.302723, 37.882441 ], [ -122.303324, 37.882272 ], [ -122.304354, 37.882272 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306757, 37.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301822, 37.883152 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883389 ], [ -122.300277, 37.883220 ], [ -122.300191, 37.882848 ], [ -122.301092, 37.882746 ], [ -122.302337, 37.882475 ], [ -122.302594, 37.883051 ], [ -122.301993, 37.883119 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883389 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301822, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300491, 37.886302 ], [ -122.299933, 37.884575 ], [ -122.299891, 37.884033 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883728 ], [ -122.300062, 37.883322 ], [ -122.300277, 37.883220 ], [ -122.300920, 37.883389 ], [ -122.300963, 37.883356 ], [ -122.301993, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883762 ], [ -122.303410, 37.885930 ], [ -122.301607, 37.886099 ], [ -122.300491, 37.886302 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897377 ], [ -122.298431, 37.897208 ], [ -122.298861, 37.898461 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898461 ], [ -122.298431, 37.897208 ], [ -122.299247, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898461 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300105, 37.896869 ], [ -122.300577, 37.898291 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299247, 37.897038 ], [ -122.298732, 37.895413 ], [ -122.299590, 37.895244 ], [ -122.300105, 37.896869 ], [ -122.299247, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296758, 37.897546 ], [ -122.296243, 37.895921 ], [ -122.297058, 37.895752 ], [ -122.297616, 37.897377 ], [ -122.296758, 37.897546 ] ] ] } } , @@ -2503,20 +2501,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299933, 37.893449 ], [ -122.300448, 37.895074 ], [ -122.299590, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298431, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298732, 37.895413 ], [ -122.299247, 37.897038 ], [ -122.298431, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297058, 37.895752 ], [ -122.296543, 37.894092 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297058, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897377 ], [ -122.297058, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298431, 37.897208 ], [ -122.297616, 37.897377 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298217, 37.893787 ], [ -122.298732, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298732, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298732, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299933, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299933, 37.893449 ], [ -122.299590, 37.892297 ], [ -122.299676, 37.892263 ], [ -122.299976, 37.893178 ], [ -122.300062, 37.893415 ], [ -122.299933, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892297 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299676, 37.892263 ], [ -122.299590, 37.892297 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298217, 37.893787 ], [ -122.299075, 37.893618 ], [ -122.299590, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892162 ], [ -122.298217, 37.893787 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296243, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296543, 37.894092 ], [ -122.297058, 37.895752 ], [ -122.296243, 37.895921 ] ] ] } } @@ -2739,7 +2739,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288260, 37.888538 ], [ -122.289290, 37.885964 ], [ -122.290020, 37.888199 ], [ -122.288260, 37.888538 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289376, 37.885760 ], [ -122.289290, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289290, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289591, 37.884880 ], [ -122.289720, 37.884880 ], [ -122.289634, 37.885083 ], [ -122.289290, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292080, 37.887759 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884880 ], [ -122.291737, 37.885422 ], [ -122.292423, 37.887691 ], [ -122.292080, 37.887759 ] ] ] } } , @@ -2775,7 +2775,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288260, 37.888538 ], [ -122.289076, 37.888368 ], [ -122.289076, 37.888436 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288132, 37.888876 ], [ -122.288089, 37.888673 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288089, 37.888775 ], [ -122.288132, 37.888572 ], [ -122.288260, 37.888538 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890536 ], [ -122.288818, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889384 ], [ -122.286115, 37.889351 ], [ -122.287059, 37.888978 ], [ -122.287102, 37.889046 ], [ -122.286458, 37.889317 ], [ -122.286158, 37.889384 ] ] ] } } , @@ -2907,7 +2907,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1008", "GEOID10": "060014202001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14452, "AWATER10": 0, "INTPTLAT10": "+37.895967", "INTPTLON10": "-122.300291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300127, 37.896869 ], [ -122.299612, 37.895244 ], [ -122.300470, 37.895074 ], [ -122.300985, 37.896700 ], [ -122.300127, 37.896869 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299290, 37.897038 ], [ -122.298775, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299290, 37.897038 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299268, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420300", "BLOCKCE10": "1008", "GEOID10": "060014203001008", "NAME10": "Block 1008", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 15574, "AWATER10": 0, "INTPTLAT10": "+37.892632", "INTPTLON10": "-122.302910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.303088, 37.894515 ], [ -122.302895, 37.893804 ], [ -122.302251, 37.891772 ], [ -122.303088, 37.891603 ], [ -122.303495, 37.892839 ], [ -122.303174, 37.893364 ], [ -122.303131, 37.893533 ], [ -122.303088, 37.893855 ], [ -122.303088, 37.894515 ] ] ] } } , @@ -3017,17 +3017,15 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1003", "GEOID10": "060014204001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 82198, "AWATER10": 0, "INTPTLAT10": "+37.883707", "INTPTLON10": "-122.304949" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.306778, 37.885574 ], [ -122.304482, 37.885320 ], [ -122.303946, 37.883576 ], [ -122.303431, 37.883677 ], [ -122.303410, 37.882881 ], [ -122.302938, 37.883000 ], [ -122.302594, 37.883051 ], [ -122.302423, 37.882746 ], [ -122.302358, 37.882492 ], [ -122.302530, 37.882458 ], [ -122.302744, 37.882458 ], [ -122.302938, 37.882407 ], [ -122.303131, 37.882306 ], [ -122.303324, 37.882272 ], [ -122.304375, 37.882272 ], [ -122.305233, 37.882204 ], [ -122.305813, 37.882102 ], [ -122.306199, 37.883322 ], [ -122.306306, 37.883847 ], [ -122.306778, 37.885574 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.301843, 37.883152 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1020", "GEOID10": "060014204001020", "NAME10": "Block 1020", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12062, "AWATER10": 0, "INTPTLAT10": "+37.882965", "INTPTLON10": "-122.301396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300920, 37.883406 ], [ -122.300642, 37.883356 ], [ -122.300298, 37.883220 ], [ -122.300191, 37.882864 ], [ -122.301092, 37.882763 ], [ -122.301929, 37.882560 ], [ -122.302337, 37.882492 ], [ -122.302380, 37.882543 ], [ -122.302423, 37.882746 ], [ -122.302594, 37.883051 ], [ -122.302186, 37.883119 ], [ -122.301993, 37.883119 ], [ -122.301521, 37.883254 ], [ -122.301328, 37.883271 ], [ -122.301157, 37.883339 ], [ -122.300963, 37.883356 ], [ -122.300920, 37.883373 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883406 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301843, 37.883152 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420400", "BLOCKCE10": "1014", "GEOID10": "060014204001014", "NAME10": "Block 1014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 85670, "AWATER10": 0, "INTPTLAT10": "+37.884677", "INTPTLON10": "-122.301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300513, 37.886319 ], [ -122.299955, 37.884592 ], [ -122.299912, 37.884423 ], [ -122.299891, 37.884050 ], [ -122.299805, 37.884067 ], [ -122.299848, 37.883745 ], [ -122.299998, 37.883389 ], [ -122.300062, 37.883322 ], [ -122.300234, 37.883220 ], [ -122.300298, 37.883220 ], [ -122.300642, 37.883356 ], [ -122.300920, 37.883406 ], [ -122.300985, 37.883389 ], [ -122.300920, 37.883373 ], [ -122.300963, 37.883356 ], [ -122.301157, 37.883339 ], [ -122.301328, 37.883271 ], [ -122.301521, 37.883254 ], [ -122.301993, 37.883119 ], [ -122.302186, 37.883119 ], [ -122.302594, 37.883051 ], [ -122.302938, 37.883779 ], [ -122.303410, 37.885930 ], [ -122.301629, 37.886116 ], [ -122.300513, 37.886319 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1002", "GEOID10": "060014202001002", "NAME10": "Block 1002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11372, "AWATER10": 0, "INTPTLAT10": "+37.897951", "INTPTLON10": "-122.298233" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298045, 37.898732 ], [ -122.297616, 37.897394 ], [ -122.298453, 37.897208 ], [ -122.298861, 37.898478 ], [ -122.298045, 37.898732 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299290, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1003", "GEOID10": "060014202001003", "NAME10": "Block 1003", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10975, "AWATER10": 0, "INTPTLAT10": "+37.897749", "INTPTLON10": "-122.299069" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298861, 37.898478 ], [ -122.298453, 37.897208 ], [ -122.299268, 37.897038 ], [ -122.299719, 37.898291 ], [ -122.299376, 37.898325 ], [ -122.298861, 37.898478 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1004", "GEOID10": "060014202001004", "NAME10": "Block 1004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 11306, "AWATER10": 0, "INTPTLAT10": "+37.897601", "INTPTLON10": "-122.299928" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.300577, 37.898308 ], [ -122.300277, 37.898224 ], [ -122.299719, 37.898291 ], [ -122.299290, 37.897038 ], [ -122.300127, 37.896869 ], [ -122.300577, 37.898308 ] ] ] } } -, -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298775, 37.895413 ], [ -122.299290, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1009", "GEOID10": "060014202001009", "NAME10": "Block 1009", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14237, "AWATER10": 0, "INTPTLAT10": "+37.896143", "INTPTLON10": "-122.299442" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299268, 37.897038 ], [ -122.298753, 37.895413 ], [ -122.299612, 37.895244 ], [ -122.300127, 37.896869 ], [ -122.299268, 37.897038 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1012", "GEOID10": "060014202001012", "NAME10": "Block 1012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14000, "AWATER10": 0, "INTPTLAT10": "+37.896653", "INTPTLON10": "-122.296931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296779, 37.897546 ], [ -122.296264, 37.895921 ], [ -122.297080, 37.895752 ], [ -122.297616, 37.897394 ], [ -122.296779, 37.897546 ] ] ] } } , @@ -3043,20 +3041,22 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3002", "GEOID10": "060014202003002", "NAME10": "Block 3002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14593, "AWATER10": 0, "INTPTLAT10": "+37.894345", "INTPTLON10": "-122.299770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299612, 37.895244 ], [ -122.299075, 37.893618 ], [ -122.299955, 37.893449 ], [ -122.300470, 37.895074 ], [ -122.299612, 37.895244 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298775, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1010", "GEOID10": "060014202001010", "NAME10": "Block 1010", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14169, "AWATER10": 0, "INTPTLAT10": "+37.896311", "INTPTLON10": "-122.298601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298453, 37.897208 ], [ -122.297916, 37.895582 ], [ -122.298753, 37.895413 ], [ -122.299268, 37.897038 ], [ -122.298453, 37.897208 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2005", "GEOID10": "060014202002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14270, "AWATER10": 0, "INTPTLAT10": "+37.894854", "INTPTLON10": "-122.297242" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297080, 37.895752 ], [ -122.296565, 37.894109 ], [ -122.296672, 37.894109 ], [ -122.297401, 37.893957 ], [ -122.297916, 37.895582 ], [ -122.297080, 37.895752 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "1011", "GEOID10": "060014202001011", "NAME10": "Block 1011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14193, "AWATER10": 0, "INTPTLAT10": "+37.896481", "INTPTLON10": "-122.297762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297616, 37.897394 ], [ -122.297080, 37.895752 ], [ -122.297916, 37.895582 ], [ -122.298453, 37.897208 ], [ -122.297616, 37.897394 ] ] ] } } , +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3000", "GEOID10": "060014202003000", "NAME10": "Block 3000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14087, "AWATER10": 0, "INTPTLAT10": "+37.894692", "INTPTLON10": "-122.298085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297916, 37.895582 ], [ -122.297401, 37.893957 ], [ -122.298238, 37.893804 ], [ -122.298753, 37.895413 ], [ -122.297916, 37.895582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298753, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298753, 37.895413 ] ] ] } } +, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3005", "GEOID10": "060014202003005", "NAME10": "Block 3005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14799, "AWATER10": 0, "INTPTLAT10": "+37.892719", "INTPTLON10": "-122.299249" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299075, 37.893618 ], [ -122.298560, 37.891992 ], [ -122.299418, 37.891823 ], [ -122.299955, 37.893449 ], [ -122.299075, 37.893618 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3004", "GEOID10": "060014202003004", "NAME10": "Block 3004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1457, "AWATER10": 0, "INTPTLAT10": "+37.892870", "INTPTLON10": "-122.299826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299955, 37.893449 ], [ -122.299590, 37.892314 ], [ -122.299697, 37.892280 ], [ -122.299998, 37.893195 ], [ -122.300062, 37.893432 ], [ -122.299955, 37.893449 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3012", "GEOID10": "060014202003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 636, "AWATER10": 0, "INTPTLAT10": "+37.892051", "INTPTLON10": "-122.299561" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.299590, 37.892314 ], [ -122.299418, 37.891823 ], [ -122.299547, 37.891789 ], [ -122.299697, 37.892280 ], [ -122.299590, 37.892314 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3001", "GEOID10": "060014202003001", "NAME10": "Block 3001", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14042, "AWATER10": 0, "INTPTLAT10": "+37.894523", "INTPTLON10": "-122.298922" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.298775, 37.895413 ], [ -122.298238, 37.893804 ], [ -122.299075, 37.893618 ], [ -122.299612, 37.895244 ], [ -122.298775, 37.895413 ] ] ] } } -, { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "3007", "GEOID10": "060014202003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14185, "AWATER10": 0, "INTPTLAT10": "+37.893063", "INTPTLON10": "-122.297570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.297401, 37.893957 ], [ -122.296886, 37.892331 ], [ -122.297745, 37.892179 ], [ -122.298238, 37.893804 ], [ -122.297401, 37.893957 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420200", "BLOCKCE10": "2004", "GEOID10": "060014202002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 14101, "AWATER10": 0, "INTPTLAT10": "+37.895019", "INTPTLON10": "-122.296405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.296264, 37.895921 ], [ -122.295728, 37.894295 ], [ -122.296565, 37.894109 ], [ -122.297080, 37.895752 ], [ -122.296264, 37.895921 ] ] ] } } @@ -3265,9 +3265,9 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2000", "GEOID10": "060014205002000", "NAME10": "Block 2000", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 6434, "AWATER10": 0, "INTPTLAT10": "+37.886278", "INTPTLON10": "-122.292116" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292445, 37.887708 ], [ -122.292209, 37.886878 ], [ -122.291737, 37.885439 ], [ -122.291522, 37.884897 ], [ -122.291565, 37.884880 ], [ -122.291758, 37.884846 ], [ -122.292681, 37.887657 ], [ -122.292445, 37.887708 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292960, 37.883017 ], [ -122.293131, 37.882983 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2013", "GEOID10": "060014205002013", "NAME10": "Block 2013", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 12945, "AWATER10": 0, "INTPTLAT10": "+37.883693", "INTPTLON10": "-122.293633" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.293453, 37.884507 ], [ -122.292938, 37.883017 ], [ -122.293861, 37.882932 ], [ -122.294312, 37.884321 ], [ -122.293453, 37.884507 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292960, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2014", "GEOID10": "060014205002014", "NAME10": "Block 2014", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13013, "AWATER10": 0, "INTPTLAT10": "+37.883836", "INTPTLON10": "-122.292777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292638, 37.884677 ], [ -122.292080, 37.883135 ], [ -122.292488, 37.883119 ], [ -122.292938, 37.883017 ], [ -122.293453, 37.884507 ], [ -122.292638, 37.884677 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420500", "BLOCKCE10": "2015", "GEOID10": "060014205002015", "NAME10": "Block 2015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 13985, "AWATER10": 0, "INTPTLAT10": "+37.883973", "INTPTLON10": "-122.291926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.291758, 37.884846 ], [ -122.291243, 37.883237 ], [ -122.291801, 37.883135 ], [ -122.292080, 37.883135 ], [ -122.292638, 37.884677 ], [ -122.291758, 37.884846 ] ] ] } } , @@ -3279,7 +3279,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3012", "GEOID10": "060014206003012", "NAME10": "Block 3012", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 20277, "AWATER10": 0, "INTPTLAT10": "+37.887570", "INTPTLON10": "-122.289219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288282, 37.888555 ], [ -122.289312, 37.885964 ], [ -122.290041, 37.888199 ], [ -122.288282, 37.888555 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289398, 37.885760 ], [ -122.289312, 37.885964 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2016", "GEOID10": "060014206002016", "NAME10": "Block 2016", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1094, "AWATER10": 0, "INTPTLAT10": "+37.885399", "INTPTLON10": "-122.289471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.289312, 37.885964 ], [ -122.289248, 37.885862 ], [ -122.289612, 37.884880 ], [ -122.289720, 37.884897 ], [ -122.289634, 37.885100 ], [ -122.289312, 37.885964 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3015", "GEOID10": "060014206003015", "NAME10": "Block 3015", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 10776, "AWATER10": 0, "INTPTLAT10": "+37.886322", "INTPTLON10": "-122.291817" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.292101, 37.887776 ], [ -122.291179, 37.884981 ], [ -122.291522, 37.884897 ], [ -122.291737, 37.885439 ], [ -122.292209, 37.886878 ], [ -122.292445, 37.887708 ], [ -122.292101, 37.887776 ] ] ] } } , @@ -3303,7 +3303,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420100", "BLOCKCE10": "3007", "GEOID10": "060014201003007", "NAME10": "Block 3007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 18637, "AWATER10": 0, "INTPTLAT10": "+37.891785", "INTPTLON10": "-122.287969" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288325, 37.892856 ], [ -122.287424, 37.892805 ], [ -122.287509, 37.890875 ], [ -122.288775, 37.890807 ], [ -122.288711, 37.891078 ], [ -122.288475, 37.891332 ], [ -122.288411, 37.891467 ], [ -122.288325, 37.892856 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2005", "GEOID10": "060014206002005", "NAME10": "Block 2005", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 21301, "AWATER10": 0, "INTPTLAT10": "+37.889828", "INTPTLON10": "-122.287926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.287681, 37.890824 ], [ -122.287102, 37.889063 ], [ -122.288110, 37.888673 ], [ -122.288110, 37.888775 ], [ -122.288775, 37.890773 ], [ -122.287681, 37.890824 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2002", "GEOID10": "060014206002002", "NAME10": "Block 2002", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 16691, "AWATER10": 0, "INTPTLAT10": "+37.890058", "INTPTLON10": "-122.286913" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286651, 37.890892 ], [ -122.286158, 37.889401 ], [ -122.286458, 37.889334 ], [ -122.287102, 37.889063 ], [ -122.287703, 37.890875 ], [ -122.287509, 37.890875 ], [ -122.287509, 37.890841 ], [ -122.286651, 37.890892 ] ] ] } } , @@ -3315,7 +3315,7 @@ , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "3011", "GEOID10": "060014206003011", "NAME10": "Block 3011", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 598, "AWATER10": 0, "INTPTLAT10": "+37.888511", "INTPTLON10": "-122.288677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288218, 37.888639 ], [ -122.288282, 37.888555 ], [ -122.289076, 37.888385 ], [ -122.289097, 37.888453 ], [ -122.288218, 37.888639 ] ] ] } } , -{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288153, 37.888876 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2004", "GEOID10": "060014206002004", "NAME10": "Block 2004", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 1970, "AWATER10": 0, "INTPTLAT10": "+37.889680", "INTPTLON10": "-122.288473" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.288775, 37.890807 ], [ -122.288775, 37.890722 ], [ -122.288110, 37.888775 ], [ -122.288110, 37.888673 ], [ -122.288153, 37.888589 ], [ -122.288282, 37.888555 ], [ -122.288218, 37.888639 ], [ -122.288218, 37.888843 ], [ -122.288818, 37.890553 ], [ -122.288861, 37.890756 ], [ -122.288840, 37.890807 ], [ -122.288775, 37.890807 ] ] ] } } , { "type": "Feature", "properties": { "STATEFP10": "06", "COUNTYFP10": "001", "TRACTCE10": "420600", "BLOCKCE10": "2007", "GEOID10": "060014206002007", "NAME10": "Block 2007", "MTFCC10": "G5040", "UR10": "U", "UACE10": "78904", "UATYP10": "U", "FUNCSTAT10": "S", "ALAND10": 740, "AWATER10": 0, "INTPTLAT10": "+37.889215", "INTPTLON10": "-122.286615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.286158, 37.889401 ], [ -122.286115, 37.889351 ], [ -122.286415, 37.889266 ], [ -122.287080, 37.888995 ], [ -122.287102, 37.889063 ], [ -122.286458, 37.889334 ], [ -122.286158, 37.889401 ] ] ] } } , diff --git a/tests/join-population/renamed.mbtiles.json b/tests/join-population/renamed.mbtiles.json index 7353077b1..5ea593389 100644 --- a/tests/join-population/renamed.mbtiles.json +++ b/tests/join-population/renamed.mbtiles.json @@ -134,7 +134,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228394, 37.801104 ], [ -122.206421, 37.797848 ], [ -122.192688, 37.785911 ], [ -122.187195, 37.784825 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228394, 37.801104 ], [ -122.207794, 37.797848 ], [ -122.192688, 37.785911 ], [ -122.188568, 37.783740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.228394, 37.801104 ], [ -122.206421, 37.797848 ], [ -122.192688, 37.785911 ], [ -122.188568, 37.783740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.785911 ], [ -122.188568, 37.783740 ] ] } } , @@ -212,7 +212,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801104 ], [ -122.220154, 37.800019 ], [ -122.218094, 37.801104 ], [ -122.207108, 37.798391 ], [ -122.200928, 37.794593 ], [ -122.193375, 37.785911 ], [ -122.187881, 37.784283 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801104 ], [ -122.220154, 37.800019 ], [ -122.218094, 37.800561 ], [ -122.207108, 37.798391 ], [ -122.202301, 37.795135 ], [ -122.193375, 37.785911 ], [ -122.188568, 37.783740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801104 ], [ -122.220154, 37.800019 ], [ -122.218094, 37.800561 ], [ -122.206421, 37.798391 ], [ -122.200928, 37.794050 ], [ -122.193375, 37.785911 ], [ -122.188568, 37.783740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786453 ], [ -122.188568, 37.783740 ] ] } } , @@ -320,7 +320,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220497, 37.800019 ], [ -122.218781, 37.801104 ], [ -122.208824, 37.798391 ], [ -122.207451, 37.798662 ], [ -122.204704, 37.797306 ], [ -122.201271, 37.794322 ], [ -122.193375, 37.785911 ], [ -122.187538, 37.784554 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220497, 37.800019 ], [ -122.219810, 37.800019 ], [ -122.218437, 37.800832 ], [ -122.209511, 37.798662 ], [ -122.207108, 37.798391 ], [ -122.205048, 37.797306 ], [ -122.201958, 37.795135 ], [ -122.193375, 37.785911 ], [ -122.188568, 37.784554 ], [ -122.188225, 37.783740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220497, 37.800019 ], [ -122.219810, 37.800019 ], [ -122.218437, 37.800832 ], [ -122.206764, 37.798120 ], [ -122.205048, 37.797306 ], [ -122.201958, 37.795135 ], [ -122.193375, 37.785911 ], [ -122.188568, 37.784554 ], [ -122.188225, 37.783740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786182 ], [ -122.192001, 37.784554 ], [ -122.188911, 37.783740 ] ] } } , @@ -370,7 +370,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -422,7 +422,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220325, 37.800019 ], [ -122.219810, 37.800154 ], [ -122.219124, 37.800968 ], [ -122.218609, 37.800968 ], [ -122.208824, 37.798527 ], [ -122.207623, 37.798662 ], [ -122.204704, 37.797306 ], [ -122.201099, 37.794322 ], [ -122.195263, 37.787946 ], [ -122.193031, 37.785775 ], [ -122.187538, 37.784554 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220669, 37.799883 ], [ -122.219810, 37.800019 ], [ -122.219124, 37.800832 ], [ -122.218609, 37.800968 ], [ -122.208824, 37.798391 ], [ -122.207623, 37.798527 ], [ -122.207108, 37.798391 ], [ -122.204876, 37.797306 ], [ -122.202129, 37.795135 ], [ -122.194920, 37.787267 ], [ -122.193375, 37.786046 ], [ -122.192688, 37.785639 ], [ -122.189255, 37.784825 ], [ -122.188568, 37.784554 ], [ -122.188225, 37.783740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227707, 37.801375 ], [ -122.220669, 37.799883 ], [ -122.219810, 37.800019 ], [ -122.219124, 37.800832 ], [ -122.218609, 37.800968 ], [ -122.208824, 37.798391 ], [ -122.207623, 37.798527 ], [ -122.206764, 37.798120 ], [ -122.204876, 37.797306 ], [ -122.202129, 37.795135 ], [ -122.194920, 37.787267 ], [ -122.193375, 37.786046 ], [ -122.192688, 37.785639 ], [ -122.189255, 37.784825 ], [ -122.188568, 37.784554 ], [ -122.188225, 37.783740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786318 ], [ -122.193031, 37.785368 ], [ -122.192001, 37.784690 ], [ -122.188740, 37.783740 ] ] } } , @@ -474,7 +474,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1102654602215", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104486090991", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102638069562", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , @@ -506,9 +506,9 @@ , { "type": "Feature", "properties": { "LINEARID": "1102156217102", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.279119, 37.828430 ], [ -122.277403, 37.828362 ], [ -122.271738, 37.827548 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104475134436", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254486, 37.821311 ], [ -122.254829, 37.821989 ], [ -122.257318, 37.823887 ], [ -122.258606, 37.824497 ], [ -122.260408, 37.825040 ], [ -122.263756, 37.825786 ], [ -122.265472, 37.826599 ], [ -122.266331, 37.826802 ], [ -122.275429, 37.828226 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104475134436", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254486, 37.821446 ], [ -122.254829, 37.821989 ], [ -122.257318, 37.823887 ], [ -122.258606, 37.824497 ], [ -122.260408, 37.825040 ], [ -122.263756, 37.825786 ], [ -122.265472, 37.826599 ], [ -122.266331, 37.826802 ], [ -122.275429, 37.828226 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104475134288", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254486, 37.821311 ], [ -122.254829, 37.821989 ], [ -122.257318, 37.823887 ], [ -122.258606, 37.824497 ], [ -122.260408, 37.825040 ], [ -122.263756, 37.825786 ], [ -122.265472, 37.826599 ], [ -122.266331, 37.826802 ], [ -122.276115, 37.828362 ], [ -122.278605, 37.828633 ], [ -122.279634, 37.828565 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104475134288", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254314, 37.820362 ], [ -122.254486, 37.821446 ], [ -122.254829, 37.821989 ], [ -122.257318, 37.823887 ], [ -122.258606, 37.824497 ], [ -122.260408, 37.825040 ], [ -122.263756, 37.825786 ], [ -122.265472, 37.826599 ], [ -122.266331, 37.826802 ], [ -122.276115, 37.828362 ], [ -122.278605, 37.828633 ], [ -122.279634, 37.828565 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1102407366406", "FULLNAME": "W Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.254400, 37.820023 ], [ -122.254744, 37.821446 ] ] } } , @@ -526,7 +526,7 @@ , { "type": "Feature", "properties": { "LINEARID": "1103717593123", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227793, 37.801375 ], [ -122.220411, 37.800019 ], [ -122.220068, 37.800019 ], [ -122.219810, 37.800154 ], [ -122.219124, 37.800968 ], [ -122.218695, 37.801036 ], [ -122.208824, 37.798527 ], [ -122.207623, 37.798662 ], [ -122.204790, 37.797374 ], [ -122.201185, 37.794389 ], [ -122.195349, 37.787946 ], [ -122.193117, 37.785843 ], [ -122.192602, 37.785639 ], [ -122.190027, 37.785165 ], [ -122.188053, 37.784554 ], [ -122.187624, 37.784554 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227793, 37.801375 ], [ -122.226934, 37.801104 ], [ -122.225819, 37.800968 ], [ -122.220669, 37.799951 ], [ -122.219982, 37.799951 ], [ -122.219639, 37.800222 ], [ -122.219210, 37.800832 ], [ -122.218952, 37.800968 ], [ -122.218609, 37.800968 ], [ -122.216721, 37.800493 ], [ -122.216291, 37.800290 ], [ -122.208824, 37.798459 ], [ -122.207708, 37.798594 ], [ -122.207193, 37.798391 ], [ -122.204962, 37.797374 ], [ -122.202129, 37.795135 ], [ -122.199554, 37.792558 ], [ -122.194920, 37.787335 ], [ -122.193460, 37.786046 ], [ -122.192688, 37.785639 ], [ -122.190456, 37.785232 ], [ -122.189255, 37.784893 ], [ -122.188654, 37.784554 ], [ -122.188311, 37.783808 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105281275689", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.227793, 37.801375 ], [ -122.226934, 37.801104 ], [ -122.225819, 37.800968 ], [ -122.220669, 37.799951 ], [ -122.219982, 37.799951 ], [ -122.219639, 37.800222 ], [ -122.219210, 37.800832 ], [ -122.218952, 37.800968 ], [ -122.218609, 37.800968 ], [ -122.216721, 37.800493 ], [ -122.216291, 37.800290 ], [ -122.208824, 37.798459 ], [ -122.207708, 37.798594 ], [ -122.206764, 37.798187 ], [ -122.204962, 37.797374 ], [ -122.202129, 37.795135 ], [ -122.199554, 37.792558 ], [ -122.194920, 37.787335 ], [ -122.193460, 37.786046 ], [ -122.192688, 37.785639 ], [ -122.190456, 37.785232 ], [ -122.189255, 37.784893 ], [ -122.188654, 37.784554 ], [ -122.188311, 37.783808 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105281275688", "FULLNAME": "Macarthur Blvd", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.194061, 37.786318 ], [ -122.193117, 37.785368 ], [ -122.192001, 37.784690 ], [ -122.188826, 37.783808 ] ] } } , diff --git a/tests/join-population/windows.mbtiles.json b/tests/join-population/windows.mbtiles.json index 54ec5715e..08a4af5a0 100644 --- a/tests/join-population/windows.mbtiles.json +++ b/tests/join-population/windows.mbtiles.json @@ -164,7 +164,7 @@ , { "type": "Feature", "properties": { "LINEARID": "first", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817107 ], [ -122.252254, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "second", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155952, 37.771529 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "second", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294483, 37.832972 ], [ -122.293968, 37.831751 ], [ -122.293625, 37.828497 ], [ -122.292938, 37.827955 ], [ -122.291222, 37.827006 ], [ -122.289677, 37.826328 ], [ -122.287960, 37.826328 ], [ -122.282810, 37.827277 ], [ -122.280922, 37.827141 ], [ -122.268391, 37.824158 ], [ -122.261868, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.254143, 37.819141 ], [ -122.252769, 37.817921 ], [ -122.251568, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810733 ], [ -122.248650, 37.810326 ], [ -122.242470, 37.808428 ], [ -122.238522, 37.806936 ], [ -122.234230, 37.804766 ], [ -122.230282, 37.801646 ], [ -122.228394, 37.800697 ], [ -122.216377, 37.798120 ], [ -122.210026, 37.796221 ], [ -122.204876, 37.793508 ], [ -122.200241, 37.788895 ], [ -122.193031, 37.785368 ], [ -122.190113, 37.784418 ], [ -122.188396, 37.784147 ], [ -122.179470, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.170029, 37.778992 ], [ -122.163162, 37.775871 ], [ -122.157497, 37.772750 ], [ -122.155609, 37.771122 ], [ -122.154408, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.148914, 37.761487 ], [ -122.147884, 37.759451 ], [ -122.147884, 37.757959 ], [ -122.148571, 37.756601 ], [ -122.150974, 37.754294 ], [ -122.151833, 37.752801 ], [ -122.151833, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149601, 37.746150 ], [ -122.148743, 37.744929 ], [ -122.145481, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141018, 37.737598 ], [ -122.140503, 37.736919 ], [ -122.138443, 37.729453 ], [ -122.137585, 37.724972 ], [ -122.137070, 37.723886 ], [ -122.134323, 37.720220 ], [ -122.133293, 37.718590 ], [ -122.131577, 37.714924 ], [ -122.130032, 37.713023 ], [ -122.128143, 37.711665 ], [ -122.124367, 37.709628 ], [ -122.121792, 37.707726 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "first", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241440, 37.807207 ], [ -122.240925, 37.806800 ], [ -122.239380, 37.806665 ], [ -122.238350, 37.805986 ], [ -122.237148, 37.805580 ] ] } } , @@ -210,7 +210,7 @@ , { "type": "Feature", "properties": { "LINEARID": "first", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.252769, 37.817175 ], [ -122.252340, 37.816293 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "second", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.156038, 37.771529 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "second", "FULLNAME": "Macarthur Fwy", "RTTYP": "M", "MTFCC": "S1100" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.294569, 37.833039 ], [ -122.294054, 37.831819 ], [ -122.293797, 37.830395 ], [ -122.293882, 37.829379 ], [ -122.293625, 37.828565 ], [ -122.293024, 37.827955 ], [ -122.291050, 37.826870 ], [ -122.289677, 37.826396 ], [ -122.287960, 37.826328 ], [ -122.283497, 37.827209 ], [ -122.281008, 37.827209 ], [ -122.268476, 37.824158 ], [ -122.261953, 37.822802 ], [ -122.259121, 37.821853 ], [ -122.256632, 37.820633 ], [ -122.254229, 37.819209 ], [ -122.252769, 37.817921 ], [ -122.251654, 37.816158 ], [ -122.250538, 37.812089 ], [ -122.249508, 37.810801 ], [ -122.248735, 37.810326 ], [ -122.242470, 37.808496 ], [ -122.241268, 37.808089 ], [ -122.238607, 37.806936 ], [ -122.238092, 37.806597 ], [ -122.236032, 37.805715 ], [ -122.234316, 37.804766 ], [ -122.233200, 37.804020 ], [ -122.230368, 37.801714 ], [ -122.228479, 37.800765 ], [ -122.216463, 37.798120 ], [ -122.215776, 37.797848 ], [ -122.213030, 37.797238 ], [ -122.210026, 37.796221 ], [ -122.208652, 37.795475 ], [ -122.206507, 37.794525 ], [ -122.204876, 37.793508 ], [ -122.201357, 37.789845 ], [ -122.200241, 37.788895 ], [ -122.198524, 37.787946 ], [ -122.193117, 37.785368 ], [ -122.190199, 37.784486 ], [ -122.188482, 37.784215 ], [ -122.185650, 37.784011 ], [ -122.179556, 37.783876 ], [ -122.178268, 37.783604 ], [ -122.173719, 37.780959 ], [ -122.170029, 37.778992 ], [ -122.167711, 37.777838 ], [ -122.165651, 37.777024 ], [ -122.163248, 37.775871 ], [ -122.159214, 37.773836 ], [ -122.157497, 37.772750 ], [ -122.155695, 37.771122 ], [ -122.154493, 37.769629 ], [ -122.152348, 37.766101 ], [ -122.150459, 37.763794 ], [ -122.148914, 37.761487 ], [ -122.147970, 37.759519 ], [ -122.147970, 37.757959 ], [ -122.148571, 37.756669 ], [ -122.150974, 37.754294 ], [ -122.151403, 37.753751 ], [ -122.151833, 37.752869 ], [ -122.151918, 37.751172 ], [ -122.151661, 37.750222 ], [ -122.149687, 37.746218 ], [ -122.148829, 37.744996 ], [ -122.148142, 37.744318 ], [ -122.146597, 37.743232 ], [ -122.145567, 37.742349 ], [ -122.143936, 37.740178 ], [ -122.141361, 37.738006 ], [ -122.140675, 37.737191 ], [ -122.140331, 37.736444 ], [ -122.139130, 37.731285 ], [ -122.138529, 37.729520 ], [ -122.138014, 37.726262 ], [ -122.137671, 37.725040 ], [ -122.137156, 37.723954 ], [ -122.134323, 37.720220 ], [ -122.133379, 37.718590 ], [ -122.131662, 37.714992 ], [ -122.130203, 37.713159 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "first", "FULLNAME": "Macarthur", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -122.241526, 37.807275 ], [ -122.241440, 37.807071 ], [ -122.241011, 37.806868 ], [ -122.239552, 37.806732 ], [ -122.238436, 37.806054 ], [ -122.237234, 37.805647 ] ] } } , diff --git a/tests/knox/out/-zg.json b/tests/knox/out/-zg.json index ddb5248b5..f0b0c06f6 100644 --- a/tests/knox/out/-zg.json +++ b/tests/knox/out/-zg.json @@ -18,23 +18,23 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , @@ -42,24 +42,20 @@ , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.451172, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.363281, 38.685510 ] ] } } @@ -67,6 +63,10 @@ { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } ] } ] } , @@ -76,12 +76,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.754083 ], [ -87.495117, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.685510 ] ] } } @@ -92,11 +90,13 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.754083 ], [ -87.495117, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.651198 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.651198 ] ] } } , @@ -104,28 +104,28 @@ , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } @@ -140,41 +140,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.702659 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.616870 ], [ -87.539062, 38.634036 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } , @@ -184,44 +184,44 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.473145, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.473145, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.297363, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } @@ -236,12 +236,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.440186, 38.822591 ], [ -87.440186, 38.899583 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.429199, 38.865375 ], [ -87.440186, 38.899583 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.711233 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.711233 ], [ -87.495117, 38.694085 ] ] } } @@ -252,17 +250,19 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.440186, 38.814031 ], [ -87.440186, 38.899583 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.659778 ], [ -87.495117, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ], [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.616870 ], [ -87.528076, 38.625454 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.506104, 38.659778 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ], [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.676933 ] ] } } , @@ -274,30 +274,26 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.685510 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.506104, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.668356 ], [ -87.319336, 38.659778 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.330322, 38.668356 ] ] } } @@ -306,12 +302,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.297363, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.642618 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.642618 ] ] } } @@ -326,12 +326,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.608286 ], [ -87.528076, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.758367 ], [ -87.434692, 38.865375 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.706946 ], [ -87.500610, 38.706946 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.706946 ], [ -87.500610, 38.706946 ], [ -87.495117, 38.694085 ] ] } } @@ -342,17 +340,19 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.659778 ], [ -87.489624, 38.672645 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.489624, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.608286 ], [ -87.528076, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.533569, 38.621162 ], [ -87.533569, 38.629745 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.511597, 38.659778 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.489624, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.489624, 38.676933 ] ] } } , @@ -364,34 +364,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.489624, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.489624, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.676933 ], [ -87.456665, 38.672645 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.676933 ], [ -87.456665, 38.672645 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.489624, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.478638, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.672645 ], [ -87.478638, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.511597, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.412720, 38.681222 ], [ -87.456665, 38.672645 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.664067 ], [ -87.319336, 38.659778 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.668356 ] ] } } @@ -400,12 +396,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.646908 ], [ -87.297363, 38.655488 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -420,41 +420,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.790486 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.816171 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.754083 ], [ -87.484131, 38.732661 ], [ -87.484131, 38.700516 ], [ -87.492371, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.500610, 38.704803 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.500610, 38.704803 ], [ -87.492371, 38.694085 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.497864, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.691941 ], [ -87.492371, 38.694085 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.497864, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.754083 ], [ -87.484131, 38.732661 ], [ -87.484131, 38.700516 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.492371, 38.694085 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.691941 ], [ -87.492371, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.687654 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.687654 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.508850, 38.661922 ], [ -87.492371, 38.674789 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.644763 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.685510 ], [ -87.492371, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.619016 ], [ -87.533569, 38.629745 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.644763 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.685510 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.486877, 38.679078 ] ] } } , @@ -466,34 +466,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.679078 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.683366 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.489624, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.681222 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.486877, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.407227, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.486877, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.407227, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.489624, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.679078 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.679078 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.681222 ], [ -87.492371, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.683366 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.470398, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.453918, 38.674789 ], [ -87.409973, 38.679078 ], [ -87.335815, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.453918, 38.674789 ], [ -87.409973, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.409973, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.664067 ], [ -87.316589, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.668356 ] ] } } @@ -502,12 +498,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.649053 ], [ -87.297363, 38.655488 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.280884, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -522,41 +522,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.701588 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.647981 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.816171 ], [ -87.433319, 38.866444 ], [ -87.434692, 38.871790 ], [ -87.440186, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.701588 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.496490, 38.693013 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.693013 ], [ -87.493744, 38.695157 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.496490, 38.693013 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.701588 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693013 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693013 ], [ -87.493744, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.508850, 38.661922 ], [ -87.492371, 38.674789 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.525330, 38.650126 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.679078 ], [ -87.489624, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.647981 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.534943, 38.620089 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.525607 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.525330, 38.650126 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.679078 ], [ -87.489624, 38.685510 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.678006 ] ] } } , @@ -568,34 +568,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.680150 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678006 ], [ -87.475891, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.368774, 38.674789 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678006 ], [ -87.475891, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.368774, 38.674789 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.680150 ], [ -87.490997, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.488251, 38.678006 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.488251, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480011, 38.675861 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480011, 38.675861 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.334442, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.525607 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.334442, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.334442, 38.668356 ], [ -87.371521, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.673717 ], [ -87.473145, 38.674789 ], [ -87.481384, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.293243, 38.651198 ], [ -87.324829, 38.666212 ], [ -87.334442, 38.668356 ] ] } } @@ -604,12 +600,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.647981 ], [ -87.298737, 38.656561 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.279510, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -624,47 +624,47 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.777105 ], [ -87.462845, 38.792092 ], [ -87.447052, 38.814031 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609896 ], [ -87.532883, 38.624381 ], [ -87.529449, 38.644227 ], [ -87.527390, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.644763 ], [ -87.527390, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.465591, 38.778176 ], [ -87.462845, 38.792092 ], [ -87.447052, 38.814031 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.722483 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694621 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707482 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.706410 ], [ -87.496490, 38.702123 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.706946 ], [ -87.508850, 38.707482 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693013 ], [ -87.496490, 38.693549 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.497177, 38.693013 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692477 ], [ -87.493744, 38.694621 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.497177, 38.693013 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.722483 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.493057, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692477 ], [ -87.493744, 38.694621 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490311, 38.687654 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490311, 38.687654 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.491684, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645299 ], [ -87.526016, 38.650662 ], [ -87.492371, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.493744, 38.694621 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609896 ], [ -87.532883, 38.624381 ], [ -87.529449, 38.644227 ], [ -87.527390, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.624918 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.525607 ], [ -87.538376, 38.610969 ], [ -87.532883, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645299 ], [ -87.526016, 38.650662 ], [ -87.492371, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.490997, 38.687118 ], [ -87.489624, 38.681222 ], [ -87.487564, 38.678542 ] ] } } , @@ -676,34 +676,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.490311, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.679078 ], [ -87.488937, 38.683902 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680150 ], [ -87.490311, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680686 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487564, 38.678542 ], [ -87.485504, 38.676933 ], [ -87.475204, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675325 ], [ -87.412720, 38.679614 ], [ -87.408600, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487564, 38.678542 ], [ -87.485504, 38.676933 ], [ -87.475204, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675325 ], [ -87.412720, 38.679614 ], [ -87.408600, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680150 ], [ -87.490311, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680686 ], [ -87.493057, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.679078 ], [ -87.488937, 38.683902 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.486877, 38.676933 ], [ -87.480011, 38.675861 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674789 ], [ -87.480011, 38.675861 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.370834, 38.675861 ], [ -87.335129, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.525607 ], [ -87.538376, 38.610969 ], [ -87.532883, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.644763 ], [ -87.527390, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.370834, 38.675861 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.370834, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679614 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473145, 38.674789 ], [ -87.481384, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324142, 38.665139 ], [ -87.317276, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.285690, 38.648517 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.335129, 38.668356 ] ] } } @@ -712,12 +708,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285004, 38.650662 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656024 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.267151, 38.645836 ], [ -87.279510, 38.647445 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.266464, 38.645836 ], [ -87.274704, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.266464, 38.645836 ], [ -87.274704, 38.646372 ] ] } } @@ -748,47 +748,47 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703731 ], [ -87.484131, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776837 ], [ -87.462845, 38.792092 ], [ -87.447395, 38.813764 ], [ -87.444649, 38.822591 ], [ -87.439156, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526413 ], [ -87.538719, 38.609896 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.527390, 38.648249 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529793, 38.644495 ], [ -87.527733, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.465935, 38.778176 ], [ -87.463875, 38.788881 ], [ -87.462845, 38.792092 ], [ -87.447395, 38.813764 ], [ -87.444649, 38.822591 ], [ -87.439156, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.754886 ], [ -87.482758, 38.734536 ], [ -87.484131, 38.722751 ], [ -87.483788, 38.701856 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707482 ], [ -87.509193, 38.707750 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496490, 38.702123 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.501984, 38.705874 ], [ -87.499237, 38.704267 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693281 ], [ -87.496490, 38.693281 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.496834, 38.693281 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692745 ], [ -87.493744, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.496834, 38.693281 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.754886 ], [ -87.482758, 38.734536 ], [ -87.484131, 38.722751 ], [ -87.483788, 38.701856 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.694889 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509193, 38.661654 ], [ -87.491684, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.647981 ], [ -87.525673, 38.650394 ], [ -87.503357, 38.665944 ], [ -87.492371, 38.674521 ], [ -87.490311, 38.678810 ], [ -87.490311, 38.684974 ], [ -87.490654, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526413 ], [ -87.538719, 38.609896 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.527390, 38.648249 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619821 ], [ -87.533569, 38.624918 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.525876 ], [ -87.538376, 38.610969 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.649858 ], [ -87.509537, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.647981 ], [ -87.525673, 38.650394 ], [ -87.503357, 38.665944 ], [ -87.492371, 38.674521 ], [ -87.490311, 38.678810 ], [ -87.490311, 38.684974 ], [ -87.490654, 38.687386 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.687386 ], [ -87.489967, 38.681222 ], [ -87.487907, 38.678542 ] ] } } , @@ -800,48 +800,48 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674521 ], [ -87.490311, 38.677201 ], [ -87.487907, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.678810 ], [ -87.487564, 38.681222 ], [ -87.488937, 38.684170 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484474, 38.678542 ], [ -87.486534, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686046 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475204, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.369118, 38.675057 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475204, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.369118, 38.675057 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484474, 38.678542 ], [ -87.486534, 38.680418 ], [ -87.490654, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.487907, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.487907, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686046 ], [ -87.493401, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.678810 ], [ -87.487564, 38.681222 ], [ -87.488937, 38.684170 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676129 ], [ -87.486534, 38.676665 ], [ -87.484131, 38.676665 ], [ -87.480354, 38.676129 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674789 ], [ -87.475204, 38.675057 ], [ -87.480354, 38.676129 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.476578, 38.675861 ], [ -87.473145, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427483, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675593 ], [ -87.335129, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.525876 ], [ -87.538376, 38.610969 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.649858 ], [ -87.509537, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529793, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.476578, 38.675861 ], [ -87.473145, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427483, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675593 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.371178, 38.675593 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427483, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473145, 38.675057 ], [ -87.476578, 38.675861 ], [ -87.481384, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324142, 38.665139 ], [ -87.317276, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.285690, 38.648249 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.285690, 38.648249 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294273, 38.653075 ], [ -87.298737, 38.656292 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648249 ], [ -87.285347, 38.650930 ], [ -87.294273, 38.653075 ], [ -87.298737, 38.656292 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.267151, 38.645568 ], [ -87.271614, 38.645836 ], [ -87.279510, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266464, 38.645568 ], [ -87.275047, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266464, 38.645568 ], [ -87.275047, 38.646372 ] ] } } @@ -872,49 +872,49 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698238 ], [ -87.484989, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483616, 38.703731 ], [ -87.484303, 38.722617 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469196, 38.768941 ], [ -87.466278, 38.776837 ], [ -87.465248, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.448940, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446022, 38.816840 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538376, 38.525070 ], [ -87.538033, 38.526547 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611908 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646104 ], [ -87.527561, 38.648249 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529621, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.472973, 38.759438 ], [ -87.469196, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.448940, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446022, 38.816840 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734536 ], [ -87.484303, 38.722617 ], [ -87.483616, 38.703731 ], [ -87.483959, 38.701856 ], [ -87.484989, 38.699980 ], [ -87.486877, 38.698238 ], [ -87.493572, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707348 ], [ -87.509022, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498722, 38.704267 ], [ -87.496662, 38.701989 ], [ -87.495117, 38.699712 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707214 ], [ -87.509022, 38.707616 ], [ -87.505417, 38.707080 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704133 ], [ -87.496490, 38.701454 ], [ -87.495461, 38.699712 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496490, 38.693415 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493744, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692611 ], [ -87.493744, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734536 ], [ -87.484303, 38.722617 ], [ -87.483616, 38.703731 ], [ -87.483959, 38.701856 ], [ -87.484989, 38.699980 ], [ -87.486877, 38.698238 ], [ -87.493572, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493229, 38.694889 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692611 ], [ -87.493744, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529449, 38.645433 ], [ -87.528076, 38.648115 ], [ -87.525673, 38.650394 ], [ -87.515888, 38.657633 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674521 ], [ -87.490654, 38.677604 ], [ -87.490139, 38.678944 ], [ -87.490311, 38.684840 ], [ -87.490654, 38.687252 ], [ -87.493572, 38.694755 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538376, 38.525070 ], [ -87.538033, 38.526547 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611908 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646104 ], [ -87.527561, 38.648249 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.529367 ], [ -87.538719, 38.599969 ], [ -87.538719, 38.609091 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648651 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529449, 38.645433 ], [ -87.528076, 38.648115 ], [ -87.525673, 38.650394 ], [ -87.515888, 38.657633 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674521 ], [ -87.490654, 38.677604 ], [ -87.490139, 38.678944 ], [ -87.490311, 38.684840 ], [ -87.490654, 38.687252 ], [ -87.493572, 38.694755 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.490654, 38.687252 ], [ -87.489796, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487736, 38.678542 ] ] } } , @@ -926,34 +926,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490311, 38.677335 ], [ -87.489109, 38.678006 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.489109, 38.676263 ], [ -87.488251, 38.677469 ], [ -87.487736, 38.678810 ], [ -87.487564, 38.681088 ], [ -87.488937, 38.684170 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484303, 38.678542 ], [ -87.486706, 38.680284 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487049, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.456837, 38.673851 ], [ -87.427998, 38.675593 ], [ -87.425251, 38.675995 ], [ -87.412548, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.335300, 38.668222 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.456837, 38.673851 ], [ -87.427998, 38.675593 ], [ -87.425251, 38.675995 ], [ -87.412548, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.335300, 38.668222 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484303, 38.678542 ], [ -87.486706, 38.680284 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.486019, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.486019, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487049, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493229, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.489109, 38.676263 ], [ -87.488251, 38.677469 ], [ -87.487736, 38.678810 ], [ -87.487564, 38.681088 ], [ -87.488937, 38.684170 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.488937, 38.675995 ], [ -87.486534, 38.676665 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674655 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476578, 38.675727 ], [ -87.473145, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676263 ], [ -87.412720, 38.679882 ], [ -87.409115, 38.680150 ], [ -87.395725, 38.678408 ], [ -87.371178, 38.675593 ], [ -87.334957, 38.668490 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.529367 ], [ -87.538719, 38.599969 ], [ -87.538719, 38.609091 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648651 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529621, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476578, 38.675727 ], [ -87.473145, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676263 ], [ -87.412720, 38.679882 ], [ -87.409115, 38.680150 ], [ -87.395725, 38.678408 ], [ -87.371178, 38.675593 ], [ -87.334957, 38.668490 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.334957, 38.668490 ], [ -87.371178, 38.675593 ], [ -87.395725, 38.678408 ], [ -87.409115, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676263 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473145, 38.675057 ], [ -87.476578, 38.675727 ], [ -87.481556, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665005 ], [ -87.317276, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646372 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649321 ], [ -87.293415, 38.650662 ], [ -87.325344, 38.665810 ], [ -87.329292, 38.667150 ], [ -87.334957, 38.668490 ] ] } } @@ -962,12 +958,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648383 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650796 ], [ -87.292042, 38.652271 ], [ -87.294273, 38.653075 ], [ -87.296162, 38.654282 ], [ -87.298737, 38.656158 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279510, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266293, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274876, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266293, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274876, 38.646372 ] ] } } @@ -994,39 +994,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.560778, 38.509759 ], [ -87.559834, 38.511438 ], [ -87.558203, 38.513318 ], [ -87.556486, 38.514594 ], [ -87.554255, 38.515736 ], [ -87.541895, 38.521444 ], [ -87.540436, 38.522518 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538118, 38.550246 ], [ -87.538204, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.560778, 38.509759 ], [ -87.559834, 38.511438 ], [ -87.558203, 38.513318 ], [ -87.556486, 38.514594 ], [ -87.554255, 38.515736 ], [ -87.541895, 38.521444 ], [ -87.540436, 38.522518 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538118, 38.550246 ], [ -87.538204, 38.553535 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.534084, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533484, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542753, 38.520974 ], [ -87.541466, 38.521780 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538033, 38.548165 ], [ -87.538204, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542753, 38.520974 ], [ -87.541466, 38.521780 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538033, 38.548165 ], [ -87.538204, 38.553535 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } ] } ] } , @@ -1034,49 +1034,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.488165, 38.697501 ], [ -87.486792, 38.698305 ], [ -87.486019, 38.698908 ], [ -87.485075, 38.699913 ], [ -87.484045, 38.701588 ], [ -87.483788, 38.702458 ], [ -87.483616, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482672, 38.734000 ], [ -87.481985, 38.736879 ], [ -87.469196, 38.768941 ], [ -87.466278, 38.776904 ], [ -87.465248, 38.780651 ], [ -87.463789, 38.789683 ], [ -87.462931, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813830 ], [ -87.446108, 38.816907 ], [ -87.444563, 38.822591 ], [ -87.443275, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528849, 38.646104 ], [ -87.527561, 38.648316 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.527647, 38.648584 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.472973, 38.759505 ], [ -87.469196, 38.768941 ], [ -87.465849, 38.778242 ], [ -87.465248, 38.780651 ], [ -87.463961, 38.788947 ], [ -87.463531, 38.790687 ], [ -87.462931, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813830 ], [ -87.446108, 38.816907 ], [ -87.444563, 38.822591 ], [ -87.443275, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474775, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483616, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484388, 38.700851 ], [ -87.485075, 38.699913 ], [ -87.486019, 38.698908 ], [ -87.486792, 38.698305 ], [ -87.488165, 38.697501 ], [ -87.493658, 38.694889 ], [ -87.493658, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707415 ], [ -87.510824, 38.707884 ], [ -87.509022, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503786, 38.706946 ], [ -87.502327, 38.706343 ], [ -87.500610, 38.705473 ], [ -87.498808, 38.704200 ], [ -87.497435, 38.702994 ], [ -87.496576, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707147 ], [ -87.510996, 38.707616 ], [ -87.509022, 38.707616 ], [ -87.506618, 38.707348 ], [ -87.505331, 38.707080 ], [ -87.503014, 38.706343 ], [ -87.502069, 38.705941 ], [ -87.500782, 38.705272 ], [ -87.499151, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495461, 38.699645 ], [ -87.493658, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693214 ], [ -87.496576, 38.693348 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.497005, 38.693214 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493658, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493658, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474775, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483616, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484388, 38.700851 ], [ -87.485075, 38.699913 ], [ -87.486019, 38.698908 ], [ -87.486792, 38.698305 ], [ -87.488165, 38.697501 ], [ -87.493658, 38.694889 ], [ -87.493658, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.497005, 38.693214 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493658, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493315, 38.694956 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493658, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509279, 38.661721 ], [ -87.503443, 38.665675 ], [ -87.491856, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525673, 38.650394 ], [ -87.516575, 38.657097 ], [ -87.503271, 38.666011 ], [ -87.493744, 38.673248 ], [ -87.492456, 38.674588 ], [ -87.490568, 38.677604 ], [ -87.490139, 38.679346 ], [ -87.490225, 38.684840 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689128 ], [ -87.493658, 38.694755 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528849, 38.646104 ], [ -87.527561, 38.648316 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.534084, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533484, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.591919 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529192, 38.645366 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648718 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525673, 38.650394 ], [ -87.516575, 38.657097 ], [ -87.503271, 38.666011 ], [ -87.493744, 38.673248 ], [ -87.492456, 38.674588 ], [ -87.490568, 38.677604 ], [ -87.490139, 38.679346 ], [ -87.490225, 38.684840 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689128 ], [ -87.493658, 38.694755 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.490654, 38.687252 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682361 ], [ -87.489882, 38.681356 ], [ -87.489023, 38.679882 ], [ -87.487736, 38.678542 ] ] } } , @@ -1088,34 +1088,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492456, 38.674588 ], [ -87.490997, 38.676665 ], [ -87.490311, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.490139, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677469 ], [ -87.487650, 38.678810 ], [ -87.487478, 38.679681 ], [ -87.487564, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.488937, 38.684103 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486620, 38.680351 ], [ -87.487564, 38.681758 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.488937, 38.684103 ], [ -87.489882, 38.686180 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.486448, 38.677738 ], [ -87.485161, 38.677201 ], [ -87.475290, 38.674990 ], [ -87.473917, 38.674856 ], [ -87.460871, 38.673985 ], [ -87.456923, 38.673851 ], [ -87.427998, 38.675526 ], [ -87.425165, 38.676062 ], [ -87.412548, 38.679681 ], [ -87.410660, 38.679882 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374697, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.356758, 38.672645 ], [ -87.335215, 38.668222 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.486448, 38.677738 ], [ -87.485161, 38.677201 ], [ -87.475290, 38.674990 ], [ -87.473917, 38.674856 ], [ -87.460871, 38.673985 ], [ -87.456923, 38.673851 ], [ -87.427998, 38.675526 ], [ -87.425165, 38.676062 ], [ -87.412548, 38.679681 ], [ -87.410660, 38.679882 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374697, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.356758, 38.672645 ], [ -87.335215, 38.668222 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486620, 38.680351 ], [ -87.487564, 38.681758 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484732, 38.678542 ], [ -87.486105, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484732, 38.678542 ], [ -87.486105, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.488937, 38.684103 ], [ -87.489882, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.490139, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677469 ], [ -87.487650, 38.678810 ], [ -87.487478, 38.679681 ], [ -87.487564, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.488937, 38.684103 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.488937, 38.675995 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676665 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480268, 38.676062 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674655 ], [ -87.475290, 38.674990 ], [ -87.480268, 38.676062 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476664, 38.675727 ], [ -87.475376, 38.675392 ], [ -87.473230, 38.675057 ], [ -87.460871, 38.674186 ], [ -87.458639, 38.674119 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675794 ], [ -87.424994, 38.676263 ], [ -87.412634, 38.679882 ], [ -87.410746, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374182, 38.676129 ], [ -87.371092, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.591919 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529192, 38.645366 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648718 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.527647, 38.648584 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476664, 38.675727 ], [ -87.475376, 38.675392 ], [ -87.473230, 38.675057 ], [ -87.460871, 38.674186 ], [ -87.458639, 38.674119 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675794 ], [ -87.424994, 38.676263 ], [ -87.412634, 38.679882 ], [ -87.410746, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374182, 38.676129 ], [ -87.371092, 38.675660 ], [ -87.335043, 38.668490 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371092, 38.675660 ], [ -87.374182, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410746, 38.680150 ], [ -87.412634, 38.679882 ], [ -87.424994, 38.676263 ], [ -87.427654, 38.675794 ], [ -87.455292, 38.674119 ], [ -87.458639, 38.674119 ], [ -87.460871, 38.674186 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675392 ], [ -87.476664, 38.675727 ], [ -87.481556, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646439 ], [ -87.283545, 38.647847 ], [ -87.285776, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293329, 38.650729 ], [ -87.297535, 38.652606 ], [ -87.325344, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } @@ -1124,12 +1120,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648383 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650796 ], [ -87.286892, 38.651265 ], [ -87.292042, 38.652271 ], [ -87.294273, 38.653142 ], [ -87.296162, 38.654215 ], [ -87.298737, 38.656225 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.265005, 38.645702 ], [ -87.267065, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.279596, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.266378, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.274876, 38.646439 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.266378, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.274876, 38.646439 ] ] } } diff --git a/tests/knox/out/-zg_-P.json b/tests/knox/out/-zg_-P.json index e2216c510..95aae976b 100644 --- a/tests/knox/out/-zg_-P.json +++ b/tests/knox/out/-zg_-P.json @@ -18,23 +18,23 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.539062, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , @@ -42,24 +42,20 @@ , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.451172, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.451172, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.479395 ], [ -87.539062, 38.616870 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.451172, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.363281, 38.685510 ] ] } } @@ -67,6 +63,10 @@ { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.363281, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.616870 ], [ -87.275391, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.363281, 38.685510 ], [ -87.275391, 38.616870 ] ] } } ] } ] } , @@ -76,12 +76,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.754083 ], [ -87.451172, 38.891033 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.754083 ], [ -87.495117, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.719805 ], [ -87.495117, 38.685510 ] ] } } @@ -92,11 +90,13 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.451172, 38.891033 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.754083 ], [ -87.495117, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.651198 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.651198 ] ] } } , @@ -104,28 +104,28 @@ , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.451172, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.495117, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.583008, 38.479395 ], [ -87.539062, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.319336, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.231445, 38.651198 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.231445, 38.651198 ], [ -87.275391, 38.651198 ] ] } } @@ -140,41 +140,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.702659 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.702659 ], [ -87.495117, 38.702659 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.429199, 38.908133 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.668356 ], [ -87.495117, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.495117, 38.702659 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.616870 ], [ -87.539062, 38.634036 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.702659 ], [ -87.495117, 38.685510 ] ] } } , @@ -184,44 +184,44 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.702659 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.495117, 38.702659 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.495117, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.668356 ], [ -87.473145, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.341309, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.496594 ], [ -87.517090, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.685510 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.473145, 38.685510 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.341309, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.297363, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.341309, 38.668356 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.651198 ], [ -87.253418, 38.651198 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.651198 ], [ -87.275391, 38.651198 ] ] } } @@ -236,12 +236,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.440186, 38.822591 ], [ -87.440186, 38.899583 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.762650 ], [ -87.429199, 38.865375 ], [ -87.440186, 38.899583 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.711233 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.711233 ], [ -87.495117, 38.694085 ] ] } } @@ -252,17 +250,19 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.440186, 38.814031 ], [ -87.440186, 38.899583 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.495117, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.506104, 38.659778 ], [ -87.495117, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ], [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.539062, 38.616870 ], [ -87.528076, 38.625454 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.506104, 38.659778 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ], [ -87.495117, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.676933 ] ] } } , @@ -274,30 +274,26 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.685510 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.676933 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.539062, 38.616870 ], [ -87.506104, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.561035, 38.487995 ], [ -87.539062, 38.530979 ], [ -87.528076, 38.651198 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.330322, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.319336, 38.668356 ], [ -87.319336, 38.659778 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.330322, 38.668356 ] ] } } @@ -306,12 +302,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.286377, 38.651198 ], [ -87.297363, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.330322, 38.668356 ], [ -87.275391, 38.642618 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.651198 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.642618 ], [ -87.253418, 38.642618 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.642618 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.642618 ], [ -87.275391, 38.642618 ] ] } } @@ -326,12 +326,10 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.608286 ], [ -87.528076, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.758367 ], [ -87.434692, 38.865375 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.706946 ], [ -87.500610, 38.706946 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.517090, 38.706946 ], [ -87.500610, 38.706946 ], [ -87.495117, 38.694085 ] ] } } @@ -342,17 +340,19 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.434692, 38.869652 ], [ -87.440186, 38.886757 ], [ -87.440186, 38.903858 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.754083 ], [ -87.484131, 38.702659 ], [ -87.495117, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.685510 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.511597, 38.659778 ], [ -87.489624, 38.672645 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.489624, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.608286 ], [ -87.528076, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.533569, 38.621162 ], [ -87.533569, 38.629745 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.511597, 38.659778 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.489624, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.694085 ], [ -87.489624, 38.676933 ] ] } } , @@ -364,34 +364,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.495117, 38.672645 ], [ -87.489624, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.489624, 38.685510 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.685510 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.676933 ], [ -87.456665, 38.672645 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.676933 ], [ -87.456665, 38.672645 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.685510 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.489624, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.495117, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.489624, 38.685510 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.672645 ], [ -87.478638, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.672645 ], [ -87.478638, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ], [ -87.511597, 38.659778 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.566528, 38.492294 ], [ -87.561035, 38.513788 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.612578 ], [ -87.528076, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.484131, 38.676933 ], [ -87.407227, 38.681222 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.412720, 38.681222 ], [ -87.456665, 38.672645 ], [ -87.484131, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.664067 ], [ -87.319336, 38.659778 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.335815, 38.668356 ] ] } } @@ -400,12 +396,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.646908 ], [ -87.297363, 38.655488 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.280884, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.253418, 38.646908 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.253418, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -420,41 +420,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.790486 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.760509 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.816171 ], [ -87.434692, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.754083 ], [ -87.484131, 38.732661 ], [ -87.484131, 38.700516 ], [ -87.492371, 38.694085 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.500610, 38.704803 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.500610, 38.704803 ], [ -87.492371, 38.694085 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.497864, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.484131, 38.702659 ], [ -87.481384, 38.736946 ], [ -87.462158, 38.792627 ], [ -87.445679, 38.818311 ], [ -87.431946, 38.867513 ], [ -87.442932, 38.886757 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.691941 ], [ -87.492371, 38.694085 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.497864, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.475891, 38.754083 ], [ -87.484131, 38.732661 ], [ -87.484131, 38.700516 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497864, 38.694085 ], [ -87.492371, 38.694085 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.691941 ], [ -87.492371, 38.694085 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.687654 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.489624, 38.687654 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.508850, 38.661922 ], [ -87.492371, 38.674789 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.644763 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.685510 ], [ -87.492371, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.536316, 38.619016 ], [ -87.533569, 38.629745 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.644763 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.685510 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.694085 ], [ -87.486877, 38.679078 ] ] } } , @@ -466,34 +466,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.679078 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.683366 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.489624, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.681222 ], [ -87.492371, 38.694085 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.486877, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.407227, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.486877, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.407227, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.489624, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.679078 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.679078 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.486877, 38.681222 ], [ -87.492371, 38.694085 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.489624, 38.683366 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.470398, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.453918, 38.674789 ], [ -87.409973, 38.679078 ], [ -87.335815, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490144 ], [ -87.558289, 38.511639 ], [ -87.539062, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.676933 ], [ -87.453918, 38.674789 ], [ -87.409973, 38.679078 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.409973, 38.679078 ], [ -87.456665, 38.674789 ], [ -87.481384, 38.676933 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.664067 ], [ -87.316589, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.294617, 38.651198 ], [ -87.335815, 38.668356 ] ] } } @@ -502,12 +498,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.649053 ], [ -87.297363, 38.655488 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.280884, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.250671, 38.646908 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.250671, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -522,41 +522,41 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.484131, 38.701588 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.777640 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.818311 ], [ -87.433319, 38.868583 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.647981 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.528076, 38.649053 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.463531, 38.792627 ], [ -87.447052, 38.816171 ], [ -87.433319, 38.866444 ], [ -87.434692, 38.871790 ], [ -87.440186, 38.880343 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.701588 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519836, 38.706946 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.496490, 38.693013 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.485504, 38.698372 ], [ -87.484131, 38.702659 ], [ -87.484131, 38.721948 ], [ -87.482758, 38.735875 ], [ -87.466278, 38.776570 ], [ -87.463531, 38.791557 ], [ -87.445679, 38.817241 ], [ -87.433319, 38.867513 ], [ -87.433319, 38.872859 ], [ -87.442932, 38.885688 ], [ -87.437439, 38.901721 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.693013 ], [ -87.493744, 38.695157 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.496490, 38.693013 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.701588 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693013 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693013 ], [ -87.493744, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.693013 ], [ -87.493744, 38.695157 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490997, 38.687654 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.508850, 38.661922 ], [ -87.492371, 38.674789 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.525330, 38.650126 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.679078 ], [ -87.489624, 38.685510 ], [ -87.493744, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.647981 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.534943, 38.620089 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.525607 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645836 ], [ -87.525330, 38.650126 ], [ -87.492371, 38.674789 ], [ -87.489624, 38.679078 ], [ -87.489624, 38.685510 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.695157 ], [ -87.488251, 38.678006 ] ] } } , @@ -568,34 +568,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.680150 ], [ -87.490997, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.493744, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678006 ], [ -87.475891, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.368774, 38.674789 ], [ -87.335815, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.488251, 38.678006 ], [ -87.475891, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.368774, 38.674789 ], [ -87.335815, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.680150 ], [ -87.490997, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.488251, 38.678006 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.488251, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.486877, 38.681222 ], [ -87.493744, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.488251, 38.679078 ], [ -87.489624, 38.684438 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.486877, 38.676933 ], [ -87.480011, 38.675861 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471771, 38.674789 ], [ -87.480011, 38.675861 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.334442, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.521310 ], [ -87.537689, 38.525607 ], [ -87.539062, 38.610432 ], [ -87.533569, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.508850, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.491219 ], [ -87.559662, 38.511639 ], [ -87.541809, 38.522384 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.528076, 38.649053 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.678006 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.673717 ], [ -87.427826, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.371521, 38.675861 ], [ -87.334442, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.334442, 38.668356 ], [ -87.371521, 38.675861 ], [ -87.408600, 38.680150 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.673717 ], [ -87.473145, 38.674789 ], [ -87.481384, 38.678006 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324829, 38.665139 ], [ -87.317963, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.646908 ], [ -87.293243, 38.651198 ], [ -87.324829, 38.666212 ], [ -87.334442, 38.668356 ] ] } } @@ -604,12 +600,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.280884, 38.647981 ], [ -87.298737, 38.656561 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335815, 38.668356 ], [ -87.326202, 38.665139 ], [ -87.290497, 38.649053 ], [ -87.275391, 38.645836 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.267151, 38.645836 ], [ -87.279510, 38.646908 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275391, 38.645836 ], [ -87.252045, 38.645836 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646908 ], [ -87.275391, 38.646908 ] ] } } @@ -624,47 +624,47 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.484131, 38.722483 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.777105 ], [ -87.462845, 38.792092 ], [ -87.447052, 38.814031 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609896 ], [ -87.532883, 38.624381 ], [ -87.529449, 38.644227 ], [ -87.527390, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.644763 ], [ -87.527390, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.465591, 38.778176 ], [ -87.462845, 38.792092 ], [ -87.447052, 38.814031 ], [ -87.444305, 38.822591 ], [ -87.434006, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.722483 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694621 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707482 ], [ -87.508850, 38.708018 ], [ -87.501984, 38.706410 ], [ -87.496490, 38.702123 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.706946 ], [ -87.508850, 38.707482 ], [ -87.501984, 38.705874 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497177, 38.693013 ], [ -87.496490, 38.693549 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.497177, 38.693013 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.695157 ], [ -87.486877, 38.698372 ], [ -87.483444, 38.702123 ], [ -87.484131, 38.722483 ], [ -87.481384, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.447739, 38.812961 ], [ -87.444305, 38.822591 ], [ -87.433319, 38.865375 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692477 ], [ -87.493744, 38.694621 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.497177, 38.693013 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474518, 38.755154 ], [ -87.482758, 38.733732 ], [ -87.484131, 38.722483 ], [ -87.484131, 38.702123 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.493057, 38.695157 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693549 ], [ -87.493744, 38.694621 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493057, 38.692477 ], [ -87.493744, 38.694621 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490311, 38.687654 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490311, 38.687654 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509537, 38.661922 ], [ -87.491684, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645299 ], [ -87.526016, 38.650662 ], [ -87.492371, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.493744, 38.694621 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.537689, 38.526682 ], [ -87.539062, 38.609896 ], [ -87.532883, 38.624381 ], [ -87.529449, 38.644227 ], [ -87.527390, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.620089 ], [ -87.533569, 38.624918 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.525607 ], [ -87.538376, 38.610969 ], [ -87.532883, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.645299 ], [ -87.526016, 38.650662 ], [ -87.492371, 38.674789 ], [ -87.490311, 38.679078 ], [ -87.490311, 38.684974 ], [ -87.493744, 38.694621 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694621 ], [ -87.490997, 38.687118 ], [ -87.489624, 38.681222 ], [ -87.487564, 38.678542 ] ] } } , @@ -676,34 +676,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674789 ], [ -87.490311, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.679078 ], [ -87.488937, 38.683902 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680150 ], [ -87.490311, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680686 ], [ -87.493057, 38.695157 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487564, 38.678542 ], [ -87.485504, 38.676933 ], [ -87.475204, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675325 ], [ -87.412720, 38.679614 ], [ -87.408600, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487564, 38.678542 ], [ -87.485504, 38.676933 ], [ -87.475204, 38.674789 ], [ -87.456665, 38.673717 ], [ -87.427826, 38.675325 ], [ -87.412720, 38.679614 ], [ -87.408600, 38.680150 ], [ -87.369461, 38.675325 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680150 ], [ -87.490311, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.487564, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.486877, 38.680686 ], [ -87.493057, 38.695157 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.679078 ], [ -87.488937, 38.683902 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.486877, 38.676933 ], [ -87.480011, 38.675861 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674789 ], [ -87.480011, 38.675861 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.370834, 38.675861 ], [ -87.335129, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561035, 38.508415 ], [ -87.559662, 38.511639 ], [ -87.555542, 38.514863 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.525607 ], [ -87.538376, 38.610969 ], [ -87.532883, 38.624381 ], [ -87.528076, 38.646908 ], [ -87.526016, 38.650126 ], [ -87.509537, 38.661922 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563782, 38.490682 ], [ -87.561722, 38.507878 ], [ -87.560349, 38.511639 ], [ -87.556229, 38.515400 ], [ -87.541122, 38.521847 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609359 ], [ -87.533569, 38.624381 ], [ -87.529449, 38.644763 ], [ -87.527390, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.473145, 38.674789 ], [ -87.455292, 38.674253 ], [ -87.427826, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.370834, 38.675861 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.370834, 38.675861 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679614 ], [ -87.427826, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473145, 38.674789 ], [ -87.481384, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324142, 38.665139 ], [ -87.317276, 38.661922 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.285690, 38.648517 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.335129, 38.668356 ] ] } } @@ -712,12 +708,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281570, 38.648517 ], [ -87.285004, 38.650662 ], [ -87.294617, 38.653343 ], [ -87.298737, 38.656024 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665675 ], [ -87.290497, 38.649590 ], [ -87.274704, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.267151, 38.645836 ], [ -87.279510, 38.647445 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646372 ], [ -87.265091, 38.645299 ], [ -87.251358, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.266464, 38.645836 ], [ -87.274704, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.252045, 38.646372 ], [ -87.266464, 38.645836 ], [ -87.274704, 38.646372 ] ] } } @@ -748,47 +748,47 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698372 ], [ -87.484131, 38.701588 ], [ -87.483788, 38.703731 ], [ -87.484131, 38.722751 ], [ -87.482071, 38.736946 ], [ -87.466278, 38.776837 ], [ -87.462845, 38.792092 ], [ -87.447395, 38.813764 ], [ -87.444649, 38.822591 ], [ -87.439156, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526413 ], [ -87.538719, 38.609896 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.527390, 38.648249 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529793, 38.644495 ], [ -87.527733, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.473145, 38.759438 ], [ -87.465935, 38.778176 ], [ -87.463875, 38.788881 ], [ -87.462845, 38.792092 ], [ -87.447395, 38.813764 ], [ -87.444649, 38.822591 ], [ -87.439156, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.754886 ], [ -87.482758, 38.734536 ], [ -87.484131, 38.722751 ], [ -87.483788, 38.701856 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707482 ], [ -87.509193, 38.707750 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498894, 38.704267 ], [ -87.496490, 38.702123 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707214 ], [ -87.509193, 38.707750 ], [ -87.505417, 38.707214 ], [ -87.501984, 38.705874 ], [ -87.499237, 38.704267 ], [ -87.496490, 38.701588 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496834, 38.693281 ], [ -87.496490, 38.693281 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.496834, 38.693281 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493401, 38.694889 ], [ -87.486534, 38.698372 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701856 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722215 ], [ -87.481728, 38.736946 ], [ -87.466278, 38.776570 ], [ -87.462845, 38.791557 ], [ -87.461128, 38.794500 ], [ -87.447739, 38.812961 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.438812, 38.843986 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692745 ], [ -87.493744, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.496834, 38.693281 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.754886 ], [ -87.482758, 38.734536 ], [ -87.484131, 38.722751 ], [ -87.483788, 38.701856 ], [ -87.485161, 38.699980 ], [ -87.486877, 38.698372 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.493401, 38.694889 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693281 ], [ -87.493744, 38.694889 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692745 ], [ -87.493744, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490654, 38.687654 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509193, 38.661654 ], [ -87.491684, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.647981 ], [ -87.525673, 38.650394 ], [ -87.503357, 38.665944 ], [ -87.492371, 38.674521 ], [ -87.490311, 38.678810 ], [ -87.490311, 38.684974 ], [ -87.490654, 38.687386 ], [ -87.493744, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.526413 ], [ -87.538719, 38.609896 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.527390, 38.648249 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535629, 38.619821 ], [ -87.533569, 38.624918 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.525876 ], [ -87.538376, 38.610969 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.649858 ], [ -87.509537, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529449, 38.645568 ], [ -87.528076, 38.647981 ], [ -87.525673, 38.650394 ], [ -87.503357, 38.665944 ], [ -87.492371, 38.674521 ], [ -87.490311, 38.678810 ], [ -87.490311, 38.684974 ], [ -87.490654, 38.687386 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.490654, 38.687386 ], [ -87.489967, 38.681222 ], [ -87.487907, 38.678542 ] ] } } , @@ -800,48 +800,48 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492371, 38.674521 ], [ -87.490311, 38.677201 ], [ -87.487907, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.678810 ], [ -87.487564, 38.681222 ], [ -87.488937, 38.684170 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484474, 38.678542 ], [ -87.486534, 38.680418 ], [ -87.490654, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686046 ], [ -87.493401, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475204, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.369118, 38.675057 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487907, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475204, 38.675057 ], [ -87.457008, 38.673985 ], [ -87.428169, 38.675593 ], [ -87.412720, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.369118, 38.675057 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484474, 38.678542 ], [ -87.486534, 38.680418 ], [ -87.490654, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.487907, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.487907, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487221, 38.680954 ], [ -87.489967, 38.686046 ], [ -87.493401, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676397 ], [ -87.487564, 38.678810 ], [ -87.487564, 38.681222 ], [ -87.488937, 38.684170 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491684, 38.674253 ], [ -87.488937, 38.676129 ], [ -87.486534, 38.676665 ], [ -87.484131, 38.676665 ], [ -87.480354, 38.676129 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674789 ], [ -87.475204, 38.675057 ], [ -87.480354, 38.676129 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.476578, 38.675861 ], [ -87.473145, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427483, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675593 ], [ -87.335129, 38.668356 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561378, 38.508415 ], [ -87.559662, 38.511370 ], [ -87.558289, 38.513251 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521847 ], [ -87.539406, 38.523727 ], [ -87.538033, 38.525876 ], [ -87.538376, 38.610969 ], [ -87.533226, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647176 ], [ -87.526016, 38.649858 ], [ -87.509537, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490951 ], [ -87.561722, 38.507878 ], [ -87.560005, 38.511639 ], [ -87.555885, 38.515131 ], [ -87.541466, 38.522115 ], [ -87.539406, 38.523996 ], [ -87.538376, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.533569, 38.624113 ], [ -87.529793, 38.644495 ], [ -87.527733, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481384, 38.677469 ], [ -87.476578, 38.675861 ], [ -87.473145, 38.675057 ], [ -87.455292, 38.674253 ], [ -87.427483, 38.675861 ], [ -87.412720, 38.679882 ], [ -87.409286, 38.680150 ], [ -87.371178, 38.675593 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.371178, 38.675593 ], [ -87.409286, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.427483, 38.675861 ], [ -87.455292, 38.674253 ], [ -87.473145, 38.675057 ], [ -87.476578, 38.675861 ], [ -87.481384, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324142, 38.665139 ], [ -87.317276, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.285690, 38.648249 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668356 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471686635", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.275047, 38.646372 ], [ -87.285690, 38.648249 ], [ -87.293243, 38.650662 ], [ -87.325516, 38.665675 ], [ -87.329292, 38.667284 ], [ -87.335129, 38.668356 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648517 ], [ -87.285347, 38.650930 ], [ -87.294273, 38.653075 ], [ -87.298737, 38.656292 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648249 ], [ -87.285347, 38.650930 ], [ -87.294273, 38.653075 ], [ -87.298737, 38.656292 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335129, 38.668356 ], [ -87.326202, 38.665944 ], [ -87.295303, 38.651198 ], [ -87.290497, 38.649321 ], [ -87.282257, 38.647445 ], [ -87.274704, 38.646104 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.267151, 38.645568 ], [ -87.271614, 38.645836 ], [ -87.279510, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274704, 38.646104 ], [ -87.265434, 38.645568 ], [ -87.251701, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266464, 38.645568 ], [ -87.275047, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266464, 38.645568 ], [ -87.275047, 38.646372 ] ] } } @@ -872,49 +872,49 @@ , { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.486877, 38.698238 ], [ -87.484989, 38.699980 ], [ -87.484131, 38.701588 ], [ -87.483616, 38.703731 ], [ -87.484303, 38.722617 ], [ -87.482758, 38.734000 ], [ -87.482071, 38.736946 ], [ -87.469196, 38.768941 ], [ -87.466278, 38.776837 ], [ -87.465248, 38.780718 ], [ -87.463875, 38.789683 ], [ -87.463017, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.448940, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446022, 38.816840 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538376, 38.525070 ], [ -87.538033, 38.526547 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611908 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646104 ], [ -87.527561, 38.648249 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529621, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648517 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.472973, 38.759438 ], [ -87.469196, 38.768941 ], [ -87.465935, 38.778309 ], [ -87.464046, 38.789014 ], [ -87.463017, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.448940, 38.811356 ], [ -87.447395, 38.813897 ], [ -87.446022, 38.816840 ], [ -87.444649, 38.822591 ], [ -87.441902, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734536 ], [ -87.484303, 38.722617 ], [ -87.483616, 38.703731 ], [ -87.483959, 38.701856 ], [ -87.484989, 38.699980 ], [ -87.486877, 38.698238 ], [ -87.493572, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707348 ], [ -87.509022, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.502327, 38.706410 ], [ -87.498722, 38.704267 ], [ -87.496662, 38.701989 ], [ -87.495117, 38.699712 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707214 ], [ -87.509022, 38.707616 ], [ -87.505417, 38.707080 ], [ -87.502155, 38.706008 ], [ -87.499237, 38.704133 ], [ -87.496490, 38.701454 ], [ -87.495461, 38.699712 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693281 ], [ -87.496490, 38.693415 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493229, 38.694889 ], [ -87.486706, 38.698238 ], [ -87.484818, 38.699980 ], [ -87.483788, 38.701989 ], [ -87.483444, 38.704535 ], [ -87.484131, 38.722349 ], [ -87.482586, 38.733598 ], [ -87.481728, 38.736946 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776570 ], [ -87.464905, 38.780584 ], [ -87.463531, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.461300, 38.794500 ], [ -87.447567, 38.812827 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.441559, 38.833289 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493744, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692611 ], [ -87.493744, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474861, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734536 ], [ -87.484303, 38.722617 ], [ -87.483616, 38.703731 ], [ -87.483959, 38.701856 ], [ -87.484989, 38.699980 ], [ -87.486877, 38.698238 ], [ -87.493572, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493744, 38.694889 ], [ -87.497005, 38.693281 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493744, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.493229, 38.694889 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496490, 38.693415 ], [ -87.493572, 38.694755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492714, 38.692611 ], [ -87.493744, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509365, 38.661788 ], [ -87.503529, 38.665675 ], [ -87.491856, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529449, 38.645433 ], [ -87.528076, 38.648115 ], [ -87.525673, 38.650394 ], [ -87.515888, 38.657633 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674521 ], [ -87.490654, 38.677604 ], [ -87.490139, 38.678944 ], [ -87.490311, 38.684840 ], [ -87.490654, 38.687252 ], [ -87.493572, 38.694755 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538376, 38.525070 ], [ -87.538033, 38.526547 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611908 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528934, 38.646104 ], [ -87.527561, 38.648249 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533569, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.529367 ], [ -87.538719, 38.599969 ], [ -87.538719, 38.609091 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648651 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529449, 38.645433 ], [ -87.528076, 38.648115 ], [ -87.525673, 38.650394 ], [ -87.515888, 38.657633 ], [ -87.503357, 38.666078 ], [ -87.493744, 38.673315 ], [ -87.492542, 38.674521 ], [ -87.490654, 38.677604 ], [ -87.490139, 38.678944 ], [ -87.490311, 38.684840 ], [ -87.490654, 38.687252 ], [ -87.493572, 38.694755 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493572, 38.694755 ], [ -87.490654, 38.687252 ], [ -87.489796, 38.681356 ], [ -87.489109, 38.679882 ], [ -87.487736, 38.678542 ] ] } } , @@ -926,34 +926,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492542, 38.674655 ], [ -87.490311, 38.677335 ], [ -87.489109, 38.678006 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.489109, 38.676263 ], [ -87.488251, 38.677469 ], [ -87.487736, 38.678810 ], [ -87.487564, 38.681088 ], [ -87.488937, 38.684170 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484303, 38.678542 ], [ -87.486706, 38.680284 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487049, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493229, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.456837, 38.673851 ], [ -87.427998, 38.675593 ], [ -87.425251, 38.675995 ], [ -87.412548, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.335300, 38.668222 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.485161, 38.677201 ], [ -87.475376, 38.675057 ], [ -87.456837, 38.673851 ], [ -87.427998, 38.675593 ], [ -87.425251, 38.675995 ], [ -87.412548, 38.679614 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374783, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.335300, 38.668222 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484303, 38.678542 ], [ -87.486706, 38.680284 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.486019, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484818, 38.678542 ], [ -87.486019, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.485161, 38.679078 ], [ -87.487049, 38.680954 ], [ -87.489967, 38.686180 ], [ -87.493229, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.489109, 38.676263 ], [ -87.488251, 38.677469 ], [ -87.487736, 38.678810 ], [ -87.487564, 38.681088 ], [ -87.488937, 38.684170 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.488937, 38.675995 ], [ -87.486534, 38.676665 ], [ -87.484131, 38.676799 ], [ -87.480354, 38.676129 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674655 ], [ -87.475376, 38.675057 ], [ -87.480354, 38.676129 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476578, 38.675727 ], [ -87.473145, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676263 ], [ -87.412720, 38.679882 ], [ -87.409115, 38.680150 ], [ -87.395725, 38.678408 ], [ -87.371178, 38.675593 ], [ -87.334957, 38.668490 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.559834, 38.511505 ], [ -87.558117, 38.513385 ], [ -87.555542, 38.515131 ], [ -87.541466, 38.521713 ], [ -87.539406, 38.523593 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.529367 ], [ -87.538719, 38.599969 ], [ -87.538719, 38.609091 ], [ -87.538548, 38.610969 ], [ -87.533913, 38.622101 ], [ -87.533054, 38.624381 ], [ -87.529449, 38.644495 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648651 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561550, 38.507744 ], [ -87.561207, 38.509624 ], [ -87.560005, 38.511639 ], [ -87.558117, 38.513654 ], [ -87.556057, 38.515131 ], [ -87.542839, 38.521175 ], [ -87.541466, 38.522115 ], [ -87.539234, 38.524130 ], [ -87.538204, 38.526682 ], [ -87.539062, 38.609627 ], [ -87.538548, 38.612042 ], [ -87.533398, 38.624247 ], [ -87.529621, 38.644629 ], [ -87.529106, 38.646506 ], [ -87.527733, 38.648517 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476578, 38.675727 ], [ -87.473145, 38.675057 ], [ -87.460957, 38.674253 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675861 ], [ -87.425079, 38.676263 ], [ -87.412720, 38.679882 ], [ -87.409115, 38.680150 ], [ -87.395725, 38.678408 ], [ -87.371178, 38.675593 ], [ -87.334957, 38.668490 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.334957, 38.668490 ], [ -87.371178, 38.675593 ], [ -87.395725, 38.678408 ], [ -87.409115, 38.680150 ], [ -87.412720, 38.679882 ], [ -87.425079, 38.676263 ], [ -87.427654, 38.675861 ], [ -87.455292, 38.674119 ], [ -87.460957, 38.674253 ], [ -87.473145, 38.675057 ], [ -87.476578, 38.675727 ], [ -87.481556, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665005 ], [ -87.317276, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646372 ], [ -87.285862, 38.648383 ], [ -87.289467, 38.649321 ], [ -87.293415, 38.650662 ], [ -87.325344, 38.665810 ], [ -87.329292, 38.667150 ], [ -87.334957, 38.668490 ] ] } } @@ -962,12 +958,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281227, 38.648383 ], [ -87.283115, 38.649724 ], [ -87.285347, 38.650796 ], [ -87.292042, 38.652271 ], [ -87.294273, 38.653075 ], [ -87.296162, 38.654282 ], [ -87.298737, 38.656158 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335300, 38.668222 ], [ -87.329121, 38.666882 ], [ -87.326374, 38.665944 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282257, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.267151, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.279510, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251530, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266293, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274876, 38.646372 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251701, 38.646640 ], [ -87.266293, 38.645702 ], [ -87.271786, 38.645970 ], [ -87.274876, 38.646372 ] ] } } @@ -994,39 +994,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.560778, 38.509759 ], [ -87.559834, 38.511438 ], [ -87.558203, 38.513318 ], [ -87.556486, 38.514594 ], [ -87.554255, 38.515736 ], [ -87.541895, 38.521444 ], [ -87.540436, 38.522518 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538118, 38.550246 ], [ -87.538204, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.563953, 38.490816 ], [ -87.561207, 38.508415 ], [ -87.560778, 38.509759 ], [ -87.559834, 38.511438 ], [ -87.558203, 38.513318 ], [ -87.556486, 38.514594 ], [ -87.554255, 38.515736 ], [ -87.541895, 38.521444 ], [ -87.540436, 38.522518 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538118, 38.550246 ], [ -87.538204, 38.553535 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.564125, 38.490816 ], [ -87.561636, 38.507811 ], [ -87.560949, 38.510027 ], [ -87.559748, 38.511975 ], [ -87.558117, 38.513721 ], [ -87.555971, 38.515131 ], [ -87.542839, 38.521243 ], [ -87.541723, 38.521847 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.551186 ], [ -87.538548, 38.553535 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 262, "y": 392 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.534084, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533484, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.551186 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533484, 38.624113 ], [ -87.533054, 38.625655 ], [ -87.532196, 38.630282 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538118, 38.550246 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533312, 38.623509 ], [ -87.532797, 38.625454 ], [ -87.532196, 38.628740 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 263, "y": 393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542753, 38.520974 ], [ -87.541466, 38.521780 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538033, 38.548165 ], [ -87.538204, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519564 ], [ -87.542753, 38.520974 ], [ -87.541466, 38.521780 ], [ -87.539663, 38.523257 ], [ -87.539062, 38.524063 ], [ -87.538204, 38.525876 ], [ -87.537861, 38.527689 ], [ -87.538033, 38.548165 ], [ -87.538204, 38.553535 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.545929, 38.519765 ], [ -87.542496, 38.521377 ], [ -87.541380, 38.522048 ], [ -87.540092, 38.523257 ], [ -87.539062, 38.524533 ], [ -87.538462, 38.525809 ], [ -87.538118, 38.527555 ], [ -87.538376, 38.548165 ], [ -87.538548, 38.553535 ] ] } } ] } ] } , @@ -1034,49 +1034,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "LINEARID": "1104485818174", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.488165, 38.697501 ], [ -87.486792, 38.698305 ], [ -87.486019, 38.698908 ], [ -87.485075, 38.699913 ], [ -87.484045, 38.701588 ], [ -87.483788, 38.702458 ], [ -87.483616, 38.703798 ], [ -87.484303, 38.722684 ], [ -87.482672, 38.734000 ], [ -87.481985, 38.736879 ], [ -87.469196, 38.768941 ], [ -87.466278, 38.776904 ], [ -87.465248, 38.780651 ], [ -87.463789, 38.789683 ], [ -87.462931, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813830 ], [ -87.446108, 38.816907 ], [ -87.444563, 38.822591 ], [ -87.443275, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528849, 38.646104 ], [ -87.527561, 38.648316 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.527647, 38.648584 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257690581", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.472973, 38.759505 ], [ -87.469196, 38.768941 ], [ -87.465849, 38.778242 ], [ -87.465248, 38.780651 ], [ -87.463961, 38.788947 ], [ -87.463531, 38.790687 ], [ -87.462931, 38.792226 ], [ -87.461300, 38.794901 ], [ -87.449026, 38.811356 ], [ -87.447395, 38.813830 ], [ -87.446108, 38.816907 ], [ -87.444563, 38.822591 ], [ -87.443275, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474775, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483616, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484388, 38.700851 ], [ -87.485075, 38.699913 ], [ -87.486019, 38.698908 ], [ -87.486792, 38.698305 ], [ -87.488165, 38.697501 ], [ -87.493658, 38.694889 ], [ -87.493658, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257624700", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707415 ], [ -87.510824, 38.707884 ], [ -87.509022, 38.707884 ], [ -87.505760, 38.707482 ], [ -87.503786, 38.706946 ], [ -87.502327, 38.706343 ], [ -87.500610, 38.705473 ], [ -87.498808, 38.704200 ], [ -87.497435, 38.702994 ], [ -87.496576, 38.702056 ], [ -87.495203, 38.699712 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469553886", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.519150, 38.707147 ], [ -87.510996, 38.707616 ], [ -87.509022, 38.707616 ], [ -87.506618, 38.707348 ], [ -87.505331, 38.707080 ], [ -87.503014, 38.706343 ], [ -87.502069, 38.705941 ], [ -87.500782, 38.705272 ], [ -87.499151, 38.704200 ], [ -87.497778, 38.702927 ], [ -87.496576, 38.701521 ], [ -87.495461, 38.699645 ], [ -87.493658, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485838817", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.497005, 38.693214 ], [ -87.496576, 38.693348 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.497005, 38.693214 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841554", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841664", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070261", "FULLNAME": "N US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493315, 38.694956 ], [ -87.487564, 38.697702 ], [ -87.486706, 38.698238 ], [ -87.485504, 38.699176 ], [ -87.484818, 38.699980 ], [ -87.484303, 38.700784 ], [ -87.483702, 38.701922 ], [ -87.483530, 38.702793 ], [ -87.483444, 38.704602 ], [ -87.484045, 38.722282 ], [ -87.482500, 38.733532 ], [ -87.481728, 38.736879 ], [ -87.468853, 38.768941 ], [ -87.466106, 38.776503 ], [ -87.464991, 38.780651 ], [ -87.463617, 38.789282 ], [ -87.462845, 38.791557 ], [ -87.462072, 38.793229 ], [ -87.461214, 38.794500 ], [ -87.448769, 38.811088 ], [ -87.447567, 38.812827 ], [ -87.446709, 38.814566 ], [ -87.446022, 38.816171 ], [ -87.444305, 38.822591 ], [ -87.442932, 38.827940 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493658, 38.694889 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493658, 38.694889 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841552", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.474775, 38.755020 ], [ -87.481728, 38.737616 ], [ -87.482586, 38.734603 ], [ -87.484303, 38.722684 ], [ -87.483616, 38.703798 ], [ -87.483959, 38.701922 ], [ -87.484388, 38.700851 ], [ -87.485075, 38.699913 ], [ -87.486019, 38.698908 ], [ -87.486792, 38.698305 ], [ -87.488165, 38.697501 ], [ -87.493658, 38.694889 ], [ -87.493658, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485818173", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694889 ], [ -87.497005, 38.693214 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841663", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493658, 38.694889 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841667", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104485841555", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841666", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.493315, 38.694956 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104485841556", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.496576, 38.693348 ], [ -87.493658, 38.694755 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104257622329", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492800, 38.692678 ], [ -87.493658, 38.694889 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104485841665", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257599171", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.490482, 38.687654 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257627422", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.509279, 38.661721 ], [ -87.503443, 38.665675 ], [ -87.491856, 38.674253 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525673, 38.650394 ], [ -87.516575, 38.657097 ], [ -87.503271, 38.666011 ], [ -87.493744, 38.673248 ], [ -87.492456, 38.674588 ], [ -87.490568, 38.677604 ], [ -87.490139, 38.679346 ], [ -87.490225, 38.684840 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689128 ], [ -87.493658, 38.694755 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624538", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.594602 ], [ -87.538805, 38.600036 ], [ -87.538719, 38.609896 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.528849, 38.646104 ], [ -87.527561, 38.648316 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070259", "FULLNAME": "Old US Hwy 41", "RTTYP": "U", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.535458, 38.619955 ], [ -87.534084, 38.623107 ], [ -87.533569, 38.625052 ], [ -87.533226, 38.627063 ], [ -87.533484, 38.628673 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.591919 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529192, 38.645366 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648718 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104485841662", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.528076, 38.648115 ], [ -87.527218, 38.649120 ], [ -87.525673, 38.650394 ], [ -87.516575, 38.657097 ], [ -87.503271, 38.666011 ], [ -87.493744, 38.673248 ], [ -87.492456, 38.674588 ], [ -87.490568, 38.677604 ], [ -87.490139, 38.679346 ], [ -87.490225, 38.684840 ], [ -87.490482, 38.686515 ], [ -87.491426, 38.689128 ], [ -87.493658, 38.694755 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104485841553", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.493658, 38.694755 ], [ -87.490654, 38.687252 ], [ -87.490311, 38.685443 ], [ -87.490139, 38.682361 ], [ -87.489882, 38.681356 ], [ -87.489023, 38.679882 ], [ -87.487736, 38.678542 ] ] } } , @@ -1088,34 +1088,30 @@ , { "type": "Feature", "properties": { "LINEARID": "110170070277", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.492456, 38.674588 ], [ -87.490997, 38.676665 ], [ -87.490311, 38.677335 ], [ -87.489109, 38.678073 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.490139, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677469 ], [ -87.487650, 38.678810 ], [ -87.487478, 38.679681 ], [ -87.487564, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.488937, 38.684103 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486620, 38.680351 ], [ -87.487564, 38.681758 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.488937, 38.684103 ], [ -87.489882, 38.686180 ], [ -87.493315, 38.694956 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613150", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.486448, 38.677738 ], [ -87.485161, 38.677201 ], [ -87.475290, 38.674990 ], [ -87.473917, 38.674856 ], [ -87.460871, 38.673985 ], [ -87.456923, 38.673851 ], [ -87.427998, 38.675526 ], [ -87.425165, 38.676062 ], [ -87.412548, 38.679681 ], [ -87.410660, 38.679882 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374697, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.356758, 38.672645 ], [ -87.335215, 38.668222 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104469613492", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.487736, 38.678542 ], [ -87.486448, 38.677738 ], [ -87.485161, 38.677201 ], [ -87.475290, 38.674990 ], [ -87.473917, 38.674856 ], [ -87.460871, 38.673985 ], [ -87.456923, 38.673851 ], [ -87.427998, 38.675526 ], [ -87.425165, 38.676062 ], [ -87.412548, 38.679681 ], [ -87.410660, 38.679882 ], [ -87.408943, 38.679882 ], [ -87.395897, 38.678140 ], [ -87.374697, 38.675861 ], [ -87.369289, 38.675057 ], [ -87.356758, 38.672645 ], [ -87.335215, 38.668222 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110170070271", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486620, 38.680351 ], [ -87.487564, 38.681758 ], [ -87.489281, 38.684706 ], [ -87.490482, 38.687654 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "110170070320", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484732, 38.678542 ], [ -87.486105, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170070272", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484732, 38.678542 ], [ -87.486105, 38.678676 ], [ -87.487736, 38.678542 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104485841551", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.484388, 38.678609 ], [ -87.485247, 38.679078 ], [ -87.486362, 38.680016 ], [ -87.487135, 38.680954 ], [ -87.488937, 38.684103 ], [ -87.489882, 38.686180 ], [ -87.493315, 38.694956 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257627423", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.490139, 38.675392 ], [ -87.489109, 38.676330 ], [ -87.488251, 38.677469 ], [ -87.487650, 38.678810 ], [ -87.487478, 38.679681 ], [ -87.487564, 38.681155 ], [ -87.487993, 38.682227 ], [ -87.488937, 38.684103 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257616296", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.491856, 38.674253 ], [ -87.488937, 38.675995 ], [ -87.487650, 38.676464 ], [ -87.486620, 38.676665 ], [ -87.485676, 38.676799 ], [ -87.484131, 38.676799 ], [ -87.480268, 38.676062 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "110170071138", "FULLNAME": "E US Hwy 50-150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.471085, 38.674655 ], [ -87.475290, 38.674990 ], [ -87.480268, 38.676062 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476664, 38.675727 ], [ -87.475376, 38.675392 ], [ -87.473230, 38.675057 ], [ -87.460871, 38.674186 ], [ -87.458639, 38.674119 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675794 ], [ -87.424994, 38.676263 ], [ -87.412634, 38.679882 ], [ -87.410746, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374182, 38.676129 ], [ -87.371092, 38.675660 ], [ -87.335043, 38.668490 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257624535", "FULLNAME": "US Hwy 41", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538033, 38.542795 ], [ -87.538033, 38.548165 ], [ -87.538290, 38.555079 ], [ -87.538290, 38.574005 ], [ -87.538548, 38.591919 ], [ -87.538805, 38.600036 ], [ -87.538805, 38.609091 ], [ -87.538548, 38.610902 ], [ -87.538204, 38.611975 ], [ -87.533827, 38.622034 ], [ -87.533054, 38.624381 ], [ -87.532539, 38.626661 ], [ -87.529449, 38.644495 ], [ -87.529192, 38.645366 ], [ -87.528419, 38.647042 ], [ -87.527218, 38.648718 ], [ -87.526016, 38.649858 ], [ -87.516747, 38.656695 ], [ -87.509365, 38.661654 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257624536", "FULLNAME": "US Hwy 41 S", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.538290, 38.542795 ], [ -87.538376, 38.548165 ], [ -87.538633, 38.554207 ], [ -87.538633, 38.574944 ], [ -87.538805, 38.591919 ], [ -87.539062, 38.599164 ], [ -87.539062, 38.608957 ], [ -87.538891, 38.610499 ], [ -87.538462, 38.611975 ], [ -87.534685, 38.620760 ], [ -87.533398, 38.624180 ], [ -87.532711, 38.627331 ], [ -87.529707, 38.644629 ], [ -87.529020, 38.646506 ], [ -87.527647, 38.648584 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104257610358", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.481556, 38.677469 ], [ -87.476664, 38.675727 ], [ -87.475376, 38.675392 ], [ -87.473230, 38.675057 ], [ -87.460871, 38.674186 ], [ -87.458639, 38.674119 ], [ -87.455292, 38.674119 ], [ -87.427654, 38.675794 ], [ -87.424994, 38.676263 ], [ -87.412634, 38.679882 ], [ -87.410746, 38.680150 ], [ -87.409201, 38.680150 ], [ -87.402849, 38.679413 ], [ -87.395811, 38.678408 ], [ -87.374182, 38.676129 ], [ -87.371092, 38.675660 ], [ -87.335043, 38.668490 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104257610285", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335043, 38.668490 ], [ -87.371092, 38.675660 ], [ -87.374182, 38.676129 ], [ -87.395811, 38.678408 ], [ -87.402849, 38.679413 ], [ -87.409201, 38.680150 ], [ -87.410746, 38.680150 ], [ -87.412634, 38.679882 ], [ -87.424994, 38.676263 ], [ -87.427654, 38.675794 ], [ -87.455292, 38.674119 ], [ -87.458639, 38.674119 ], [ -87.460871, 38.674186 ], [ -87.473230, 38.675057 ], [ -87.475376, 38.675392 ], [ -87.476664, 38.675727 ], [ -87.481556, 38.677469 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, -{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1104257640853", "FULLNAME": "E US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.324314, 38.665072 ], [ -87.317362, 38.661654 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685675", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646439 ], [ -87.283545, 38.647847 ], [ -87.285776, 38.648383 ], [ -87.289467, 38.649388 ], [ -87.293329, 38.650729 ], [ -87.297535, 38.652606 ], [ -87.325344, 38.665810 ], [ -87.329292, 38.667217 ], [ -87.335043, 38.668490 ] ] } } @@ -1124,12 +1120,16 @@ , { "type": "Feature", "properties": { "LINEARID": "1104471685645", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.281313, 38.648383 ], [ -87.283115, 38.649724 ], [ -87.283974, 38.650260 ], [ -87.285347, 38.650796 ], [ -87.286892, 38.651265 ], [ -87.292042, 38.652271 ], [ -87.294273, 38.653142 ], [ -87.296162, 38.654215 ], [ -87.298737, 38.656225 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471686636", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1104471685676", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.335215, 38.668222 ], [ -87.331696, 38.667552 ], [ -87.329121, 38.666949 ], [ -87.326288, 38.665877 ], [ -87.316246, 38.661252 ], [ -87.295132, 38.651198 ], [ -87.290497, 38.649456 ], [ -87.285862, 38.648115 ], [ -87.282171, 38.647310 ], [ -87.274876, 38.646238 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471685646", "FULLNAME": "E Old US Hwy 150", "RTTYP": "M", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.265005, 38.645702 ], [ -87.267065, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.279596, 38.647176 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1104257570399", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +, +{ "type": "Feature", "properties": { "LINEARID": "1104471568916", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.274876, 38.646238 ], [ -87.271614, 38.645702 ], [ -87.265434, 38.645433 ], [ -87.251616, 38.646372 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1104472002543", "FULLNAME": "US Hwy 150", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.266378, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.274876, 38.646439 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1104471680885", "FULLNAME": "US Hwy 50", "RTTYP": "U", "MTFCC": "S1200" }, "geometry": { "type": "LineString", "coordinates": [ [ -87.251787, 38.646573 ], [ -87.266378, 38.645702 ], [ -87.271700, 38.645970 ], [ -87.274876, 38.646439 ] ] } } diff --git a/tests/muni/decode/multi.mbtiles.onetile.json b/tests/muni/decode/multi.mbtiles.onetile.json index 5df2e49c6..23d401614 100644 --- a/tests/muni/decode/multi.mbtiles.onetile.json +++ b/tests/muni/decode/multi.mbtiles.onetile.json @@ -188,7 +188,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , @@ -1260,7 +1260,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , @@ -2454,7 +2454,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , @@ -3226,7 +3226,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , @@ -3276,7 +3276,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , @@ -3342,7 +3342,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -4372,7 +4372,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } , @@ -5284,7 +5284,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , @@ -5438,7 +5438,7 @@ , { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , @@ -6456,7 +6456,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , @@ -7184,7 +7184,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , diff --git a/tests/muni/decode/multi.mbtiles.pipeline.json b/tests/muni/decode/multi.mbtiles.pipeline.json index 7f9bd7ef3..ee539a1d0 100644 --- a/tests/muni/decode/multi.mbtiles.pipeline.json +++ b/tests/muni/decode/multi.mbtiles.pipeline.json @@ -43,7 +43,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } @@ -634,7 +634,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } @@ -1170,7 +1170,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } @@ -1767,7 +1767,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } @@ -2153,7 +2153,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } @@ -2178,7 +2178,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } @@ -2211,7 +2211,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } @@ -2726,7 +2726,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } @@ -3182,7 +3182,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } @@ -3259,7 +3259,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } @@ -3768,7 +3768,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777262 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } @@ -4132,7 +4132,7 @@ { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } -{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } { "type": "Feature", "tippecanoe": { "layer": "muni", "minzoom": 11, "maxzoom": 11 }, "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } diff --git a/tests/muni/decode/multi.mbtiles.stats.json b/tests/muni/decode/multi.mbtiles.stats.json index cdd5886f1..07c42ffac 100644 --- a/tests/muni/decode/multi.mbtiles.stats.json +++ b/tests/muni/decode/multi.mbtiles.stats.json @@ -3,7 +3,7 @@ , { "zoom": 11, "x": 327, "y": 792, "bytes": 6533, "compressed": true, "layers": { "muni": { "points": 528, "lines": 0, "polygons": 0, "extent": 4096 } } } , -{ "zoom": 11, "x": 327, "y": 791, "bytes": 45271, "compressed": true, "layers": { "muni": { "points": 4284, "lines": 0, "polygons": 0, "extent": 4096 }, "subway": { "points": 19, "lines": 0, "polygons": 0, "extent": 4096 } } } +{ "zoom": 11, "x": 327, "y": 791, "bytes": 45265, "compressed": true, "layers": { "muni": { "points": 4284, "lines": 0, "polygons": 0, "extent": 4096 }, "subway": { "points": 19, "lines": 0, "polygons": 0, "extent": 4096 } } } , { "zoom": 11, "x": 954, "y": 791, "bytes": 75, "compressed": true, "layers": { "muni": { "points": 12, "lines": 0, "polygons": 0, "extent": 4096 } } } ] diff --git a/tests/muni/out/-Z11_-z11.json b/tests/muni/out/-Z11_-z11.json index d6174f844..2c815eff6 100644 --- a/tests/muni/out/-Z11_-z11.json +++ b/tests/muni/out/-Z11_-z11.json @@ -108,7 +108,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , @@ -1294,7 +1294,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , @@ -2366,7 +2366,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , @@ -3560,7 +3560,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , @@ -4332,7 +4332,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , @@ -4382,7 +4382,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , @@ -4448,7 +4448,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -5478,7 +5478,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } , @@ -6390,7 +6390,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , @@ -6544,7 +6544,7 @@ , { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , @@ -7562,7 +7562,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , @@ -8290,7 +8290,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , diff --git a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json index 28a22ee79..dd4c29755 100644 --- a/tests/muni/out/-Z11_-z11_--calculate-feature-density.json +++ b/tests/muni/out/-Z11_-z11_--calculate-feature-density.json @@ -108,7 +108,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe_feature_density": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe_feature_density": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , @@ -340,9 +340,9 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe_feature_density": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , @@ -1294,7 +1294,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , @@ -2366,7 +2366,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , @@ -3560,7 +3560,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe_feature_density": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , @@ -4332,7 +4332,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe_feature_density": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe_feature_density": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , @@ -4382,7 +4382,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , @@ -4448,7 +4448,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -5478,7 +5478,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe_feature_density": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe_feature_density": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe_feature_density": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } , @@ -5968,7 +5968,7 @@ , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe_feature_density": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe_feature_density": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe_feature_density": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , @@ -6340,7 +6340,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe_feature_density": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe_feature_density": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe_feature_density": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } , @@ -6390,7 +6390,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , @@ -6544,7 +6544,7 @@ , { "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , @@ -7562,7 +7562,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , @@ -8290,7 +8290,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , @@ -9216,9 +9216,9 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe_feature_density": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe_feature_density": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe_feature_density": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , diff --git a/tests/muni/out/-Z11_-z11_--hilbert.json b/tests/muni/out/-Z11_-z11_--hilbert.json index d63976508..8a463d837 100644 --- a/tests/muni/out/-Z11_-z11_--hilbert.json +++ b/tests/muni/out/-Z11_-z11_--hilbert.json @@ -314,7 +314,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , @@ -1786,7 +1786,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } , @@ -2540,7 +2540,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , @@ -3158,7 +3158,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , @@ -5242,7 +5242,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } , @@ -5292,7 +5292,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -5388,7 +5388,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , @@ -5722,7 +5722,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , @@ -7058,7 +7058,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , @@ -7946,7 +7946,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } , @@ -8732,7 +8732,7 @@ , { "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , @@ -9176,8 +9176,6 @@ , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } @@ -9188,6 +9186,8 @@ , { "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } @@ -9406,7 +9406,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } , diff --git a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json index ef45f6eea..49b5ce98b 100644 --- a/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json +++ b/tests/muni/out/-Z11_-z11_--prefer-radix-sort.json @@ -108,7 +108,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , @@ -1294,7 +1294,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , @@ -2366,7 +2366,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , @@ -3560,7 +3560,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , @@ -4332,7 +4332,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , @@ -4382,7 +4382,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , @@ -4448,7 +4448,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -5478,7 +5478,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } , @@ -6390,7 +6390,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , @@ -6544,7 +6544,7 @@ , { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , @@ -7562,7 +7562,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , @@ -8290,7 +8290,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748356 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , diff --git a/tests/muni/out/-Z11_-z11_-g2.json b/tests/muni/out/-Z11_-z11_-g2.json index a8ac0e2b5..22c2e4fd5 100644 --- a/tests/muni/out/-Z11_-z11_-g2.json +++ b/tests/muni/out/-Z11_-z11_-g2.json @@ -85,7 +85,7 @@ , { "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , @@ -859,7 +859,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , @@ -1607,7 +1607,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , @@ -2415,7 +2415,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769731 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , @@ -2903,7 +2903,7 @@ , { "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , @@ -2945,7 +2945,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , @@ -2991,7 +2991,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , @@ -4209,7 +4209,7 @@ , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821955 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , @@ -4319,7 +4319,7 @@ , { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , @@ -4999,7 +4999,7 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-B15.json b/tests/muni/out/-Z11_-z13_-B15.json index c9bc0f73a..dcb217a4c 100644 --- a/tests/muni/out/-Z11_-z13_-B15.json +++ b/tests/muni/out/-Z11_-z13_-B15.json @@ -533,7 +533,7 @@ , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , @@ -781,7 +781,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , @@ -807,7 +807,7 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , @@ -1447,7 +1447,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } , @@ -1951,7 +1951,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748110 ] } } , @@ -1973,7 +1973,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } , @@ -2015,7 +2015,7 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } , @@ -2371,7 +2371,7 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index df956c769..e2523dd03 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -2333,7 +2333,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , @@ -4001,7 +4001,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -5435,7 +5435,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , @@ -5859,7 +5859,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , @@ -6153,7 +6153,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , @@ -7283,7 +7283,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -7595,7 +7595,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } , @@ -7621,7 +7621,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , @@ -8691,7 +8691,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , @@ -8909,7 +8909,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , @@ -9843,7 +9843,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } , @@ -10517,7 +10517,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , @@ -10599,7 +10599,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } , @@ -10615,7 +10615,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -10831,7 +10831,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -10893,7 +10893,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , @@ -11123,7 +11123,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , @@ -11169,7 +11169,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , @@ -11307,7 +11307,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , @@ -11569,7 +11569,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } , @@ -12097,7 +12097,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , @@ -13233,7 +13233,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } , @@ -14029,7 +14029,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -14365,7 +14365,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -15109,7 +15109,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -15759,7 +15759,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -16237,7 +16237,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -16247,7 +16247,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -16559,7 +16559,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -16585,7 +16585,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -17357,7 +17357,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -17397,7 +17397,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -17691,7 +17691,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -18237,7 +18237,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -18587,7 +18587,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -18699,7 +18699,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -18837,7 +18837,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -19019,7 +19019,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -19511,7 +19511,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -19557,7 +19557,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -19695,7 +19695,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -19957,7 +19957,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -20077,7 +20077,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -20485,7 +20485,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -20861,7 +20861,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -21031,7 +21031,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -21161,7 +21161,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -21319,7 +21319,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -21541,7 +21541,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -21803,7 +21803,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -21835,7 +21835,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -21917,7 +21917,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -21933,7 +21933,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -22149,7 +22149,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -22211,7 +22211,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -22967,7 +22967,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -23069,7 +23069,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -23873,7 +23873,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-M10000.json b/tests/muni/out/-Z11_-z13_-M10000.json index e8dbd8af1..8bf4060f0 100644 --- a/tests/muni/out/-Z11_-z13_-M10000.json +++ b/tests/muni/out/-Z11_-z13_-M10000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":18540,\"detail_reduced\":4,\"tile_size_desired\":10857},{\"dropped_by_rate\":6391,\"detail_reduced\":3,\"tile_size_desired\":10699},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":18540,\"detail_reduced\":4,\"tile_size_desired\":10857},{\"dropped_by_rate\":6391,\"detail_reduced\":3,\"tile_size_desired\":10700},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -1621,7 +1621,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -2703,7 +2703,7 @@ , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , @@ -2931,7 +2931,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , @@ -4271,7 +4271,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } , @@ -4389,7 +4389,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } , @@ -4481,7 +4481,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , @@ -4499,7 +4499,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -4659,7 +4659,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -5741,7 +5741,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -6077,7 +6077,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -6821,7 +6821,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -7471,7 +7471,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -7949,7 +7949,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -7959,7 +7959,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -8271,7 +8271,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -8297,7 +8297,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -9069,7 +9069,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -9109,7 +9109,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -9403,7 +9403,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -9949,7 +9949,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -10299,7 +10299,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -10411,7 +10411,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -10549,7 +10549,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -10731,7 +10731,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -11223,7 +11223,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -11269,7 +11269,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -11407,7 +11407,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -11669,7 +11669,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -11789,7 +11789,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -12197,7 +12197,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -12573,7 +12573,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -12743,7 +12743,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -12873,7 +12873,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -13031,7 +13031,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -13253,7 +13253,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -13515,7 +13515,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -13547,7 +13547,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -13629,7 +13629,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -13645,7 +13645,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -13861,7 +13861,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -13923,7 +13923,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -14679,7 +14679,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -14781,7 +14781,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -15585,7 +15585,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-aG.json b/tests/muni/out/-Z11_-z13_-M10000_-aG.json index a5b0d564a..4941aba46 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-aG.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-aG.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":14925,\"dropped_by_gamma\":53,\"detail_reduced\":3,\"tile_size_desired\":10857},{\"dropped_by_rate\":5252,\"dropped_by_gamma\":155,\"detail_reduced\":2,\"tile_size_desired\":10699},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":14925,\"dropped_by_gamma\":53,\"detail_reduced\":3,\"tile_size_desired\":10857},{\"dropped_by_rate\":5252,\"dropped_by_gamma\":155,\"detail_reduced\":2,\"tile_size_desired\":10700},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -1587,7 +1587,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -4135,7 +4135,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } , @@ -4339,7 +4339,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , @@ -4357,7 +4357,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -4511,7 +4511,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -5537,7 +5537,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -5873,7 +5873,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -6617,7 +6617,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -7267,7 +7267,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -7745,7 +7745,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -7755,7 +7755,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -8067,7 +8067,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -8093,7 +8093,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -8865,7 +8865,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -8905,7 +8905,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -9199,7 +9199,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -9745,7 +9745,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -10095,7 +10095,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -10207,7 +10207,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -10345,7 +10345,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -10527,7 +10527,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -11019,7 +11019,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -11065,7 +11065,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -11203,7 +11203,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -11465,7 +11465,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -11585,7 +11585,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -11993,7 +11993,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -12369,7 +12369,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -12539,7 +12539,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -12669,7 +12669,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -12827,7 +12827,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -13049,7 +13049,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -13311,7 +13311,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -13343,7 +13343,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -13425,7 +13425,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -13441,7 +13441,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -13657,7 +13657,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -13719,7 +13719,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -14475,7 +14475,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -14577,7 +14577,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -15381,7 +15381,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index 1085013d9..0cfd6ef16 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":99,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":227,\"tile_size_desired\":10699},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":99,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":227,\"tile_size_desired\":10700},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -1417,7 +1417,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -1765,7 +1765,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , @@ -1781,7 +1781,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , @@ -1929,7 +1929,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , @@ -1955,7 +1955,7 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } , @@ -1971,7 +1971,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } , @@ -1987,7 +1987,7 @@ , { "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } , @@ -2081,7 +2081,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } , @@ -2145,7 +2145,7 @@ , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } , @@ -2161,7 +2161,7 @@ , { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , @@ -2177,7 +2177,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , @@ -2193,7 +2193,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , @@ -2335,7 +2335,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , @@ -2351,7 +2351,7 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , @@ -2367,7 +2367,7 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , @@ -2383,7 +2383,7 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , @@ -2395,7 +2395,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } , @@ -2519,7 +2519,7 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , @@ -2535,7 +2535,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } , @@ -2551,7 +2551,7 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } , @@ -2567,7 +2567,7 @@ , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , @@ -2583,7 +2583,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , @@ -2599,7 +2599,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , @@ -2709,7 +2709,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } , @@ -2725,7 +2725,7 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , @@ -2741,7 +2741,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , @@ -2757,7 +2757,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , @@ -2773,7 +2773,7 @@ , { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } , @@ -2789,7 +2789,7 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , @@ -2805,7 +2805,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } , @@ -2899,7 +2899,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , @@ -3445,7 +3445,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , @@ -3459,7 +3459,7 @@ , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } , @@ -3627,7 +3627,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , @@ -3643,7 +3643,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , @@ -3659,7 +3659,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } , @@ -3817,7 +3817,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , @@ -3833,7 +3833,7 @@ , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } , @@ -3849,7 +3849,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , @@ -3865,7 +3865,7 @@ , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } , @@ -3875,7 +3875,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } , @@ -3957,7 +3957,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , @@ -3973,7 +3973,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -4007,7 +4007,7 @@ , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } , @@ -4023,7 +4023,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , @@ -4039,7 +4039,7 @@ , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } , @@ -4055,7 +4055,7 @@ , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } , @@ -4071,7 +4071,7 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } , @@ -4115,7 +4115,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -4197,7 +4197,7 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } , @@ -4213,7 +4213,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } , @@ -4229,7 +4229,7 @@ , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , @@ -4245,7 +4245,7 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } , @@ -4261,7 +4261,7 @@ , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , @@ -4277,7 +4277,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } , @@ -4387,7 +4387,7 @@ , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } , @@ -4403,7 +4403,7 @@ , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , @@ -4419,7 +4419,7 @@ , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -4627,7 +4627,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } , @@ -4643,7 +4643,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , @@ -4815,7 +4815,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } , @@ -4831,7 +4831,7 @@ , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , @@ -4847,7 +4847,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , @@ -5089,7 +5089,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -5425,7 +5425,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -6169,7 +6169,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -6819,7 +6819,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -7297,7 +7297,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -7307,7 +7307,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -7619,7 +7619,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -7645,7 +7645,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -8417,7 +8417,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -8457,7 +8457,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -8751,7 +8751,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -9297,7 +9297,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -9647,7 +9647,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -9759,7 +9759,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -9897,7 +9897,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -10079,7 +10079,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -10571,7 +10571,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -10617,7 +10617,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -10755,7 +10755,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -11017,7 +11017,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -11137,7 +11137,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -11545,7 +11545,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -11921,7 +11921,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -12091,7 +12091,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -12221,7 +12221,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -12379,7 +12379,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -12601,7 +12601,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -12863,7 +12863,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -12895,7 +12895,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -12977,7 +12977,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -12993,7 +12993,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -13209,7 +13209,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -13271,7 +13271,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -14027,7 +14027,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -14129,7 +14129,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -14933,7 +14933,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index 131e0ddeb..1013c0d5c 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":86,\"tile_size_desired\":10857},{\"dropped_by_rate\":4113,\"dropped_as_needed\":85,\"tile_size_desired\":10699},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":86,\"tile_size_desired\":10857},{\"dropped_by_rate\":4113,\"dropped_as_needed\":85,\"tile_size_desired\":10700},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -1449,7 +1449,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -1815,7 +1815,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , @@ -1831,7 +1831,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , @@ -1979,7 +1979,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , @@ -2005,7 +2005,7 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } , @@ -2021,7 +2021,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } , @@ -2037,7 +2037,7 @@ , { "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } , @@ -2131,7 +2131,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } , @@ -2195,7 +2195,7 @@ , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } , @@ -2211,7 +2211,7 @@ , { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , @@ -2227,7 +2227,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , @@ -2243,7 +2243,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , @@ -2385,7 +2385,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , @@ -2401,7 +2401,7 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , @@ -2417,7 +2417,7 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , @@ -2433,7 +2433,7 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , @@ -2445,7 +2445,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } , @@ -2569,7 +2569,7 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , @@ -2585,7 +2585,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } , @@ -2601,7 +2601,7 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } , @@ -2617,7 +2617,7 @@ , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , @@ -2633,7 +2633,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , @@ -2649,7 +2649,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , @@ -2759,7 +2759,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } , @@ -2775,7 +2775,7 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , @@ -2791,7 +2791,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , @@ -2807,7 +2807,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , @@ -2823,7 +2823,7 @@ , { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } , @@ -2839,7 +2839,7 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , @@ -2855,7 +2855,7 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } , @@ -2949,7 +2949,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , @@ -3929,7 +3929,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } , @@ -4047,7 +4047,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } , @@ -4139,7 +4139,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , @@ -4157,7 +4157,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -4317,7 +4317,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -5399,7 +5399,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -5735,7 +5735,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -6479,7 +6479,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -7129,7 +7129,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -7607,7 +7607,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -7617,7 +7617,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -7929,7 +7929,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -7955,7 +7955,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -8727,7 +8727,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -8767,7 +8767,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -9061,7 +9061,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -9607,7 +9607,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -9957,7 +9957,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -10069,7 +10069,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -10207,7 +10207,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -10389,7 +10389,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -10881,7 +10881,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -10927,7 +10927,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -11065,7 +11065,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -11327,7 +11327,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -11447,7 +11447,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -11855,7 +11855,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -12231,7 +12231,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -12401,7 +12401,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -12531,7 +12531,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -12689,7 +12689,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -12911,7 +12911,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -13173,7 +13173,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -13205,7 +13205,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -13287,7 +13287,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -13303,7 +13303,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -13519,7 +13519,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -13581,7 +13581,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -14337,7 +14337,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -14439,7 +14439,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -15243,7 +15243,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-M5000_-as.json b/tests/muni/out/-Z11_-z13_-M5000_-as.json index f62acba25..ac0784288 100644 --- a/tests/muni/out/-Z11_-z13_-M5000_-as.json +++ b/tests/muni/out/-Z11_-z13_-M5000_-as.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":482,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1304,\"tile_size_desired\":10699},{\"dropped_as_needed\":3036,\"tile_size_desired\":9649}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":482,\"tile_size_desired\":10857},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1304,\"tile_size_desired\":10700},{\"dropped_as_needed\":3036,\"tile_size_desired\":9646}]", "type": "overlay", "version": "2" }, "features": [ @@ -397,7 +397,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , @@ -647,7 +647,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -897,7 +897,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , @@ -963,7 +963,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } , @@ -3123,7 +3123,7 @@ , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735503 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733704 ] } } , @@ -3721,7 +3721,7 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446715, 37.785377 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443067, 37.784885 ] } } , @@ -4173,7 +4173,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } , @@ -4263,7 +4263,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.713243 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } , @@ -4461,7 +4461,7 @@ , { "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749111 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.746744 ] } } , @@ -4995,7 +4995,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -5053,7 +5053,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777711 ] } } , @@ -5367,7 +5367,7 @@ , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764769 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -5757,7 +5757,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800604 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json index 0a12a9db5..4b9ccc158 100644 --- a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json +++ b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json @@ -443,7 +443,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.468333, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.459471, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.732338 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.723699 ] } } , @@ -1167,7 +1167,7 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.747194 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475725, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475725, 37.742612 ] } } , { "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.729512 ] } } , @@ -1231,9 +1231,9 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.466670, 37.727221 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.467743, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.467743, 37.719668 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461209, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461199, 37.733967 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.461263, 37.730199 ] } } , @@ -1395,7 +1395,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.776600 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.775659 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.775650 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.773310 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index e7ec2e367..ee976e9ee 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -697,7 +697,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , @@ -4721,7 +4721,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -6205,7 +6205,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } , @@ -6981,7 +6981,7 @@ , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -7197,7 +7197,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , @@ -7215,7 +7215,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , @@ -7955,7 +7955,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , @@ -8103,7 +8103,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , @@ -8743,7 +8743,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } , { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , @@ -9205,7 +9205,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } , @@ -9261,7 +9261,7 @@ , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } , @@ -9273,7 +9273,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , @@ -9421,7 +9421,7 @@ , { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -9623,7 +9623,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } , @@ -9749,7 +9749,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , @@ -11077,7 +11077,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , @@ -11671,7 +11671,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -12007,7 +12007,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -12751,7 +12751,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -13401,7 +13401,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -13879,7 +13879,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -13889,7 +13889,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -14201,7 +14201,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -14227,7 +14227,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -14999,7 +14999,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -15039,7 +15039,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -15333,7 +15333,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -15879,7 +15879,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -16229,7 +16229,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -16341,7 +16341,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -16479,7 +16479,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -16661,7 +16661,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -17153,7 +17153,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -17199,7 +17199,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -17337,7 +17337,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -17599,7 +17599,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -17719,7 +17719,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -18127,7 +18127,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -18503,7 +18503,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -18673,7 +18673,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -18803,7 +18803,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -18961,7 +18961,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -19183,7 +19183,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -19445,7 +19445,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -19477,7 +19477,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -19559,7 +19559,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -19575,7 +19575,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -19791,7 +19791,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -19853,7 +19853,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -20609,7 +20609,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -20711,7 +20711,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -21515,7 +21515,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index a1c84dab8..9ba9d2a59 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -685,7 +685,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , @@ -4729,7 +4729,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -6163,7 +6163,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , @@ -6587,7 +6587,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , @@ -6881,7 +6881,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , @@ -8011,7 +8011,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -8323,7 +8323,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } , @@ -8349,7 +8349,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , @@ -9419,7 +9419,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , @@ -9637,7 +9637,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , @@ -10571,7 +10571,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } , @@ -11245,7 +11245,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , @@ -11327,7 +11327,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } , @@ -11343,7 +11343,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -11559,7 +11559,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -11621,7 +11621,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , @@ -11851,7 +11851,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , @@ -11897,7 +11897,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , @@ -12035,7 +12035,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , @@ -12297,7 +12297,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } , @@ -12825,7 +12825,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , @@ -13961,7 +13961,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } , @@ -14757,7 +14757,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -15093,7 +15093,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -15837,7 +15837,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -16487,7 +16487,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -16965,7 +16965,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -16975,7 +16975,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -17287,7 +17287,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -17313,7 +17313,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } , @@ -18085,7 +18085,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } , @@ -18125,7 +18125,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -18419,7 +18419,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -18965,7 +18965,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -19315,7 +19315,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , @@ -19427,7 +19427,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -19565,7 +19565,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -19747,7 +19747,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -20239,7 +20239,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -20285,7 +20285,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -20423,7 +20423,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -20685,7 +20685,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -20805,7 +20805,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -21213,7 +21213,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725464 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } , @@ -21589,7 +21589,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -21759,7 +21759,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -21889,7 +21889,7 @@ , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.767789 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } , @@ -22047,7 +22047,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -22269,7 +22269,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -22531,7 +22531,7 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776371 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } , @@ -22563,7 +22563,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -22645,7 +22645,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -22661,7 +22661,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -22877,7 +22877,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , @@ -22939,7 +22939,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -23695,7 +23695,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -23797,7 +23797,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -24601,7 +24601,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index 9943dfd98..3ac0d264e 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -3063,7 +3063,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , @@ -5183,7 +5183,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , @@ -6515,7 +6515,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , @@ -6727,7 +6727,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } , @@ -7499,7 +7499,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } , @@ -7741,7 +7741,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.746252 ] } } , @@ -8475,7 +8475,7 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , @@ -8625,7 +8625,7 @@ , { "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713345 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , @@ -9835,7 +9835,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -9989,7 +9989,7 @@ , { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758111 ] } } , @@ -10181,7 +10181,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } , @@ -10495,7 +10495,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } , @@ -11651,7 +11651,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , @@ -12223,7 +12223,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -12545,7 +12545,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -13227,7 +13227,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489458, 37.753590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } , @@ -13797,7 +13797,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } , @@ -14209,7 +14209,7 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719617 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } , @@ -14219,7 +14219,7 @@ , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -14511,7 +14511,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } , @@ -14535,7 +14535,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746294 ] } } , @@ -15227,7 +15227,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464095, 37.776982 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.777177 ] } } , @@ -15263,7 +15263,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774429 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } , @@ -15539,7 +15539,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -16041,7 +16041,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437230, 37.767161 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -16477,7 +16477,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801095 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } , @@ -16603,7 +16603,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } , @@ -16767,7 +16767,7 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712734 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } , @@ -17199,7 +17199,7 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } , @@ -17243,7 +17243,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , @@ -17367,7 +17367,7 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , @@ -17603,7 +17603,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } , @@ -17715,7 +17715,7 @@ , { "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752504 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } , { "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } , @@ -18413,7 +18413,7 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417725, 37.787047 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } , @@ -18577,7 +18577,7 @@ , { "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775506 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } , @@ -18831,7 +18831,7 @@ , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , @@ -19025,7 +19025,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , @@ -19287,7 +19287,7 @@ , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775294 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , @@ -19355,7 +19355,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766016 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } , @@ -19367,7 +19367,7 @@ , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763268 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , @@ -19617,7 +19617,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , @@ -20277,7 +20277,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802214 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } , @@ -20369,7 +20369,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } , @@ -21087,7 +21087,7 @@ , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , diff --git a/tests/muni/out/-r1_-K20.json b/tests/muni/out/-r1_-K20.json index fd0f32fe3..02c1da51f 100644 --- a/tests/muni/out/-r1_-K20.json +++ b/tests/muni/out/-r1_-K20.json @@ -299,7 +299,7 @@ , { "type": "Feature", "properties": { "name": "LEGION OF HONOR", "clustered": true, "point_count": 101, "sqrt_point_count": 10.05, "point_count_abbreviated": "101" }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "clustered": true, "point_count": 165, "sqrt_point_count": 12.85, "point_count_abbreviated": "165" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "clustered": true, "point_count": 165, "sqrt_point_count": 12.85, "point_count_abbreviated": "165" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.770511 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "clustered": true, "point_count": 84, "sqrt_point_count": 9.17, "point_count_abbreviated": "84" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.750629 ] } } , @@ -731,7 +731,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.788437 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.788421 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.788743 ] } } , @@ -1393,7 +1393,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Green St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 36, "sqrt_point_count": 6, "point_count_abbreviated": "36" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 36, "sqrt_point_count": 6, "point_count_abbreviated": "36" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "clustered": true, "point_count": 38, "sqrt_point_count": 6.16, "point_count_abbreviated": "38" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.791998 ] } } , @@ -1727,7 +1727,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760563 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760554 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.499254, 37.760707 ] } } , @@ -1861,7 +1861,7 @@ , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.803859 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.482131, 37.789836 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.482131, 37.789828 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } , @@ -2249,7 +2249,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.718310 ] } } , @@ -2481,7 +2481,7 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.765660 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.768323 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.768315 ] } } , { "type": "Feature", "properties": { "name": "14th St & Noe St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.766584 ] } } , @@ -2619,7 +2619,7 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440610, 37.787971 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.787878 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801434 ] } } , @@ -3001,7 +3001,7 @@ , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388264, 37.718234 ] } } ] } ] } , @@ -3173,7 +3173,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 6th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405366, 37.776863 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.772742 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.773310 ] } } , @@ -3647,7 +3647,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2616, "y": 6335 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505364, 37.736020 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505364, 37.736016 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.504243, 37.736118 ] } } , @@ -3747,7 +3747,7 @@ , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760304 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507402, 37.764184 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.506120, 37.763166 ] } } , @@ -4183,7 +4183,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 2617, "y": 6332 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482458, 37.788395 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482458, 37.788391 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497982, 37.771978 ] } } , @@ -4247,7 +4247,7 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Lake St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.485188, 37.785122 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.484925, 37.783922 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.484925, 37.783918 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.481776, 37.784016 ] } } , @@ -4355,7 +4355,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.474073, 37.716286 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.472941, 37.715866 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.472941, 37.715862 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472276, 37.716889 ] } } , @@ -4823,7 +4823,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.471933, 37.773183 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470527, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.468280, 37.777033 ] } } , @@ -4877,7 +4877,7 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.463559, 37.776804 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775612 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463800, 37.775612 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461751, 37.777397 ] } } , @@ -4893,7 +4893,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.777597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.458270, 37.774361 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.458270, 37.774357 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.454692, 37.774718 ] } } , @@ -5175,7 +5175,7 @@ , { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431335, 37.728719 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.728719 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , @@ -5367,7 +5367,7 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.445958, 37.768514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.443249, 37.770473 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.443249, 37.770469 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.444832, 37.767428 ] } } , @@ -5561,7 +5561,7 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.771843 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.774141 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.444403, 37.774141 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.774357 ] } } , @@ -5589,7 +5589,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435026, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433395, 37.786979 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433389, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433046, 37.785949 ] } } , @@ -5639,7 +5639,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Pierce St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433743, 37.771690 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.443249, 37.770473 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.443249, 37.770469 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784491 ] } } , @@ -5757,7 +5757,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.789523 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432359, 37.790048 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432359, 37.790044 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788026 ] } } , @@ -5821,7 +5821,7 @@ , { "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.418632, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.711270 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.418911, 37.711270 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.713116 ] } } , @@ -5853,7 +5853,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.707701 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.415622, 37.707035 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.415617, 37.707035 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412538, 37.708130 ] } } , @@ -5915,7 +5915,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.429312, 37.719986 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.721493 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.428138, 37.721493 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.426979, 37.721675 ] } } , @@ -5933,7 +5933,7 @@ , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.419973, 37.735299 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.418417, 37.734976 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.418417, 37.734972 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732291 ] } } , @@ -5999,7 +5999,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "24th St & Noe St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431861, 37.751406 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431657, 37.749675 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431657, 37.749671 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , @@ -6055,7 +6055,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Randall St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.425659, 37.739486 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.424147, 37.739495 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.424147, 37.739490 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.424163, 37.736907 ] } } , @@ -6133,7 +6133,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409555, 37.748373 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.409357, 37.742956 ] } } , @@ -6185,7 +6185,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 18th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.428234, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.760630 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.427258, 37.760630 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/20th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.427859, 37.758247 ] } } , @@ -6269,7 +6269,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414480, 37.755460 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409663, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409663, 37.759108 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 21st St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.756712 ] } } , @@ -6327,7 +6327,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.423669, 37.779644 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.420896, 37.782553 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.420896, 37.782549 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.424254, 37.779886 ] } } , @@ -6539,7 +6539,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.790358 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.427322, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.427317, 37.790693 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796411 ] } } , @@ -6569,7 +6569,7 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.419705, 37.802384 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.415424, 37.804685 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.804685 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.419855, 37.800044 ] } } , @@ -6595,7 +6595,7 @@ , { "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.413391, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.412559, 37.799963 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.412554, 37.799963 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.412334, 37.799565 ] } } , @@ -6933,7 +6933,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406079, 37.751639 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.748411 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.409319, 37.748411 ] } } , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744721 ] } } , @@ -7081,7 +7081,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.407168, 37.761746 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409663, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409663, 37.759108 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } , @@ -7171,7 +7171,7 @@ , { "type": "Feature", "properties": { "name": "23rd St & Dakota St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.396638, 37.754697 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.395726, 37.757051 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.757051 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757640 ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json index ad23ce8c0..663d6c8b5 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":171,\"tile_size_desired\":39222},{\"dropped_as_needed\":189,\"tiny_polygons\":1,\"tile_size_desired\":25164},{\"dropped_as_needed\":161,\"tiny_polygons\":2,\"tile_size_desired\":21198},{\"dropped_as_needed\":134,\"tiny_polygons\":12,\"tile_size_desired\":10761},{\"dropped_as_needed\":62,\"tiny_polygons\":20,\"tile_size_desired\":6604},{\"tiny_polygons\":47}]", +"strategies": "[{\"dropped_as_needed\":167,\"tile_size_desired\":39196},{\"dropped_as_needed\":184,\"tiny_polygons\":1,\"tile_size_desired\":25157},{\"dropped_as_needed\":160,\"tiny_polygons\":3,\"tile_size_desired\":21202},{\"dropped_as_needed\":133,\"tiny_polygons\":12,\"tile_size_desired\":10760},{\"dropped_as_needed\":58,\"tiny_polygons\":18,\"tile_size_desired\":6601},{\"tiny_polygons\":47}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,15 +17,23 @@ { "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.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -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.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.367114 ], [ -77.519531, 23.725012 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 26.037042 ], [ -77.343750, 26.509905 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -77.871094, 26.824071 ], [ -77.783203, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.824071 ] ] ] ] } } +{ "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.068359, 83.647837 ], [ -27.070312, 83.520162 ], [ -20.830078, 82.732092 ], [ -22.675781, 82.344100 ], [ -26.542969, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.873047, 81.786210 ], [ -22.939453, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.203125, 81.147481 ], [ -20.654297, 81.518272 ], [ -15.732422, 81.910828 ], [ -12.744141, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.259766, 80.575346 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.980149 ], [ -20.039062, 76.940488 ], [ -21.708984, 76.618901 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.163300 ], [ -19.335938, 74.307353 ], [ -21.621094, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.453473 ], [ -22.148438, 73.302624 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.785156, 72.342464 ], [ -23.466797, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.324219, 70.140364 ], [ -25.048828, 69.256149 ], [ -27.773438, 68.463800 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.106102 ], [ -32.783203, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.001953, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.220703, 63.470145 ], [ -42.802734, 62.674143 ], [ -42.451172, 61.897578 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.020952 ], [ -46.230469, 60.844911 ], [ -48.251953, 60.844911 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.591797, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.089364 ], [ -53.261719, 66.826520 ], [ -53.964844, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.720441 ], [ -51.064453, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.595890 ], [ -54.755859, 70.289117 ], [ -54.316406, 70.815812 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -53.964844, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.810547, 71.663663 ], [ -54.755859, 72.580829 ], [ -55.283203, 72.971189 ], [ -57.304688, 74.706450 ], [ -58.623047, 75.095633 ], [ -58.623047, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.184995 ], [ -68.466797, 76.058508 ], [ -69.697266, 76.372619 ], [ -71.367188, 76.999935 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.370301 ], [ -71.015625, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.125000, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.302734, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.886056 ], [ -50.361328, 82.437205 ], [ -47.988281, 82.070028 ], [ -46.582031, 81.984696 ], [ -44.560547, 81.659685 ], [ -46.933594, 82.202302 ], [ -46.757812, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.583984, 83.549851 ], [ -35.068359, 83.647837 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.833306 ], [ -60.908203, 10.141932 ], [ -61.787109, 9.968851 ], [ -61.962891, 10.055403 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.746969 ], [ -60.908203, 10.833306 ] ] ] } } +, +{ "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.837891, 1.406109 ], [ -77.871094, 0.790990 ], [ -77.695312, 0.790990 ], [ -77.431641, 0.439449 ], [ -76.552734, 0.263671 ], [ -76.289062, 0.439449 ], [ -75.410156, -0.175781 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.581830 ], [ -76.640625, -2.635789 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -79.628906, -4.477856 ], [ -80.068359, -4.302591 ], [ -80.419922, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -3.864255 ], [ -80.332031, -3.425692 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.196727 ], [ -80.332031, -2.723583 ], [ -80.947266, -2.284551 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -79.980469, 0.351560 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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": [ [ [ [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ 180.000000, -85.051129 ], [ -148.183594, -85.574852 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.578125, -69.990535 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 178.242188, -84.474065 ], [ 180.000000, -84.714152 ] ] ], [ [ [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.798828, -85.574852 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.906250, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.396938 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.354614 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.064840 ], [ 17.841797, 58.950008 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.908203, 56.121060 ], [ 14.677734, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.656250, 56.316537 ], [ 11.777344, 57.421294 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.304688, 60.108670 ], [ 12.656250, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.953125, 63.114638 ], [ 12.568359, 64.052978 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.774125 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.753906, 68.007571 ], [ 18.017578, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.562500, 30.448674 ], [ 82.353516, 30.145127 ], [ 83.320312, 29.458731 ], [ 83.935547, 29.305561 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.613459 ], [ 85.781250, 28.226970 ], [ 88.154297, 27.839076 ], [ 88.066406, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.066406, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.253906, 26.745610 ], [ 84.638672, 27.215556 ], [ 83.320312, 27.371767 ], [ 82.001953, 27.916767 ], [ 80.068359, 28.767659 ], [ 80.507812, 29.764377 ], [ 81.562500, 30.448674 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 100.019531, 51.618017 ], [ 102.041016, 51.234407 ], [ 102.216797, 50.513427 ], [ 103.710938, 50.064192 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.781264 ], [ 108.457031, 49.267805 ], [ 109.423828, 49.267805 ], [ 110.654297, 49.152970 ], [ 111.621094, 49.382373 ], [ 112.939453, 49.553726 ], [ 114.345703, 50.233152 ], [ 114.960938, 50.120578 ], [ 115.488281, 49.781264 ], [ 116.718750, 49.894634 ], [ 115.488281, 48.107431 ], [ 115.751953, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.333984, 47.694974 ], [ 118.037109, 48.048710 ], [ 118.828125, 47.754098 ], [ 119.794922, 47.040182 ], [ 119.707031, 46.679594 ], [ 118.916016, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 116.015625, 45.706179 ], [ 114.433594, 45.336702 ], [ 113.466797, 44.777936 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.389082 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.488302 ], [ 107.753906, 42.488302 ], [ 106.171875, 42.163403 ], [ 104.941406, 41.574361 ], [ 104.501953, 41.902277 ], [ 103.271484, 41.902277 ], [ 101.865234, 42.488302 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.747012 ], [ 95.800781, 43.325178 ], [ 95.273438, 44.213710 ], [ 94.658203, 44.339565 ], [ 93.515625, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.615234, 45.706179 ], [ 90.966797, 46.860191 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.048710 ], [ 87.978516, 48.574790 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.792047 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.457504 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.951220 ], [ 97.294922, 49.724479 ], [ 98.261719, 50.401515 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.353516, -8.407168 ], [ 127.001953, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.980469, -8.928487 ], [ 125.068359, -8.667918 ], [ 126.914062, -8.233237 ] ] ] } } +{ "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": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.390229 ], [ 28.388672, 4.302591 ], [ 28.740234, 4.477856 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.970703, 4.214943 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.201172, 2.196727 ], [ 30.498047, 1.581830 ], [ 29.882812, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.619141, -0.615223 ], [ 29.619141, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.267578, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.531250, -5.441022 ], [ 29.443359, -5.965754 ], [ 29.619141, -6.489983 ], [ 30.234375, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.322266, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.494105 ], [ 28.476562, -9.188870 ], [ 28.652344, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.382928 ], [ 29.619141, -12.211180 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.297068 ], [ 27.421875, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.953349 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.345703, -11.264612 ], [ 24.257812, -10.919618 ], [ 23.466797, -10.833306 ], [ 22.148438, -11.092166 ], [ 22.236328, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.972656, -8.320212 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.126953, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.188101 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.885147 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.188101 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.140555 ], [ 12.216797, -5.790897 ], [ 12.480469, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.656250, -5.003394 ], [ 13.007812, -4.740675 ], [ 13.271484, -4.915833 ], [ 13.623047, -4.477856 ], [ 14.150391, -4.477856 ], [ 14.238281, -4.828260 ], [ 14.589844, -5.003394 ], [ 15.996094, -3.513421 ], [ 15.996094, -2.723583 ], [ 16.435547, -1.757537 ], [ 17.490234, -0.703107 ], [ 17.666016, -0.439449 ], [ 17.841797, 0.263671 ], [ 17.929688, 1.757537 ], [ 18.369141, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.511719, 5.003394 ], [ 20.917969, 4.302591 ], [ 22.412109, 4.039618 ], [ 22.851562, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.433594, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.312500, 5.178482 ], [ 25.664062, 5.266008 ], [ 27.070312, 5.090944 ], [ 27.333984, 5.266008 ] ] ] } } +, +{ "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.980469, -8.928487 ], [ 125.068359, -9.362353 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.401378 ], [ 123.486328, -10.228437 ], [ 123.574219, -9.882275 ], [ 124.013672, -9.275622 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.322266, -10.228437 ], [ 119.003906, -9.535749 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 136.318359, -2.284551 ], [ 137.460938, -1.669686 ], [ 138.339844, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 139.130859, -8.059230 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 138.076172, -7.623887 ], [ 138.691406, -7.362467 ], [ 138.427734, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.513421 ], [ 133.330078, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.714844, -3.776559 ], [ 132.714844, -3.337954 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.957031, -1.406109 ], [ 130.517578, -0.966751 ], [ 131.835938, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.300781, -8.320212 ], [ 118.916016, -8.320212 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.494105 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.783203, -8.667918 ], [ 121.289062, -8.928487 ], [ 119.882812, -8.841651 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.376953, -8.494105 ], [ 121.992188, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.083984, -5.878332 ], [ 107.226562, -5.965754 ], [ 108.457031, -6.402648 ], [ 108.632812, -6.751896 ], [ 110.566406, -6.839170 ], [ 110.742188, -6.489983 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.623887 ], [ 114.521484, -7.798079 ], [ 115.664062, -8.407168 ], [ 114.521484, -8.754795 ], [ 113.466797, -8.320212 ], [ 111.533203, -8.320212 ], [ 108.720703, -7.623887 ], [ 108.281250, -7.798079 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.083984, -5.878332 ] ] ], [ [ [ 116.982422, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 117.509766, 0.087891 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.460181 ], [ 116.191406, -4.039618 ], [ 116.015625, -3.688855 ], [ 114.873047, -4.127285 ], [ 114.433594, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.291016, -3.162456 ], [ 112.060547, -3.513421 ], [ 111.708984, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.599609, -1.318243 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.439449 ], [ 109.072266, 1.318243 ], [ 109.687500, 2.021065 ], [ 109.863281, 1.318243 ], [ 110.478516, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.878872 ], [ 112.412109, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.136719, 2.811371 ], [ 115.488281, 3.162456 ], [ 115.839844, 4.302591 ], [ 116.982422, 4.302591 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.527336 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.372369 ], [ 105.644531, -2.460181 ], [ 106.083984, -3.074695 ], [ 105.820312, -4.302591 ], [ 105.820312, -5.878332 ], [ 104.677734, -5.878332 ], [ 103.886719, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.425781, -2.811371 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.175781 ], [ 98.613281, 1.845384 ], [ 97.734375, 2.460181 ], [ 97.207031, 3.337954 ], [ 96.416016, 3.864255 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.736328, -5.703448 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.926427 ], [ 134.121094, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 125.068359, 1.669686 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.966751 ], [ 122.431641, -1.493971 ], [ 121.464844, -1.933227 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.695312, -4.477856 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.640625, -4.214943 ], [ 120.937500, -3.601142 ], [ 120.937500, -2.635789 ], [ 120.322266, -2.899153 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.703448 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.477856 ], [ 119.531250, -3.513421 ], [ 119.091797, -3.513421 ], [ 118.740234, -2.811371 ], [ 119.179688, -2.108899 ], [ 119.355469, -1.318243 ], [ 120.058594, 0.527336 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.958984, 0.878872 ], [ 124.101562, 0.878872 ], [ 125.068359, 1.669686 ] ] ], [ [ [ 127.968750, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.671875, 0.263671 ], [ 128.144531, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.408203, -0.790990 ], [ 128.056641, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.441406, 1.054628 ], [ 127.617188, 1.845384 ], [ 127.968750, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.869141, -3.864255 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.425692 ], [ 128.144531, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.162456 ], [ 127.265625, -3.425692 ], [ 126.914062, -3.776559 ], [ 126.210938, -3.601142 ], [ 125.947266, -3.162456 ], [ 127.001953, -3.162456 ] ] ] ] } } ] } ] } , @@ -33,11 +41,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -64.379883, 3.513421 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.324219, 3.337954 ], [ -67.324219, 3.513421 ], [ -64.379883, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } -, { "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.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.442383, -3.864255 ], [ -78.618164, -4.565474 ], [ -79.189453, -4.959615 ], [ -79.628906, -4.434044 ], [ -80.024414, -4.346411 ], [ -80.463867, -4.434044 ], [ -80.463867, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.096623 ], [ -57.744141, -51.563412 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.862924 ], [ -60.688477, -52.295042 ], [ -61.215820, -51.862924 ], [ -59.985352, -51.261915 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.096623 ] ] ] } } +{ "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.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.271086 ], [ -68.950195, -18.979026 ], [ -68.422852, -19.394068 ], [ -68.774414, -20.385825 ], [ -68.203125, -21.493964 ], [ -67.807617, -22.877440 ], [ -67.104492, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.006326 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.382175 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.353637 ], [ -70.092773, -33.100745 ], [ -69.829102, -33.284620 ], [ -69.829102, -34.198173 ], [ -70.400391, -35.173808 ], [ -70.356445, -35.995785 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.795898, -38.548165 ], [ -71.411133, -38.925229 ], [ -71.894531, -40.847060 ], [ -71.762695, -42.065607 ], [ -72.158203, -42.261049 ], [ -71.894531, -43.421009 ], [ -71.455078, -43.802819 ], [ -71.806641, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.542969, -45.552525 ], [ -71.938477, -46.890232 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.253941 ], [ -72.641602, -48.864715 ], [ -73.432617, -49.325122 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.290039, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.894531, -51.998410 ], [ -69.477539, -52.133488 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.902225 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -69.873047, -18.104087 ], [ -69.609375, -17.560247 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.052734, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } , @@ -53,16 +61,18 @@ , { "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.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.108670 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.413086, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ] } } , -{ "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.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.856445, 71.314877 ], [ -91.538086, 70.185103 ], [ -92.416992, 69.702868 ], [ -90.527344, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.608521 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.561523, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.672544 ], [ -81.958008, 68.138852 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.407955 ], [ -84.726562, 66.249163 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.319336, 64.774125 ], [ -88.461914, 64.091408 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.262695, 60.909073 ], [ -94.614258, 60.108670 ], [ -94.702148, 58.950008 ], [ -93.208008, 58.790978 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.022461, 56.462490 ], [ -87.319336, 55.998381 ], [ -86.088867, 55.727110 ], [ -84.990234, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.136696 ], [ -79.848633, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.090820, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.663086, 62.186014 ], [ -73.828125, 62.451406 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.301758, 58.950008 ], [ -68.378906, 58.790978 ], [ -67.631836, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.258789, 59.866883 ], [ -64.599609, 60.326948 ], [ -63.808594, 59.445075 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.203953 ], [ -57.963867, 54.952386 ], [ -57.348633, 54.622978 ], [ -56.953125, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.278353 ], [ -55.678711, 52.133488 ], [ -57.128906, 51.426614 ], [ -58.754883, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.743164, 50.092393 ], [ -63.852539, 50.289339 ], [ -65.346680, 50.289339 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.754098 ], [ -71.103516, 46.830134 ], [ -70.268555, 46.980252 ], [ -68.642578, 48.312428 ], [ -66.533203, 49.124219 ], [ -65.039062, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.980252 ], [ -64.467773, 46.225453 ], [ -63.193359, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.237305, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.346680, 43.548548 ], [ -66.137695, 43.612217 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.305803 ], [ -66.005859, 45.243953 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.679594 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.243953 ], [ -71.499023, 44.995883 ], [ -74.882812, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.706055, 43.612217 ], [ -79.189453, 43.452919 ], [ -79.013672, 43.261206 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -81.298828, 42.195969 ], [ -82.441406, 41.672912 ], [ -82.705078, 41.672912 ], [ -83.012695, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.100586, 42.065607 ], [ -82.441406, 42.972502 ], [ -82.133789, 43.580391 ], [ -82.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.452148, 45.981695 ], [ -83.627930, 46.103709 ], [ -83.891602, 46.103709 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.498392 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.528635 ], [ -84.770508, 46.649436 ], [ -84.858398, 46.890232 ], [ -88.374023, 48.312428 ], [ -89.252930, 48.019324 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.625977, 48.136767 ], [ -92.592773, 48.458352 ], [ -94.350586, 48.661943 ], [ -94.658203, 48.835797 ], [ -94.833984, 49.382373 ], [ -95.141602, 49.382373 ], [ -95.141602, 49.009051 ], [ -122.958984, 49.009051 ], [ -124.892578, 49.979488 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.819818 ], [ -128.012695, 51.727028 ], [ -127.836914, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.517578, 54.800685 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.704102, 56.559482 ], [ -133.374023, 58.401712 ], [ -134.252930, 58.859224 ], [ -134.956055, 59.265881 ], [ -135.483398, 59.778522 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.305185 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.428711, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.005567 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.409180, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.926758, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.797852, 67.892086 ], [ -108.808594, 68.318146 ], [ -108.149414, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.024022 ], [ -103.227539, 68.089709 ], [ -101.469727, 67.642676 ], [ -99.887695, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.569336, 68.399180 ], [ -97.690430, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.108398, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.702148, 68.056889 ], [ -94.218750, 69.068563 ], [ -95.317383, 69.687618 ], [ -96.459961, 70.095529 ], [ -96.372070, 71.187754 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.627286 ], [ -80.112305, 61.710706 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.490234, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.379883, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -83.232422, 62.915233 ], [ -81.870117, 62.895218 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.165502 ], [ -83.759766, 62.186014 ], [ -83.979492, 62.451406 ], [ -83.232422, 62.915233 ] ] ], [ [ [ -55.854492, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.777344, 49.809632 ], [ -56.162109, 50.148746 ], [ -55.458984, 49.922935 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.481445, 49.239121 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.166085 ], [ -52.646484, 47.546872 ], [ -53.085938, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.415039, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -57.304688, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.403320, 49.124219 ], [ -57.348633, 50.708634 ], [ -56.733398, 51.289406 ], [ -55.854492, 51.645294 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -96.547852, 69.687618 ], [ -95.668945, 69.099940 ], [ -96.284180, 68.752315 ], [ -97.602539, 69.052858 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.702868 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.653320, 72.646486 ], [ -112.456055, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.907227, 72.958315 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.666016, 72.060381 ], [ -108.413086, 73.086633 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.672681 ], [ -104.765625, 71.705093 ], [ -104.458008, 70.988349 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.580563 ], [ -102.744141, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.138672, 69.115611 ], [ -108.984375, 68.784144 ], [ -113.334961, 68.528235 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.185103 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.902268 ], [ -116.103516, 71.314877 ], [ -117.641602, 71.300793 ], [ -119.399414, 71.552741 ], [ -118.564453, 72.302431 ], [ -117.861328, 72.711903 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -80.332031, 73.763497 ], [ -78.046875, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.738003 ], [ -79.760742, 72.803086 ], [ -80.859375, 73.327858 ], [ -80.815430, 73.689611 ], [ -80.332031, 73.763497 ] ] ], [ [ [ -72.817383, 83.231249 ], [ -65.830078, 83.026219 ], [ -63.676758, 82.902419 ], [ -61.831055, 82.631333 ], [ -61.875000, 82.361644 ], [ -64.335938, 81.929358 ], [ -66.752930, 81.723188 ], [ -67.675781, 81.498805 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.256836, 79.631968 ], [ -73.872070, 79.432371 ], [ -76.904297, 79.327084 ], [ -75.541992, 79.196075 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.333008, 78.179588 ], [ -77.871094, 77.897255 ], [ -78.354492, 77.504119 ], [ -79.760742, 77.205912 ], [ -79.628906, 76.980149 ], [ -77.915039, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.551758, 76.174498 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.583008, 76.424292 ], [ -89.472656, 76.475773 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.179588 ], [ -87.978516, 78.376004 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.078125, 79.343349 ], [ -86.528320, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.583008, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.362305, 81.550619 ], [ -91.582031, 81.892256 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.517578, 82.653843 ], [ -84.243164, 82.597439 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.858847 ], [ -81.079102, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.245117, 83.174035 ], [ -75.717773, 83.063469 ], [ -72.817383, 83.231249 ] ] ], [ [ [ -85.825195, 73.800318 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.528130 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.727539, 72.060381 ], [ -78.750000, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.585938, 72.248917 ], [ -74.223633, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.895508, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.413086, 66.930060 ], [ -61.831055, 66.861082 ], [ -62.182617, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.642704 ], [ -65.302734, 64.377941 ], [ -64.687500, 63.391522 ], [ -64.995117, 62.674143 ], [ -66.269531, 62.935235 ], [ -68.774414, 63.743631 ], [ -66.313477, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.862305, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.695312, 64.225493 ], [ -78.574219, 64.567319 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.802776 ], [ -73.959961, 66.302205 ], [ -72.641602, 67.289015 ], [ -72.905273, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.560384 ], [ -76.860352, 68.895187 ], [ -76.245117, 69.146920 ], [ -77.299805, 69.763757 ], [ -78.178711, 69.824471 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.946289, 69.960439 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.868164, 71.216075 ], [ -90.219727, 72.235514 ], [ -89.428711, 73.124945 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.800318 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.936523, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.639648, 48.835797 ], [ -125.947266, 49.181703 ], [ -126.870117, 49.525208 ], [ -127.045898, 49.809632 ], [ -128.056641, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -92.416992, 81.255032 ], [ -91.142578, 80.725269 ], [ -89.428711, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.663556 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.791016, 78.215541 ], [ -92.856445, 78.340533 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.113389 ], [ -93.164062, 79.383905 ], [ -94.965820, 79.375806 ], [ -96.064453, 79.702907 ], [ -96.723633, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.255032 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.696062 ], [ -61.831055, 49.296472 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.588867, 49.410973 ], [ -64.511719, 49.866317 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -96.723633, 77.157163 ], [ -94.702148, 77.098423 ], [ -93.559570, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.444907 ], [ -90.966797, 76.069092 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -87.846680, 75.563041 ], [ -86.396484, 75.486148 ], [ -84.770508, 75.693931 ], [ -82.749023, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.437572 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.413974 ], [ -88.154297, 74.390342 ], [ -89.780273, 74.519889 ], [ -92.416992, 74.833436 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.877372 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.119141, 76.750473 ], [ -96.723633, 77.157163 ] ] ], [ [ [ -133.198242, 54.162434 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.110943 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.187405 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.066406, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.162434 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.102539, 74.235878 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.762695, 73.226700 ], [ -119.223633, 72.514931 ], [ -120.454102, 71.815130 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -109.599609, 76.790701 ], [ -108.544922, 76.679785 ], [ -108.193359, 76.205967 ], [ -107.797852, 75.845169 ], [ -106.918945, 76.016094 ], [ -105.864258, 75.973553 ], [ -105.688477, 75.475131 ], [ -106.303711, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.413974 ], [ -113.730469, 74.390342 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.039013 ], [ -117.729492, 75.219460 ], [ -116.367188, 76.195485 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.790701 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.627789 ], [ -97.382812, 73.763497 ], [ -97.119141, 73.465984 ], [ -98.041992, 72.996909 ], [ -96.547852, 72.554498 ], [ -96.723633, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.732662 ], [ -102.480469, 72.514931 ], [ -102.480469, 72.829052 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.529297, 63.646259 ], [ -83.100586, 64.110602 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.830254 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.323242, 76.880775 ], [ -117.114258, 76.527061 ], [ -118.037109, 76.486046 ], [ -119.882812, 76.047916 ], [ -121.508789, 75.898801 ], [ -122.871094, 76.111348 ], [ -121.157227, 76.860810 ], [ -119.091797, 77.513624 ], [ -117.553711, 77.494607 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -98.481445, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.690430, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.799805, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.854492, 75.639536 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.341523 ], [ -101.469727, 76.310358 ], [ -99.975586, 76.649377 ], [ -98.569336, 76.588356 ], [ -98.481445, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.416992, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.262695, 72.019729 ], [ -95.405273, 72.060381 ], [ -96.020508, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.493164, 73.861506 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.810547, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.963867, 78.340533 ], [ -105.161133, 78.376004 ], [ -104.194336, 78.673242 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.052896 ], [ -97.294922, 77.851100 ], [ -98.129883, 78.080156 ], [ -98.569336, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.174805, 74.590108 ], [ -95.625000, 74.671638 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.170898, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -111.489258, 78.853070 ], [ -110.961914, 78.801980 ], [ -109.643555, 78.603986 ], [ -110.874023, 78.402537 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.489258, 78.853070 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.415885 ], [ -105.380859, 72.764065 ], [ -106.918945, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -96.416016, 77.832589 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.823242, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.152344, 77.551572 ], [ -96.416016, 77.832589 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.178711, 25.204941 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.327077 ], [ -77.519531, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 25.997550 ], [ -77.343750, 26.549223 ], [ -77.783203, 26.941660 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -78.530273, 26.863281 ], [ -77.871094, 26.824071 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.969727, 26.784847 ], [ -78.530273, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.783203, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.853290 ], [ -77.211914, 17.685895 ], [ -77.783203, 17.853290 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.437925 ], [ -77.783203, 18.521283 ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.501953, 66.460663 ], [ -14.721680, 65.802776 ], [ -13.623047, 65.127638 ], [ -14.897461, 64.358931 ], [ -18.676758, 63.489767 ], [ -22.763672, 63.956673 ], [ -21.796875, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.603878 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.284537 ], [ -17.797852, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -4.086914, 57.562995 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.513427 ], [ -2.944336, 50.708634 ], [ -3.603516, 50.233152 ], [ -4.526367, 50.345460 ], [ -5.229492, 49.951220 ], [ -5.756836, 50.148746 ], [ -4.306641, 51.206883 ], [ -3.427734, 51.426614 ], [ -4.965820, 51.590723 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.295042 ], [ -4.790039, 52.829321 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.647461, 54.622978 ], [ -4.833984, 54.800685 ], [ -5.097656, 55.053203 ], [ -4.702148, 55.503750 ], [ -5.053711, 55.776573 ], [ -5.581055, 55.304138 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.776808 ], [ -5.800781, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.546580 ], [ -6.196289, 53.878440 ], [ -6.943359, 54.085173 ], [ -7.558594, 54.059388 ], [ -7.382812, 54.597528 ], [ -7.558594, 55.128649 ], [ -6.723633, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.250977, 41.902277 ], [ -6.679688, 41.869561 ], [ -6.372070, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.346544 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.065392 ], [ -7.163086, 37.788081 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.876953, 36.879621 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.272461, 38.341656 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.740986 ], [ -8.789062, 40.747257 ], [ -8.789062, 41.178654 ], [ -9.008789, 41.541478 ], [ -9.052734, 41.869561 ], [ -8.657227, 42.130821 ], [ -8.261719, 42.293564 ] ] ] } } , { "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.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.178711, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.316881 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.538376 ], [ 3.515625, 11.738302 ], [ 2.856445, 12.254128 ], [ 2.504883, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.010742, 12.854649 ], [ 1.010742, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.307617, 14.434680 ], [ 0.395508, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.406250, 15.326572 ], [ 2.768555, 15.411319 ], [ 3.515625, 15.538376 ] ] ] } } +, { "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": [ [ [ [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ] ] ], [ [ [ -180.000000, 71.510978 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -180.000000, 71.510978 ] ] ] ] } } ] } ] } @@ -71,17 +81,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.627930, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.318146 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.079102, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.682617, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.736328, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 2.284551 ], [ 11.293945, 2.240640 ], [ 11.293945, 1.054628 ], [ 9.843750, 1.054628 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.528320, 3.513421 ], [ 47.153320, 3.513421 ] ] ] } } , -{ "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.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.875000, -7.231699 ], [ 17.490234, -8.059230 ], [ 18.149414, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.028320, -7.972198 ], [ 19.423828, -7.144499 ], [ 20.039062, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.610352, -6.926427 ], [ 20.522461, -7.318882 ], [ 21.708984, -7.275292 ], [ 21.752930, -7.928675 ], [ 21.928711, -8.320212 ], [ 21.796875, -8.928487 ], [ 21.884766, -9.535749 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.092166 ], [ 22.412109, -11.005904 ], [ 22.851562, -11.005904 ], [ 23.466797, -10.876465 ], [ 23.906250, -10.919618 ], [ 24.038086, -11.221510 ], [ 23.906250, -11.738302 ], [ 24.082031, -12.211180 ], [ 23.950195, -12.554564 ], [ 24.038086, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.543945, -16.888660 ], [ 23.203125, -17.518344 ], [ 21.357422, -17.936929 ], [ 18.940430, -17.769612 ], [ 18.281250, -17.308688 ], [ 14.194336, -17.350638 ], [ 14.062500, -17.434511 ], [ 13.447266, -16.972741 ], [ 12.832031, -16.930705 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.145486 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.878332 ], [ 16.347656, -5.878332 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 13.007812, -4.784469 ], [ 12.612305, -5.003394 ], [ 12.480469, -5.266008 ], [ 12.436523, -5.703448 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 12.304688, -4.609278 ], [ 12.612305, -4.434044 ] ] ] ] } } +{ "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": [ [ [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.571280 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ] ] ] } } , { "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": [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "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.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.484768 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } @@ -91,19 +101,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ] ] ], [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.513427 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.608398, 69.068563 ], [ 29.003906, 69.763757 ], [ 27.729492, 70.170201 ], [ 26.191406, 69.824471 ], [ 25.708008, 69.099940 ], [ 24.741211, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.368164, 68.847665 ], [ 21.225586, 69.364831 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 17.973633, 68.560384 ], [ 17.709961, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.930664, 64.453849 ], [ 13.579102, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.997070, 61.793900 ], [ 12.612305, 61.291349 ], [ 12.304688, 60.108670 ], [ 11.469727, 59.422728 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.392578, 56.121060 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.354135 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.207710 ], [ 10.239258, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.678711, 56.072035 ], [ 10.371094, 56.194481 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.952386 ], [ 8.129883, 55.528631 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.800878 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.763757 ], [ 28.608398, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.692771 ], [ 29.047852, 66.947274 ], [ 30.234375, 65.802776 ], [ 29.531250, 64.942160 ], [ 30.454102, 64.206377 ], [ 30.014648, 63.548552 ], [ 31.508789, 62.875188 ], [ 31.157227, 62.349609 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 23.554688, 66.390361 ], [ 23.554688, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.654297, 69.099940 ], [ 21.225586, 69.364831 ], [ 22.368164, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.741211, 68.656555 ], [ 25.708008, 69.099940 ], [ 26.191406, 69.824471 ], [ 27.729492, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.941406, 11.566144 ], [ 14.941406, 10.876465 ], [ 15.468750, 9.968851 ], [ 14.897461, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.150391, 10.012130 ], [ 13.974609, 9.535749 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.545898, 5.047171 ], [ 14.458008, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.107422, 7.057282 ], [ 10.502930, 7.057282 ], [ 11.074219, 6.664608 ], [ 11.733398, 6.970049 ], [ 11.821289, 7.406048 ], [ 12.084961, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.183594, 9.622414 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.468760 ], [ 14.194336, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 21.972656, 68.624544 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.390361 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.422728 ], [ 12.304688, 60.108670 ], [ 12.612305, 61.291349 ], [ 11.997070, 61.793900 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.709961, 68.007571 ], [ 17.973633, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.883789, 55.178868 ], [ 71.191406, 54.136696 ], [ 72.246094, 54.367759 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.399414, 53.540307 ], [ 76.904297, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.958008, 50.819818 ], [ 83.364258, 51.069017 ], [ 83.935547, 50.903033 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.561523, 49.696062 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.616211, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.737305, 47.457809 ], [ 85.166016, 47.010226 ], [ 83.188477, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.958008, 45.305803 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.165123 ], [ 80.200195, 42.908160 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.145508, 42.843751 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.972502 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.100983 ], [ 73.476562, 42.488302 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.714732 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.065607 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.680638 ], [ 68.247070, 40.647304 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.489258, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.739352 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.402392 ], [ 58.491211, 45.583290 ], [ 55.942383, 44.995883 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.096680, 42.326062 ], [ 52.954102, 42.130821 ], [ 52.514648, 41.771312 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.317383, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.076172, 47.754098 ], [ 47.329102, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.065430, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.866317 ], [ 48.691406, 50.597186 ], [ 50.756836, 51.699800 ], [ 52.338867, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.567383, 51.261915 ], [ 59.985352, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.996094, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.342149 ], [ 65.654297, 54.597528 ], [ 68.159180, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } +, +{ "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": [ [ [ [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.649414, 42.391009 ], [ 130.649414, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.308594, 44.119142 ], [ 131.044922, 44.964798 ], [ 131.879883, 45.305803 ], [ 133.110352, 45.151053 ], [ 133.769531, 46.103709 ], [ 134.121094, 47.219568 ], [ 134.516602, 47.576526 ], [ 135.043945, 48.487486 ], [ 133.374023, 48.195387 ], [ 132.495117, 47.783635 ], [ 131.000977, 47.783635 ], [ 130.561523, 48.719961 ], [ 129.418945, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.265625, 50.736455 ], [ 126.958008, 51.344339 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.802761 ], [ 125.068359, 53.173119 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.190430, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.717773, 51.971346 ], [ 120.190430, 51.645294 ], [ 119.267578, 50.569283 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.423828, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.885742, 49.781264 ], [ 106.875000, 50.261254 ], [ 105.908203, 50.401515 ], [ 104.633789, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.084961, 51.261915 ], [ 100.898438, 51.508742 ], [ 99.975586, 51.645294 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.724479 ], [ 95.800781, 49.979488 ], [ 94.833984, 50.007739 ], [ 94.130859, 50.485474 ], [ 93.120117, 50.485474 ], [ 92.241211, 50.792047 ], [ 90.703125, 50.345460 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.561523, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.903033 ], [ 83.364258, 51.069017 ], [ 81.958008, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.904297, 54.495568 ], [ 74.399414, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.136696 ], [ 70.883789, 55.178868 ], [ 69.082031, 55.379110 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.597528 ], [ 65.170898, 54.342149 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.985352, 51.971346 ], [ 61.567383, 51.261915 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 52.338867, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.597186 ], [ 48.559570, 49.866317 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.065430, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.329102, 47.724545 ], [ 48.076172, 47.754098 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.675818 ], [ 47.504883, 42.972502 ], [ 48.603516, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.669922, 41.836828 ], [ 46.406250, 41.869561 ], [ 45.791016, 42.098222 ], [ 45.483398, 42.488302 ], [ 44.516602, 42.714732 ], [ 43.945312, 42.553080 ], [ 43.769531, 42.747012 ], [ 42.407227, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 38.276367, 47.546872 ], [ 38.759766, 47.813155 ], [ 39.726562, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.296472 ], [ 40.078125, 49.610710 ], [ 38.583984, 49.922935 ], [ 38.012695, 49.922935 ], [ 37.397461, 50.373496 ], [ 36.606445, 50.233152 ], [ 35.375977, 50.569283 ], [ 35.375977, 50.764259 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.409180, 51.781436 ], [ 33.750000, 52.321911 ], [ 32.695312, 52.241256 ], [ 32.431641, 52.295042 ], [ 32.167969, 52.052490 ], [ 31.772461, 52.106505 ], [ 31.552734, 52.749594 ], [ 31.289062, 53.067627 ], [ 31.508789, 53.173119 ], [ 32.299805, 53.120405 ], [ 32.695312, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.800685 ], [ 30.981445, 55.078367 ], [ 30.893555, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.255281 ], [ 27.290039, 57.468589 ], [ 27.729492, 57.797944 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.310768 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 31.157227, 62.349609 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.531250, 64.942160 ], [ 30.234375, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.692771 ], [ 28.432617, 68.366801 ], [ 28.608398, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.021414 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.000000, 71.510978 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.000000, 71.510978 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 21.269531, 55.178868 ], [ 22.324219, 55.002826 ], [ 22.763672, 54.851315 ], [ 22.631836, 54.572062 ], [ 22.719727, 54.316523 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.898438, 51.508742 ], [ 102.084961, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.289339 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.261254 ], [ 107.885742, 49.781264 ], [ 108.457031, 49.296472 ], [ 109.423828, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.323242, 47.842658 ], [ 117.290039, 47.694974 ], [ 118.081055, 48.078079 ], [ 118.872070, 47.754098 ], [ 119.750977, 47.040182 ], [ 119.663086, 46.679594 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 115.971680, 45.736860 ], [ 114.477539, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.840820, 43.739352 ], [ 111.137695, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.985352, 41.607228 ], [ 104.501953, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.821289, 42.520700 ], [ 100.854492, 42.650122 ], [ 99.536133, 42.520700 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.714732 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.702148, 44.339565 ], [ 93.471680, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.571289, 45.706179 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.078079 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.703125, 50.345460 ], [ 92.241211, 50.792047 ], [ 93.120117, 50.485474 ], [ 94.130859, 50.485474 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.372070, 41.376809 ], [ 141.899414, 39.977120 ], [ 141.899414, 39.164141 ], [ 140.976562, 38.169114 ], [ 140.976562, 37.125286 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.273438, 35.137879 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.833920 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 131.000977, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.352539, 31.466154 ], [ 130.693359, 31.015279 ], [ 130.209961, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.418945, 33.284620 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.373047, 36.844461 ], [ 139.438477, 38.203655 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.547200 ], [ 140.317383, 41.178654 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.780273, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.813477, 33.504759 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.505859, 33.943360 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 141.987305, 45.552525 ], [ 143.129883, 44.496505 ], [ 143.920898, 44.182204 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.370987 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.972502 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.965820, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.987305, 45.552525 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.302591 ], [ 114.873047, 4.346411 ], [ 114.653320, 3.995781 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ] ] ] } } , -{ "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": [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.389648, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ] } } +{ "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": [ [ [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.571280 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.733398, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ] ] ] } } +, +{ "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": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 141.020508, -3.513421 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } @@ -125,12 +143,12 @@ { "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.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.071777, 20.653346 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.186973 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.137207, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.839076 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.030762, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.859863, 39.774769 ], [ -124.387207, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.990234, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.505175 ], [ -139.877930, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.676938 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.792848 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.970703, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.740674 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.322549 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.217991 ], [ -166.464844, 60.381290 ] ] ] ] } } , +{ "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.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } +, { "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": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.434680 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.136576 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } , -{ "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.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.857422, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } , { "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": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.352051, 65.394298 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.538996 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.505371, 62.573106 ], [ -180.769043, 62.308794 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } @@ -157,8 +175,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -64.116211, 1.757537 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.038574, 1.757537 ], [ -64.116211, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } -, { "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.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -76.640625, -2.613839 ], [ -77.827148, -3.008870 ], [ -78.442383, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.959615 ], [ -79.628906, -4.455951 ], [ -80.024414, -4.346411 ], [ -80.441895, -4.434044 ], [ -80.463867, -4.061536 ], [ -80.178223, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.760742, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.412598, -11.566144 ], [ -64.313965, -12.468760 ], [ -63.193359, -12.618897 ], [ -62.797852, -13.004558 ], [ -62.116699, -13.197165 ], [ -61.721191, -13.496473 ], [ -61.083984, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.534668, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.381348, -16.867634 ], [ -58.271484, -17.266728 ], [ -57.744141, -17.560247 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.941895, -19.394068 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.106445, -19.352611 ], [ -60.051270, -19.352611 ], [ -61.787109, -19.642588 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.044913 ], [ -63.984375, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.085640 ], [ -66.269531, -21.841105 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.225098, -21.493964 ], [ -68.752441, -20.365228 ], [ -68.444824, -19.414792 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.587402, -17.581194 ], [ -68.950195, -16.509833 ], [ -69.389648, -15.665354 ], [ -69.169922, -15.326572 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.455958 ], [ -68.884277, -12.897489 ], [ -68.664551, -12.554564 ], [ -69.521484, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.269043, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.170410, -10.314919 ], [ -66.643066, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } @@ -166,6 +182,8 @@ { "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.522906 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.950684, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.842595 ], [ -73.828125, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.103516, -54.072283 ], [ -70.598145, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.414792 ], [ -68.752441, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.175159 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.363027 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.372399 ], [ -70.070801, -33.082337 ], [ -69.807129, -33.266250 ], [ -69.807129, -34.198173 ], [ -70.378418, -35.173808 ], [ -70.356445, -36.013561 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.579413 ], [ -70.817871, -38.548165 ], [ -71.411133, -38.908133 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.740723, -42.049293 ], [ -72.158203, -42.261049 ], [ -71.916504, -43.405047 ], [ -71.455078, -43.786958 ], [ -71.784668, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.213379, -44.777936 ], [ -71.652832, -44.980342 ], [ -71.542969, -45.567910 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.239309 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.325122 ], [ -73.322754, -50.373496 ], [ -72.971191, -50.736455 ], [ -72.312012, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.576660, -52.295042 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.895649 ], [ -71.015625, -53.839564 ], [ -71.433105, -53.852527 ], [ -72.553711, -53.527248 ], [ -73.696289, -52.829321 ], [ -74.948730, -52.268157 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.373496 ], [ -75.607910, -48.676454 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.449468 ], [ -72.707520, -42.391009 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.373112 ], [ -74.333496, -43.229195 ], [ -74.025879, -41.787697 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.498535, -38.289937 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.872559, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.674805, -30.921076 ], [ -71.367188, -30.088108 ], [ -71.499023, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.766704 ], [ -70.378418, -18.354526 ], [ -69.851074, -18.083201 ], [ -69.587402, -17.581194 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.744141, -51.549751 ], [ -58.051758, -51.903613 ], [ -59.392090, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.193848, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -173,26 +191,24 @@ { "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": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , +{ "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": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.637726 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.021528 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.422713 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.078613, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.250488, 47.754098 ], [ -55.393066, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.673831 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.186014 ], [ -73.850098, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.985840, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.104980, 48.078079 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.375994 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.656011 ], [ -83.100586, 64.101007 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } +, { "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": [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.045813 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.434680 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.136576 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } , { "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": [ [ [ -33.508301, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.282760 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.508301, 67.204032 ] ] ] } } , -{ "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": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.637726 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.021528 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.422713 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.078613, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.250488, 47.754098 ], [ -55.393066, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.673831 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.186014 ], [ -73.850098, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.985840, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.104980, 48.078079 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.375994 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.656011 ], [ -83.100586, 64.101007 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.200684, 25.204941 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } , { "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": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.842285, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.406431 ], [ -23.950195, 64.895589 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.266856 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.966309, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.943359, 54.072283 ], [ -7.580566, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.911621, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.686041 ], [ -4.987793, 36.332828 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } -, { "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.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.793457, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 42.374778 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.911621, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } @@ -203,10 +219,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } -, { "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": [ [ [ [ -91.757812, 70.058092 ], [ -91.757812, 70.392606 ], [ -91.516113, 70.192550 ], [ -91.757812, 70.058092 ] ] ], [ [ [ -80.354004, 73.757352 ], [ -78.068848, 73.652545 ], [ -76.333008, 73.105800 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.874402 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.757352 ] ] ], [ [ [ -85.825195, 73.806447 ], [ -86.572266, 73.156808 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.349128 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.559692 ], [ -71.191406, 70.916641 ], [ -68.796387, 70.524897 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.185993 ], [ -68.796387, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -62.709961, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.115234, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.641602, 67.280530 ], [ -72.927246, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.552351 ], [ -76.860352, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.277832, 69.771356 ], [ -78.178711, 69.824471 ], [ -78.947754, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.765206 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.475276 ], [ -89.428711, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.806447 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.926273 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.505299 ], [ -67.829590, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.169434, 79.800637 ], [ -73.234863, 79.635922 ], [ -73.872070, 79.428340 ], [ -76.904297, 79.323013 ], [ -75.520020, 79.196075 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.333008, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.019692 ], [ -77.893066, 76.775629 ], [ -80.551758, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.470633 ], [ -89.626465, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.264160, 77.901861 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.330566, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.100098, 79.347411 ], [ -86.506348, 79.738196 ], [ -86.923828, 80.249670 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.463150 ], [ -84.089355, 80.578943 ], [ -87.604980, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.651033 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.419434, 82.858847 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.129495 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.124512, 68.007571 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.441229 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.233887, 67.584098 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -91.757812, 69.626510 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.616534 ], [ -88.308105, 67.875541 ], [ -87.341309, 67.195518 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.801724 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.210938, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.600849 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -86.352539, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.626510 ] ] ], [ [ [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.374512, 75.480640 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.408070 ], [ -88.154297, 74.390342 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.604004, 76.780655 ] ] ], [ [ [ -91.757812, 74.013493 ], [ -90.505371, 73.855397 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.013493 ] ] ], [ [ [ -91.757812, 80.987131 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.659613 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.273737 ], [ -91.757812, 80.987131 ] ] ] ] } } , +{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +, { "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.126465, 66.407955 ], [ -20.742188, 65.802776 ], [ -24.125977, 65.802776 ], [ -23.642578, 66.266856 ], [ -22.126465, 66.407955 ] ] ], [ [ [ -20.390625, 65.802776 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.842285, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.721680, 65.802776 ], [ -20.390625, 65.802776 ] ] ] ] } } ] } ] } @@ -225,9 +241,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.856475 ], [ 16.325684, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.231699 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.993957 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.993957 ], [ 19.160156, -7.732765 ], [ 19.423828, -7.166300 ], [ 20.039062, -7.122696 ], [ 20.083008, -6.948239 ], [ 20.610352, -6.948239 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.928675 ], [ 21.950684, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.884766, -9.514079 ], [ 22.214355, -9.903921 ], [ 22.148438, -11.092166 ], [ 22.412109, -10.984335 ], [ 22.829590, -11.027472 ], [ 23.466797, -10.876465 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.716788 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.576010 ], [ 24.016113, -12.918907 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.565918, -16.888660 ], [ 23.225098, -17.518344 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.413546 ], [ 13.469238, -16.972741 ], [ 12.810059, -16.951724 ], [ 12.216797, -17.119793 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.623047, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.744141, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.784469 ], [ 12.634277, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 12.326660, -4.609278 ], [ 12.612305, -4.434044 ] ] ] ] } } +{ "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": [ [ [ 13.051758, 1.757537 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.460181 ], [ 13.117676, -2.438229 ], [ 12.568359, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 13.051758, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } +{ "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.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.245605, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.267578, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.515836 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.239945 ], [ 28.520508, -12.704651 ], [ 28.146973, -12.275599 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -10.984335 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.083008, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.634277, -4.981505 ], [ 12.985840, -4.784469 ], [ 13.249512, -4.872048 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.499762 ], [ 14.216309, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.754395, -3.864255 ], [ 15.996094, -3.535352 ], [ 15.974121, -2.701635 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } , { "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": [ [ [ 68.928223, -48.618385 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } @@ -243,31 +259,29 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.377441, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 29.553223, 64.951465 ], [ 30.454102, 64.206377 ], [ 30.036621, 63.548552 ], [ 31.508789, 62.865169 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.783513 ], [ 28.059082, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 67.204032 ], [ 29.377441, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.203613, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.804284 ], [ 11.931152, 63.124572 ], [ 12.590332, 64.062591 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.444372 ], [ 13.557129, 64.783488 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.018066, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.006348, 44.855869 ], [ 18.544922, 45.089036 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 45.011419 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.809122 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.844751 ], [ 26.455078, 57.480403 ], [ 27.290039, 57.480403 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.096556 ], [ 25.004883, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.884277, 56.267761 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.323730, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.239309 ], [ 39.748535, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.042478 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.288574, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.179688, 46.377254 ], [ 29.750977, 46.346928 ], [ 30.014648, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.421387, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.842658 ], [ 28.674316, 48.122101 ], [ 28.256836, 48.151428 ], [ 27.531738, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.411621, 47.975214 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.092757 ], [ 22.719727, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.785645, 49.023461 ], [ 22.521973, 49.482401 ], [ 23.422852, 50.303376 ], [ 23.928223, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.532715, 51.577070 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.334473, 51.917168 ], [ 26.345215, 51.835778 ], [ 27.443848, 51.590723 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.426614 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.412912 ], [ 30.563965, 51.316881 ], [ 30.629883, 51.822198 ], [ 30.937500, 52.038977 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.213183 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.571777, 41.095912 ], [ 42.626953, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.078125, 43.548548 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.142803 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.370605, 46.769968 ], [ 13.798828, 46.513516 ], [ 13.688965, 46.012224 ], [ 13.930664, 45.598666 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.363288 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.160645, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.402832, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.261291 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 7.558594, 44.134913 ], [ 7.009277, 44.260937 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.833496, 45.996962 ], [ 7.272949, 45.782848 ], [ 7.756348, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.483265 ], [ 10.437012, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.935261 ], [ 12.150879, 47.115000 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.799805, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.990491 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.930176, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.446318 ], [ 10.107422, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.991859 ], [ 11.843262, 7.406048 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.082296 ], [ 14.172363, 12.490214 ], [ 14.216309, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.178223, 42.032974 ], [ 36.914062, 41.327326 ], [ 38.342285, 40.946714 ], [ 39.506836, 41.095912 ], [ 40.363770, 41.013066 ], [ 41.550293, 41.541478 ], [ 42.626953, 41.590797 ], [ 43.571777, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.245992 ], [ 44.406738, 40.010787 ], [ 44.802246, 39.707187 ], [ 44.099121, 39.436193 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.247821 ], [ 42.780762, 37.387617 ], [ 42.341309, 37.230328 ], [ 41.220703, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.528809, 36.721274 ], [ 38.693848, 36.721274 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.615528 ], [ 36.738281, 36.809285 ], [ 36.694336, 36.261992 ], [ 36.145020, 35.817813 ], [ 35.771484, 36.279707 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.035645, 36.226550 ], [ 32.519531, 36.102376 ], [ 31.706543, 36.650793 ], [ 30.629883, 36.686041 ], [ 30.388184, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.650793 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.993572 ], [ 26.169434, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.463666 ], [ 29.245605, 41.228249 ], [ 31.135254, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.178223, 42.032974 ] ] ], [ [ [ 27.136230, 42.147114 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.623655 ], [ 28.981934, 41.294317 ], [ 28.806152, 41.062786 ], [ 27.619629, 40.996484 ], [ 27.202148, 40.697299 ], [ 26.367188, 40.145289 ], [ 26.037598, 40.613952 ], [ 26.059570, 40.830437 ], [ 26.301270, 40.930115 ], [ 26.608887, 41.557922 ], [ 26.125488, 41.820455 ], [ 27.136230, 42.147114 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.518066, 14.498508 ], [ 39.089355, 14.732386 ], [ 39.331055, 14.541050 ], [ 40.034180, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.876070 ], [ 42.341309, 12.533115 ], [ 41.660156, 11.630716 ], [ 41.748047, 11.350797 ], [ 41.748047, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.113727 ], [ 42.780762, 10.919618 ], [ 42.561035, 10.574222 ], [ 43.286133, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 41.176758, 3.930020 ], [ 40.759277, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.491489 ], [ 38.671875, 3.623071 ], [ 38.122559, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.166992, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.331644 ], [ 35.288086, 5.506640 ], [ 34.716797, 6.599131 ], [ 34.255371, 6.817353 ], [ 34.079590, 7.231699 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.776309 ], [ 33.288574, 8.363693 ], [ 33.815918, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.969727, 9.579084 ], [ 34.255371, 10.639014 ], [ 34.738770, 10.919618 ], [ 34.826660, 11.329253 ], [ 35.266113, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.276855, 13.560562 ], [ 36.430664, 14.413400 ], [ 37.595215, 14.221789 ], [ 37.902832, 14.966013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.090820, 11.436955 ], [ 33.200684, 10.725381 ], [ 33.728027, 10.314919 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.969727, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.958984, 7.776309 ], [ 33.574219, 7.710992 ], [ 34.079590, 7.231699 ], [ 34.255371, 6.817353 ], [ 34.716797, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.798484 ], [ 32.695312, 3.798484 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.280680 ], [ 27.971191, 4.412137 ], [ 27.377930, 5.244128 ], [ 27.224121, 5.550381 ], [ 26.455078, 5.943900 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.970049 ], [ 25.114746, 7.493196 ], [ 25.114746, 7.819847 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.543457, 8.906780 ], [ 24.785156, 9.817329 ], [ 25.070801, 10.271681 ], [ 25.795898, 10.401378 ], [ 25.971680, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.762695, 9.470736 ], [ 27.114258, 9.644077 ], [ 27.839355, 9.600750 ], [ 27.971191, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.600750 ], [ 29.509277, 9.795678 ], [ 29.619141, 10.077037 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.354980, 9.817329 ], [ 31.860352, 10.531020 ], [ 32.409668, 11.070603 ], [ 32.321777, 11.673755 ], [ 32.080078, 11.974845 ], [ 32.673340, 12.017830 ], [ 32.739258, 12.254128 ] ] ] } } , { "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": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.936035, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.432617, 53.488046 ], [ 73.498535, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.159180, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.805935 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.756836, 51.686180 ], [ 48.691406, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.813486 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.213183 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.239309 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.530762, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.357109 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.764768 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.480403 ], [ 27.707520, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.431713 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.936035, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.504503 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.492676, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.295410, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.306152, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.805935 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.159180, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.651367, 42.956423 ], [ 79.145508, 42.859860 ], [ 79.650879, 42.504503 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.784668, 40.145289 ], [ 73.059082, 40.863680 ], [ 71.872559, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.422363, 41.525030 ], [ 71.257324, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.698586 ], [ 71.850586, 42.843751 ], [ 73.498535, 42.504503 ], [ 73.652344, 43.084937 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.056783 ], [ 56.271973, 25.720735 ], [ 56.403809, 24.926295 ], [ 55.876465, 24.926295 ], [ 55.810547, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.926013 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.120154 ], [ 55.217285, 22.715390 ], [ 54.997559, 22.492257 ], [ 52.009277, 22.998852 ], [ 51.613770, 24.006326 ], [ 51.569824, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.789551, 24.026397 ], [ 52.580566, 24.186847 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.806681 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.652031 ], [ 85.825195, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.298340, 27.371767 ], [ 82.001953, 27.916767 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.786918 ], [ 80.485840, 29.726222 ], [ 81.101074, 30.183122 ], [ 81.518555, 30.429730 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.652943 ], [ 91.757812, 45.166547 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.703125, 50.331436 ], [ 91.757812, 50.652943 ] ] ] } } , -{ "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": [ [ [ 25.642090, 5.266008 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.350415 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.718778 ], [ 19.467773, 5.025283 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.718778 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } +{ "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": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.823423 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.348145, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.606934, 3.052754 ], [ 35.046387, 1.911267 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.695312, 3.798484 ], [ 33.398438, 3.798484 ], [ 34.013672, 4.258768 ] ] ] } } +{ "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": [ [ [ 25.642090, 5.266008 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.350415 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.718778 ], [ 19.467773, 5.025283 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.718778 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } ] } ] } , @@ -293,13 +307,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } +, { "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.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.969727, -9.297307 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.268066, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.893066, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.450639 ], [ 122.893066, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.511230, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.699707, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.833317 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.118576 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.090332, -8.646196 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.550381 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 149.985352, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.930176, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.930176, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.774025 ], [ 160.795898, -8.906780 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.533203, -6.599131 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.166300 ], [ 156.489258, -6.773716 ], [ 156.533203, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } , { "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.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.634351 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.429199, -37.961523 ], [ 178.000488, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.264160, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ] ] } } ] } @@ -317,9 +333,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.612793, 19.518375 ], [ 101.271973, 19.456234 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.104087 ], [ 102.414551, 17.936929 ], [ 103.007812, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.721680, 17.434511 ], [ 104.787598, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.227051, 14.264383 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 101.821289, 5.812757 ], [ 101.162109, 5.681584 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.888853 ], [ 99.206543, 12.811801 ], [ 99.206543, 13.261333 ], [ 99.096680, 13.838080 ], [ 98.437500, 14.626109 ], [ 98.195801, 15.114553 ], [ 98.547363, 15.305380 ], [ 98.898926, 16.172473 ], [ 98.503418, 16.846605 ], [ 97.866211, 17.560247 ], [ 97.382812, 18.437925 ], [ 97.800293, 18.625425 ], [ 98.261719, 19.704658 ], [ 98.964844, 19.746024 ], [ 99.536133, 20.179724 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.692995 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.694336, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.770996, 38.307181 ], [ 128.210449, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.713355 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.004395, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.004395, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.591309, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.981505 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , @@ -431,13 +449,13 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } -, { "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.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.698212 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.136963, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.148193, -52.348763 ], [ -68.576660, -52.301761 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.673835 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.652588, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.334229, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.147217, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , { "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.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.565918, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.072283 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.882723 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.246626 ], [ -72.652588, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.301761 ], [ -69.466553, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.433105, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.707275, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.981689, -51.041394 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.709762 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.696045, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.740234, -40.313043 ], [ -71.795654, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.546143, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.204834, -51.849353 ], [ -59.996338, -51.248163 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.096623 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } ] } ] } , @@ -467,11 +485,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.214881 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.214881 ] ] ], [ [ [ -77.794189, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.794189, 27.039557 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.843677 ], [ -77.816162, 26.578702 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.508301, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.794189, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.337954 ], [ -57.601318, 3.337954 ], [ -58.040771, 4.061536 ], [ -57.864990, 4.576425 ], [ -57.908936, 4.817312 ], [ -57.304688, 5.069058 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } , { "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.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.234375, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.859863, 1.384143 ] ] ] } } , @@ -485,25 +503,25 @@ { "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": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } , -{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.058175 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.612100 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.569114 ], [ -59.271240, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.147488 ], [ -82.441406, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.233643, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.054632 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.446324 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.587402, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.955674 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.368652, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.061035, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.796631, 45.706179 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.880371, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.324707, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.170654, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.528564, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.543658 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.863770, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } -, { "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": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.968994, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.256104, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.893066, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.982624 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.992188, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.505371, 73.855397 ], [ -90.878906, 73.640171 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.233838 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } ] } ] } , @@ -531,13 +549,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.031250, 40.187267 ], [ -7.064209, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.624633 ], [ -14.051514, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.710693, 13.293411 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.282719 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.402832, 13.859414 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.109131, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.041260, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.464422 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.109131, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.728167 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.175293, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.908830 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.908830 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } ] } ] } , @@ -547,7 +565,7 @@ , { "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": "Polygon", "coordinates": [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.807279 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.797852, 63.680377 ], [ -18.654785, 63.494670 ], [ -22.763672, 63.961496 ], [ -21.774902, 64.401685 ], [ -23.950195, 64.890928 ], [ -22.181396, 65.086018 ], [ -22.225342, 65.380571 ], [ -24.323730, 65.612952 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.730626 ], [ -19.061279, 66.275698 ], [ -17.797852, 65.995681 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.862497 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.842595 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.086670, 55.059495 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.128649 ], [ -7.360840, 54.597528 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.667478 ], [ -7.569580, 55.128649 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.009033, 41.787697 ], [ -7.426758, 41.795888 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -6.888428, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } , @@ -583,19 +601,19 @@ , { "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": 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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.468262, -8.070107 ], [ 18.138428, -7.983078 ], [ 18.468018, -7.841615 ], [ 19.017334, -7.983078 ], [ 19.171143, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.039062, -7.111795 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.203369, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.232286 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.518344 ], [ 21.379395, -17.926476 ], [ 18.951416, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.458252, -16.972741 ], [ 12.810059, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.733154, -13.132979 ], [ 13.315430, -12.479487 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.368958 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.370361, -5.867403 ] ] ], [ [ [ 12.623291, -4.434044 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.315674, -4.609278 ], [ 12.623291, -4.434044 ] ] ] ] } } +{ "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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } , { "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": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.944781 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.003662, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } +{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.878872 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.903809, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.453125, 0.878872 ], [ 40.989990, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.014893, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } +{ "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.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } ] } ] } , @@ -605,37 +623,37 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.273682, 16.857120 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -0.878906, 15.019075 ], [ -0.878906, 22.360236 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -0.878906, 10.951978 ], [ -0.878906, 15.019075 ], [ -0.516357, 15.114553 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.139404, 22.492257 ], [ 14.853516, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.600830, 13.325485 ], [ 14.490967, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 13.996582, 12.458033 ], [ 13.315430, 13.560562 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.524658, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.118408, 13.272026 ], [ 9.525146, 12.854649 ], [ 9.019775, 12.822514 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.372559, 13.752725 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.951029 ], [ 3.680420, 12.554564 ], [ 3.614502, 11.662996 ], [ 2.845459, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.569336, 21.565502 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.903809, 35.245619 ], [ 33.969727, 35.056980 ], [ 33.870850, 35.092945 ], [ 33.673096, 35.021000 ], [ 33.530273, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.387451, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.083956 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.573975, 35.675147 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.919434, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.622803, 9.925566 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.214943 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.357366 ], [ 8.492432, 4.499762 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.525146, 6.457234 ], [ 10.118408, 7.035476 ], [ 10.491943, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.309341 ], [ 12.755127, 8.722218 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.490967, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.189209, 32.528289 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.873940 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.104177 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 25.004883, 22.004175 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.666266 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.550049, 11.102947 ], [ 42.319336, 11.038255 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.023193, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.518066, 14.509144 ], [ 37.902832, 14.955399 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.817371 ], [ 36.749268, 16.288506 ], [ 36.848145, 16.951724 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.424029 ], [ 38.408203, 17.999632 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.188870 ], [ 43.297119, 9.535749 ], [ 42.923584, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ] } } , -{ "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.145657 ], [ 27.048340, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.412137 ], [ 28.432617, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.948730, 4.171115 ], [ 30.838623, 3.513421 ], [ 30.772705, 2.339438 ], [ 31.179199, 2.207705 ], [ 30.849609, 1.845384 ], [ 30.465088, 1.581830 ], [ 30.091553, 1.065612 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.586182, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.203986 ], [ 18.929443, 4.707828 ], [ 19.467773, 5.036227 ], [ 20.291748, 4.696879 ], [ 20.928955, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.028659 ], [ 22.708740, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.302002, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.125732, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } +{ "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.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.911267 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.145657 ], [ 27.048340, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.412137 ], [ 28.432617, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.948730, 4.171115 ], [ 30.838623, 3.513421 ], [ 30.772705, 2.339438 ], [ 31.179199, 2.207705 ], [ 30.849609, 1.845384 ], [ 30.465088, 1.581830 ], [ 30.091553, 1.065612 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.586182, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.203986 ], [ 18.929443, 4.707828 ], [ 19.467773, 5.036227 ], [ 20.291748, 4.696879 ], [ 20.928955, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.028659 ], [ 22.708740, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.302002, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.125732, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 34.617920, 4.850154 ], [ 35.299072, 5.506640 ] ] ] } } ] } @@ -649,13 +667,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.146729, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.206377 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.505935 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.009086 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.146729, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.084298 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.450861 ], [ 10.579834, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.146770 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.034486 ], [ 4.976807, 51.474540 ], [ 4.042969, 51.268789 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.169678, 57.967331 ], [ 25.598145, 57.844751 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.850342, 56.758746 ], [ 28.179932, 56.170023 ], [ 27.103271, 55.782751 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.102683 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.873291, 56.273861 ], [ 22.203369, 56.334812 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 25.169678, 57.967331 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.102683 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.762939, 54.844990 ], [ 25.532227, 54.284469 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.873291, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , @@ -731,15 +749,15 @@ , { "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": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.554443, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 73.948975, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.063944 ], [ 71.542969, 37.909534 ], [ 71.235352, 37.952861 ], [ 71.345215, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.191895, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.160476 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } , @@ -757,13 +775,13 @@ , { "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": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.824951, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.519775, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.172594 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.722986 ], [ 60.930176, 52.449314 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.548344 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.711670, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.644768 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.666036 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.787580 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.964463 ], [ 79.145508, 42.859860 ], [ 79.639893, 42.496403 ], [ 80.255127, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.839600, 42.843751 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.755080 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.014799 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } ] } @@ -801,10 +819,10 @@ , { "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.852051, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.390625, 0.878872 ], [ 110.852051, 0.878872 ] ] ] } } , +{ "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } , { "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": [ [ [ 132.352295, -11.124507 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.505371, -14.997852 ], [ 135.878906, -15.262989 ], [ 135.878906, -34.831841 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.088135, -32.851903 ], [ 134.274902, -32.620870 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.330566, -31.494262 ], [ 129.539795, -31.587894 ], [ 128.243408, -31.952162 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.222412, -32.962586 ], [ 124.024658, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.816162, -33.916013 ], [ 122.178955, -34.007135 ], [ 121.300049, -33.824794 ], [ 120.574951, -33.934245 ], [ 119.893799, -33.979809 ], [ 119.300537, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.509521, -34.750640 ], [ 118.026123, -35.065973 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.565186, -34.388779 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.718994, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.806885, -32.203505 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.806174 ], [ 114.620361, -28.516969 ], [ 114.169922, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.939209, -25.908644 ], [ 114.235840, -26.303264 ], [ 114.213867, -25.790000 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.686952 ], [ 113.389893, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.741455, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.830907 ], [ 115.455322, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.707764, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.234863, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.992920, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.973349 ], [ 120.860596, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.330683 ], [ 124.376221, -15.570128 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.364258, -14.870469 ], [ 128.990479, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.424040 ], [ 129.891357, -13.613956 ], [ 130.341797, -13.357554 ], [ 130.187988, -13.111580 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.737061, -12.307802 ], [ 132.572021, -12.114523 ], [ 132.561035, -11.598432 ], [ 131.824951, -11.275387 ], [ 132.352295, -11.124507 ] ] ] } } @@ -821,7 +839,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.691895, 27.771051 ], [ 92.098389, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.677848 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.446622 ], [ 104.721680, 17.424029 ], [ 103.952637, 18.239786 ], [ 103.205566, 18.312811 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.466592 ], [ 100.601807, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } , @@ -830,6 +848,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.455322, 5.451959 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.904887 ], [ 115.455322, 5.451959 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.152727 ], [ 134.769287, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , @@ -887,7 +907,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.886963, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.473832 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.532959, -7.351571 ], [ 157.335205, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.121338, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } , @@ -961,7 +981,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "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": "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } @@ -1225,19 +1245,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.318026 ], [ -71.707764, 18.046644 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.449097, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.103648 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , @@ -1260,6 +1278,8 @@ { "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": [ [ [ -87.050171, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.116089, 21.534847 ], [ -87.050171, 21.545066 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.926968 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.821655, 26.578702 ], [ -78.909302, 26.421390 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.403198, 23.115102 ], [ -80.617676, 23.104997 ], [ -79.678345, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.991943, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.172241, 22.385635 ], [ -81.793213, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.232178, 22.563293 ], [ -83.776245, 22.786311 ], [ -83.265381, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } ] } ] } , @@ -1285,17 +1305,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 75.969558 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 80.635422 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.635422 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.087440 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } ] } ] } , @@ -1331,9 +1351,9 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } -, { "type": "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.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , @@ -1353,9 +1373,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , { "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.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } ] } @@ -1368,8 +1388,6 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.198853, -12.629618 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.282471, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.171950 ], [ -57.678223, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.357794 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -66.747437, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.174567 ], [ -57.870483, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } ] } ] } , @@ -1379,8 +1397,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.682739, 10.757763 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.398804, 4.214943 ], [ -54.008789, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.421764 ], [ -55.975342, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.046265, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.025848 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } @@ -1401,17 +1417,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } -, { "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": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.127004 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } -, { "type": "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": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , @@ -1423,17 +1439,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } -, { "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": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } -, { "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": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } +, +{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } ] } ] } , @@ -1527,21 +1543,19 @@ , { "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } +{ "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.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.005904 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , @@ -1557,18 +1571,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.631077 ], [ -7.097168, 39.031986 ], [ -7.371826, 38.371809 ], [ -7.031250, 38.074041 ], [ -7.168579, 37.805444 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.099003 ], [ -7.855225, 36.840065 ], [ -8.382568, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.653383 ], [ -8.838501, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.860474, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } @@ -1649,12 +1667,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.814331, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.814331, 0.439449 ] ] ] } } +, { "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } , +{ "type": "Feature", "properties": { "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } @@ -1667,25 +1689,25 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.075459 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, +{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } @@ -1703,10 +1725,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.075459 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.579221 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } @@ -1721,40 +1743,40 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.037720, 41.894100 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.703125, 42.795401 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.862776 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.471694 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.649536, 50.050085 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.474987 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.683228, 52.089633 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } +, { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } ] } @@ -1765,10 +1787,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.203369, 56.337856 ] ] ] } } @@ -1823,15 +1845,15 @@ , { "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": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +{ "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.860352, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.860352, -21.534847 ] ] ] } } , { "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.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.860352, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , { "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": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } +{ "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -1843,20 +1865,24 @@ , { "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": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } +{ "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.525513, -2.805885 ], [ 30.745239, -3.036298 ], [ 30.750732, -3.359889 ], [ 30.503540, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.350415 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } , { "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": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, { "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } ] } ] } @@ -1865,13 +1891,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , @@ -1879,17 +1905,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 34.617920, 4.844681 ], [ 35.299072, 5.506640 ] ] ] } } ] } @@ -1897,17 +1921,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "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": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.670685 ], [ 33.898315, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.673096, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.573975, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , @@ -1917,8 +1945,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } @@ -1931,6 +1957,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.285723 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } @@ -1939,7 +1967,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , @@ -1947,6 +1975,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } @@ -1963,8 +1993,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } @@ -2054,6 +2082,8 @@ { "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.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , @@ -2071,23 +2101,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.926295 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.206299, 22.710323 ], [ 55.008545, 22.497332 ], [ 51.998291, 22.998852 ], [ 51.619263, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.021379 ], [ 52.575073, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.437012, 25.438314 ], [ 56.068726, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } ] } ] } , @@ -2104,6 +2132,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -2171,29 +2201,31 @@ { "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.978271, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.973267, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.500854, 20.153942 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.188721, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.254983 ], [ 77.541504, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.393677, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.822876, 20.421865 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.879343 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.978271, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.822742 ], [ 80.837402, 9.270201 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.216431, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.822742 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.978271, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.463514 ], [ 83.897095, 29.319931 ], [ 84.232178, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.416470 ], [ 87.225952, 26.396790 ], [ 86.022949, 26.632729 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.366889 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.524048, 30.424993 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.873901, 22.877440 ], [ 88.527832, 23.629427 ], [ 88.698120, 24.231938 ], [ 88.082886, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.445984 ] ] ] } } ] } ] } , @@ -2201,11 +2233,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.471694 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } ] } @@ -2275,17 +2309,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } -, -{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , @@ -2297,6 +2331,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.794654 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.131715 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.867676, 23.624395 ], [ 92.147827, 23.629427 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.676970 ], [ 94.603271, 25.160201 ], [ 95.152588, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.910156, 28.338230 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.466878 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.826538, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.172852, 22.466878 ] ] ] } } @@ -2389,15 +2425,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , @@ -2407,8 +2441,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.294371 ], [ 121.953735, 24.996016 ], [ 121.777954, 24.392130 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.968519 ], [ 120.217896, 22.816694 ], [ 120.108032, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.492310, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.191463 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.049052 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.172485, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.753344 ], [ 125.277100, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.389509 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 134.609985, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.572449 ], [ 135.439453, 33.664925 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.884097 ], [ 132.000732, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.885376, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.609985, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.368774, 33.463525 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } @@ -3349,8 +3381,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } @@ -3360,6 +3390,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } ] } ] } , @@ -3641,25 +3673,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } -, { "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": [ [ [ -77.898560, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.898560, 76.890745 ] ] ] } } +, +{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "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": "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } -, { "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": [ [ [ [ -78.969727, 77.379306 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -76.220398, 79.019097 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379306 ] ] ], [ [ [ -78.969727, 76.998081 ], [ -78.750000, 77.003024 ], [ -77.909546, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998081 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } -, { "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": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.047597 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.899800 ], [ -69.469299, 80.616633 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.633945 ], [ -73.880310, 79.430356 ], [ -76.907043, 79.323013 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -75.791931, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } ] } ] } , @@ -3741,9 +3773,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "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": "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } ] } ] } , @@ -3753,10 +3785,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.583618, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , { "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.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.811631 ], [ -67.107239, -22.735657 ] ] ] } } @@ -3857,17 +3889,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } -, { "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": [ [ [ -66.975403, 81.127169 ], [ -67.104492, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.931889 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } -, { "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": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628514 ], [ -61.894226, 82.361644 ], [ -64.333191, 81.927816 ], [ -66.752930, 81.725164 ], [ -67.500000, 81.540928 ], [ -67.656555, 81.501241 ], [ -67.500000, 81.501646 ], [ -65.481262, 81.506516 ], [ -67.104492, 81.093214 ], [ -67.236328, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } ] } ] } , @@ -3919,10 +3951,10 @@ { "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": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.709412, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.036961 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.088185 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } ] } ] } @@ -4259,30 +4291,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } -, { "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.035278, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , -{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } -, { "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": [ [ [ -11.030273, 26.929416 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.920996 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.375035 ], [ -12.873230, 23.284242 ], [ -13.117676, 22.771117 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.499695, 24.769278 ], [ -12.030029, 26.029638 ], [ -11.716919, 26.103654 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.929416 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.933347 ], [ -11.250000, 25.920996 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.873230, 23.284242 ], [ -11.936646, 23.375035 ], [ -11.969604, 25.933347 ] ] ] } } ] } ] } @@ -4381,52 +4413,52 @@ , { "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } , +{ "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +{ "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } -, { "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": [ [ [ -8.665466, 27.656771 ], [ -8.665466, 27.588632 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.920996 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.698999 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.860830 ], [ -9.736633, 26.860830 ], [ -9.412537, 27.088473 ], [ -8.794556, 27.120257 ], [ -8.816528, 27.656771 ], [ -8.665466, 27.656771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.793907 ], [ -4.924622, 24.973610 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.588632 ], [ -8.673706, 28.842268 ], [ -7.058716, 29.578234 ], [ -6.061707, 29.730992 ], [ -5.243225, 30.000138 ], [ -4.858704, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.637014 ], [ -3.067932, 31.723495 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -2.274170, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } @@ -4455,10 +4487,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.059388 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.867105 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.259752 ], [ -8.561096, 51.669148 ], [ -9.978333, 51.820500 ], [ -9.165344, 52.864156 ], [ -9.687195, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.572327, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.900838 ], [ -2.485657, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.900838 ] ] ], [ [ [ -1.653442, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.775943 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.680070 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.653442, 48.777913 ] ] ] ] } } ] } ] } @@ -4519,9 +4551,9 @@ , { "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +, +{ "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } ] } ] } , @@ -4529,18 +4561,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.376038, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.219727, 11.059821 ], [ -0.219727, 11.393879 ], [ 1.376038, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, { "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, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.129639, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } @@ -4551,16 +4583,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } ] } @@ -4597,12 +4629,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.533893 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.209655 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.215027, 40.813809 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.209655 ] ] ], [ [ [ 11.469727, 46.995241 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 10.511169, 42.932296 ], [ 10.200806, 43.919659 ], [ 9.703674, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.429260, 44.231425 ], [ 7.849731, 43.767127 ], [ 7.434998, 43.693694 ], [ 7.550354, 44.127028 ], [ 7.006531, 44.255036 ], [ 6.751099, 45.028892 ], [ 7.097168, 45.332840 ], [ 6.803284, 45.708097 ], [ 6.844482, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.162712 ], [ 8.489685, 46.004593 ], [ 8.967590, 46.037016 ], [ 9.181824, 46.439750 ], [ 9.923401, 46.314687 ], [ 10.362854, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 11.469727, 46.995241 ] ] ] ] } } @@ -4613,17 +4645,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } ] } ] } , @@ -4631,9 +4663,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.147769 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } ] } ] } , @@ -4723,10 +4755,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.719727, -11.011297 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.633552 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.931702 ], [ 18.956909, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.210815, -17.353260 ], [ 14.059753, -17.424029 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.216797, -17.111918 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.794896 ], [ 12.123413, -14.878433 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.738647, -13.138328 ], [ 13.312683, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.708191, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } , -{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } -, { "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": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.059753, -17.424029 ], [ 14.210815, -17.353260 ], [ 18.262024, -17.308688 ], [ 18.956909, -17.787920 ], [ 21.376648, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.633552 ], [ 22.719727, -17.978733 ], [ 22.500000, -18.028363 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.252828 ], [ 20.882263, -21.813058 ], [ 19.896240, -21.848753 ], [ 19.896240, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.673626 ], [ 12.609558, -19.046541 ], [ 11.793823, -18.070146 ], [ 11.733398, -17.300821 ], [ 12.216797, -17.111918 ], [ 12.812805, -16.941215 ] ] ] } } , +{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.978733 ], [ 22.719727, -22.146708 ], [ 19.896240, -22.146708 ], [ 19.896240, -21.848753 ], [ 20.882263, -21.813058 ], [ 20.909729, -18.252828 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.028363 ], [ 22.719727, -17.978733 ] ] ] } } @@ -4735,10 +4767,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } , +{ "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.933655, -7.596663 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } , { "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": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.795105, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } @@ -4749,18 +4781,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , { "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.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } -, { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -4773,12 +4805,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.938660, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } @@ -4803,12 +4835,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.831272 ], [ 11.030273, 37.088049 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.831272 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.131431 ], [ 11.030273, 33.440609 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.131431 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.830322, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.830322, 31.765537 ] ] ] ] } } ] } ] } @@ -4819,56 +4851,56 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.427307, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.030665 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.759501 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } @@ -4885,10 +4917,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.447733 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.325675 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.030622 ], [ 22.200623, 56.337856 ] ] ] } } @@ -4989,17 +5021,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } -, { "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.668091, -21.739091 ], [ 31.478577, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.660095, -22.151796 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.668091, -21.739091 ] ] ] } } , { "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": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.013916, -25.356437 ], [ 32.574463, -25.728158 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.217055 ], [ 32.829895, -26.743158 ], [ 32.071838, -26.733346 ], [ 31.986694, -26.290953 ], [ 31.838379, -25.844393 ], [ 31.753235, -25.485431 ], [ 31.931763, -24.369615 ], [ 31.670837, -23.659619 ], [ 31.190186, -22.250971 ], [ 31.478577, -21.943046 ], [ 31.668091, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } +, +{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.290953 ], [ 32.071838, -26.733346 ], [ 31.868591, -27.178912 ], [ 31.283569, -27.286367 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.399250 ], [ 30.948486, -26.022234 ], [ 31.044617, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -5007,19 +5039,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.837830, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.925476, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.192388 ], [ 23.930969, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.902844 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.557227 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.557227 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } -, { "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": [ [ [ 24.032593, -17.295576 ], [ 24.683533, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.084534, -17.662343 ], [ 24.521484, -17.887273 ], [ 24.216614, -17.889887 ], [ 23.579407, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.028363 ], [ 22.280273, -18.077979 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } , { "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": [ [ [ 30.275574, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.852112, -16.320139 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.478577, -21.943046 ], [ 31.289062, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.639558 ], [ 28.020630, -21.486297 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.850830, -18.713894 ], [ 25.650330, -18.536909 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.707764, -17.960445 ], [ 27.045593, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.468323, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.043174 ], [ 29.517517, -15.644197 ], [ 30.275574, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, { "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": [ [ [ 33.214417, -13.971385 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.392118 ], [ 33.969727, -22.146708 ], [ 31.289062, -22.146708 ], [ 31.478577, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.654114, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.852112, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.275574, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.214417, -13.971385 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } , { "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.432373, -22.090730 ] ] ] } } ] } @@ -5041,24 +5073,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "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": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.037003 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +, { "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": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } @@ -5071,12 +5103,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } @@ -5115,21 +5147,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.944946, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.101257, 43.741336 ], [ 25.567932, 43.687736 ], [ 26.065063, 43.943395 ], [ 27.243347, 44.176295 ], [ 27.971191, 43.812729 ], [ 28.558960, 43.707594 ], [ 28.039856, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.995911, 42.006448 ], [ 27.136230, 42.141005 ], [ 26.117249, 41.826595 ], [ 26.106262, 41.329389 ], [ 25.197144, 41.234446 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.308761 ], [ 22.953186, 41.337638 ], [ 22.881775, 41.998284 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.986145, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } ] } @@ -5157,10 +5189,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.915771, 61.606396 ], [ 28.070068, 60.503230 ], [ 26.254578, 60.423343 ], [ 24.496765, 60.057987 ], [ 22.870789, 59.846195 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.280273, 60.394862 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.078552, 55.776573 ], [ 26.630859, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.177185, 56.168494 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.838867, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.630859, 55.652798 ], [ 27.078552, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.177185, 56.168494 ] ] ] } } @@ -5269,10 +5301,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 39.336548, -10.962764 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.471619, -11.568835 ], [ 36.773987, -11.595741 ], [ 36.513062, -11.722167 ], [ 35.312805, -11.439647 ], [ 34.560242, -11.520396 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.336548, -10.962764 ] ] ] } } , -{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.560242, -11.520396 ], [ 34.280090, -12.280966 ], [ 34.560242, -13.579251 ], [ 34.906311, -13.565902 ], [ 35.268860, -13.888745 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.340271, -16.106514 ], [ 35.032654, -16.801912 ], [ 34.381714, -16.183024 ], [ 34.307556, -15.477504 ], [ 34.516296, -15.013769 ], [ 34.458618, -14.612821 ], [ 34.065857, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } , +{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } +, { "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": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.057642 ], [ 43.283386, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.893127, -21.163923 ], [ 43.895874, -20.830577 ], [ 44.373779, -20.071411 ], [ 44.464417, -19.435514 ], [ 44.233704, -18.960844 ], [ 44.044189, -18.331062 ], [ 43.961792, -17.410925 ], [ 44.313354, -16.849234 ], [ 44.445190, -16.217312 ], [ 44.945068, -16.180386 ], [ 45.000000, -16.159283 ], [ 45.219727, -16.077486 ] ] ] } } ] } ] } @@ -5285,11 +5317,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.950274 ], [ 34.071350, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.768250, -3.677892 ], [ 39.201965, -4.677717 ], [ 38.740540, -5.908385 ], [ 38.800964, -6.476338 ], [ 39.440918, -6.839170 ], [ 39.471130, -7.100893 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.485955 ], [ 39.537048, -9.112945 ], [ 39.949036, -10.098670 ], [ 40.317078, -10.317621 ], [ 39.520569, -10.898042 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.680359, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.280090, -10.160857 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.378612 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } , { "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": [ [ [ 40.317078, -10.317621 ], [ 40.479126, -10.765858 ], [ 40.462646, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.680359, -11.393879 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.520569, -10.898042 ], [ 40.317078, -10.317621 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } ] } ] } , @@ -5297,16 +5329,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.908830 ], [ 34.258118, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.530273, 10.471607 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 34.620667, 4.847417 ], [ 35.299072, 5.506640 ] ] ] } } @@ -5335,18 +5367,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "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": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } ] } ] } @@ -5361,22 +5393,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.665894, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } @@ -5501,9 +5533,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.703214 ], [ 46.947327, 7.996677 ], [ 47.790527, 8.002117 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 44.780273, 4.995186 ], [ 44.780273, 8.784654 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.790527, 8.002117 ], [ 46.947327, 7.996677 ], [ 45.000000, 8.703214 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.557556, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.677673, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } ] } ] } , @@ -5515,9 +5547,9 @@ , { "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": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.046644 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , @@ -5525,17 +5557,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 47.559814, 32.138409 ], [ 47.686157, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.686157, 30.984673 ], [ 48.004761, 30.984673 ], [ 48.015747, 30.453409 ], [ 48.567810, 29.926374 ], [ 47.974548, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.559814, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.239229 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5547,10 +5579,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.811730 ], [ 45.359802, 40.561808 ], [ 45.892639, 40.218733 ], [ 45.609741, 39.899202 ], [ 46.035461, 39.628961 ], [ 46.483154, 39.463764 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.319425 ], [ 45.738831, 39.474365 ], [ 45.299377, 39.472245 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.686157, 31.952162 ], [ 47.812500, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.458679, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.582407 ], [ 48.356323, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.883667, 38.320111 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.841980, 36.873029 ], [ 52.264709, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.511169, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.812500, 31.765537 ], [ 47.686157, 31.952162 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.092945 ], [ 46.076660, 35.677379 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.155939 ], [ 44.780273, 39.707187 ], [ 44.794006, 39.713525 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } @@ -5567,11 +5599,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.557556, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.157349, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } ] } ] } , @@ -5681,15 +5713,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "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": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.395847 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.395847 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.395847 ] ] ] } } -, -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } ] } ] } , @@ -5697,13 +5729,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.049052 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } ] } @@ -5713,9 +5745,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -5837,10 +5869,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } , { "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": [ [ [ 78.579712, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } @@ -5849,32 +5881,32 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , { "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": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } -, { "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": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.521342 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } @@ -6019,10 +6051,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.767022 ], [ 88.854675, 48.068903 ], [ 88.014221, 48.600225 ], [ 87.893372, 48.922499 ], [ 87.838440, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } @@ -6137,9 +6169,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.681702, 11.393879 ], [ 99.602051, 11.178402 ], [ 99.154358, 9.963440 ], [ 99.223022, 9.240382 ], [ 99.873962, 9.207849 ], [ 100.280457, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.747174 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.642783 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.847351 ], [ 99.519653, 7.343399 ], [ 98.989563, 7.906912 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.039001, 10.960068 ], [ 99.165344, 11.178402 ], [ 99.294434, 11.393879 ], [ 99.681702, 11.393879 ] ] ] } } , -{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.747174 ], [ 101.469727, 2.707122 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 100.695190, 3.938240 ], [ 100.557861, 4.768047 ], [ 100.198059, 5.312501 ], [ 100.305176, 6.039505 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.642783 ] ] ] } } +, +{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } ] } ] } , @@ -6153,9 +6185,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } ] } ] } , @@ -6307,13 +6339,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.810024 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.227934 ], [ 101.030273, 6.855532 ] ] ] } } , -{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.855286, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 107.221069, 10.363555 ], [ 106.405334, 9.530332 ], [ 105.158386, 8.600032 ], [ 104.795837, 9.240382 ], [ 105.075989, 9.917449 ], [ 104.334412, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.855286, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.472006 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 111.796875, 0.903588 ], [ 111.159668, 0.977736 ], [ 110.514221, 0.771766 ], [ 109.830322, 1.337464 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.371155, 2.696148 ], [ 111.796875, 2.885437 ], [ 112.500000, 3.011613 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.227934 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.810024 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.126900 ], [ 102.961121, 5.525777 ], [ 103.381348, 4.855628 ], [ 103.439026, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.230042, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.573853, 1.966167 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 101.030273, 3.551800 ], [ 101.030273, 6.227934 ] ] ] ] } } +, +{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } ] } ] } , @@ -6323,13 +6355,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.151123, 21.848753 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } ] } ] } , @@ -6489,13 +6521,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "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": "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.934606 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.110046, 11.393879 ] ] ] ] } } +, +{ "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } , @@ -6655,9 +6687,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "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": "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.307068, 8.781940 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.749094 ], [ 126.537781, 7.188101 ], [ 126.197205, 6.274348 ], [ 125.831909, 7.294363 ], [ 125.364990, 6.787353 ], [ 125.683594, 6.050430 ], [ 125.395203, 5.580451 ], [ 124.219666, 6.162401 ], [ 123.939514, 6.885527 ], [ 124.244385, 7.359743 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.530273, 7.727322 ], [ 123.530273, 8.638049 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.513119 ], [ 124.763489, 8.961045 ], [ 125.472107, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 125.697327, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.310401 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.358151 ], [ 124.801941, 10.133821 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.329529, 11.393879 ], [ 125.697327, 11.393879 ] ] ], [ [ [ 124.076843, 11.232286 ], [ 124.071350, 11.178402 ], [ 123.983459, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.517518 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.232286 ] ] ] ] } } +, +{ "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json index 0d0519620..599e72bff 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":160,\"tile_size_desired\":39222},{\"dropped_as_needed\":188,\"tile_size_desired\":25164},{\"dropped_as_needed\":190,\"tiny_polygons\":2,\"tile_size_desired\":21198},{\"dropped_as_needed\":180,\"tiny_polygons\":9,\"tile_size_desired\":10761},{\"dropped_as_needed\":145,\"tiny_polygons\":17,\"tile_size_desired\":6604},{\"tiny_polygons\":47}]", +"strategies": "[{\"dropped_as_needed\":163,\"tile_size_desired\":39196},{\"dropped_as_needed\":187,\"tile_size_desired\":25157},{\"dropped_as_needed\":189,\"tiny_polygons\":2,\"tile_size_desired\":21202},{\"dropped_as_needed\":182,\"tiny_polygons\":6,\"tile_size_desired\":10760},{\"dropped_as_needed\":147,\"tiny_polygons\":15,\"tile_size_desired\":6601},{\"tiny_polygons\":47}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,37 +17,31 @@ { "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.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -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.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.062500, 7.972198 ], [ -58.447266, 7.362467 ], [ -58.447266, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.128906, 5.965754 ], [ -57.304688, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.832031, 4.565474 ], [ -58.007812, 4.039618 ], [ -57.568359, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.128906, 2.811371 ], [ -56.513672, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.656250, 1.669686 ], [ -58.447266, 1.493971 ], [ -58.535156, 1.230374 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.757537 ], [ -59.941406, 2.723583 ], [ -59.853516, 3.601142 ], [ -59.501953, 3.951941 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.565474 ], [ -59.941406, 5.003394 ], [ -60.205078, 5.266008 ], [ -60.732422, 5.178482 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.227934 ], [ -61.171875, 6.664608 ], [ -60.292969, 7.013668 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -4.042969, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.933594, 57.704147 ], [ -2.197266, 56.848972 ], [ -3.076172, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.908902 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.781436 ], [ 1.406250, 51.289406 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.460938, 50.513427 ], [ -2.988281, 50.680797 ], [ -3.603516, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.951220 ], [ -5.800781, 50.176898 ], [ -4.306641, 51.234407 ], [ -3.427734, 51.399206 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.321911 ], [ -4.746094, 52.855864 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.383328 ], [ -2.988281, 54.007769 ], [ -3.603516, 54.622978 ], [ -4.833984, 54.775346 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.009766, 55.776573 ], [ -5.625000, 55.329144 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.797944 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.625000, 54.572062 ], [ -6.240234, 53.852527 ], [ -6.943359, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.382812, 54.572062 ], [ -7.558594, 55.128649 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.128906, 14.604847 ], [ -11.953125, 13.410994 ], [ -11.513672, 13.154376 ], [ -11.513672, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.480469, 12.297068 ], [ -13.183594, 12.554564 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.382928 ], [ -16.875000, 13.154376 ], [ -15.908203, 13.154376 ], [ -15.117188, 13.496473 ], [ -14.677734, 13.325485 ], [ -14.238281, 13.239945 ], [ -13.886719, 13.496473 ], [ -14.062500, 13.752725 ], [ -14.677734, 13.667338 ], [ -15.117188, 13.838080 ], [ -15.380859, 13.838080 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.349548 ], [ -17.666016, 14.689881 ], [ -17.226562, 14.944785 ], [ -16.435547, 16.130262 ], [ -16.083984, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.551962 ], [ -14.589844, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.316406, 7.885147 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.275292 ], [ -8.964844, 7.275292 ], [ -8.701172, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.349609, 6.926427 ], [ -8.613281, 6.489983 ], [ -7.558594, 5.703448 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -8.964844, 4.828260 ], [ -11.425781, 6.751896 ], [ -11.162109, 7.362467 ], [ -10.195312, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.124213 ], [ -57.744141, -51.563412 ], [ -58.007812, -51.890054 ], [ -59.414062, -52.214339 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.321911 ], [ -61.171875, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.124213 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.563412 ], [ 34.189453, 51.234407 ], [ 34.980469, 51.234407 ], [ 35.419922, 50.792047 ], [ 35.332031, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.894634 ], [ 38.583984, 49.951220 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.872144 ], [ 38.759766, 47.813155 ], [ 38.232422, 47.517201 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.040182 ], [ 36.738281, 46.679594 ], [ 35.859375, 46.619261 ], [ 34.980469, 46.255847 ], [ 34.980469, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.562500, 45.460131 ], [ 36.298828, 45.089036 ], [ 35.244141, 44.964798 ], [ 33.925781, 44.339565 ], [ 33.310547, 44.590467 ], [ 33.574219, 45.026950 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.828799 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.640625, 46.679594 ], [ 30.761719, 46.558860 ], [ 30.410156, 46.012224 ], [ 29.619141, 45.274886 ], [ 29.179688, 45.460131 ], [ 28.652344, 45.274886 ], [ 28.212891, 45.460131 ], [ 28.476562, 45.583290 ], [ 28.916016, 46.255847 ], [ 28.828125, 46.437857 ], [ 29.091797, 46.498392 ], [ 29.179688, 46.377254 ], [ 30.058594, 46.437857 ], [ 29.794922, 46.498392 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.920255 ], [ 29.443359, 47.338823 ], [ 29.091797, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.107431 ], [ 28.300781, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.894531, 48.341646 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.872144 ], [ 24.873047, 47.754098 ], [ 24.433594, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.166085 ], [ 22.060547, 48.400032 ], [ 22.587891, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.466797, 50.289339 ], [ 23.906250, 50.401515 ], [ 23.994141, 50.680797 ], [ 23.554688, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 26.367188, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.563412 ], [ 28.652344, 51.454007 ], [ 29.003906, 51.618017 ], [ 29.267578, 51.344339 ], [ 30.146484, 51.399206 ], [ 30.585938, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.268157 ], [ 32.695312, 52.214339 ], [ 33.750000, 52.321911 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.041016, 23.483401 ], [ 13.623047, 23.079732 ], [ 14.150391, 22.512557 ], [ 14.853516, 22.836946 ], [ 15.117188, 21.289374 ], [ 15.468750, 21.043491 ], [ 15.468750, 20.715015 ], [ 15.908203, 20.385825 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.895114 ], [ 15.205078, 16.636192 ], [ 13.974609, 15.707663 ], [ 13.535156, 14.349548 ], [ 13.974609, 14.008696 ], [ 13.974609, 13.325485 ], [ 14.589844, 13.325485 ], [ 14.501953, 12.897489 ], [ 14.238281, 12.811801 ], [ 14.150391, 12.468760 ], [ 13.974609, 12.468760 ], [ 13.359375, 13.581921 ], [ 13.095703, 13.581921 ], [ 12.304688, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.722656, 13.239945 ], [ 10.107422, 13.239945 ], [ 9.492188, 12.811801 ], [ 9.052734, 12.811801 ], [ 7.822266, 13.325485 ], [ 7.294922, 13.068777 ], [ 6.855469, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.449219, 13.838080 ], [ 4.394531, 13.752725 ], [ 4.130859, 13.496473 ], [ 3.955078, 12.983148 ], [ 3.691406, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.197266, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.054688, 12.811801 ], [ 0.966797, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.263672, 14.434680 ], [ 0.351562, 14.944785 ], [ 1.054688, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.603516, 15.538376 ], [ 3.691406, 16.214675 ], [ 4.306641, 16.888660 ], [ 4.306641, 19.145168 ], [ 5.712891, 19.642588 ], [ 8.613281, 21.534847 ], [ 12.041016, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.730469, 35.675147 ], [ 24.257812, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.191406, 35.029996 ], [ 24.697266, 34.885931 ], [ 24.697266, 35.101934 ], [ 23.554688, 35.245619 ], [ 23.730469, 35.675147 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.630859, 41.574361 ], [ 26.279297, 40.913513 ], [ 26.015625, 40.847060 ], [ 24.960938, 40.979898 ], [ 23.730469, 40.713956 ], [ 24.433594, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.378906, 39.977120 ], [ 22.851562, 40.446947 ], [ 22.587891, 40.245992 ], [ 22.851562, 39.639538 ], [ 23.378906, 39.164141 ], [ 22.939453, 38.959409 ], [ 23.994141, 38.203655 ], [ 24.082031, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.300275 ], [ 23.115234, 36.456636 ], [ 22.500000, 36.385913 ], [ 21.708984, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.654297, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.708984, 40.913513 ], [ 22.060547, 41.178654 ], [ 22.587891, 41.112469 ], [ 22.939453, 41.310824 ], [ 23.730469, 41.310824 ], [ 24.521484, 41.574361 ], [ 25.224609, 41.244772 ], [ 26.103516, 41.310824 ], [ 26.103516, 41.836828 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.578535 ], [ 28.916016, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.728516, 31.428663 ], [ 31.992188, 30.902225 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.075375 ], [ 34.189453, 27.839076 ], [ 33.925781, 27.683528 ], [ 33.134766, 28.381735 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.695312, 28.690588 ], [ 34.101562, 26.115986 ], [ 34.804688, 25.005973 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.725012 ], [ 35.507812, 23.079732 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.228890 ], [ 24.697266, 30.069094 ], [ 24.960938, 30.675715 ], [ 24.785156, 31.052934 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.578535 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.795678 ], [ 1.494141, 9.362353 ], [ 1.669922, 9.102097 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.527344, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 39.023438, 16.804541 ], [ 39.287109, 15.961329 ], [ 41.220703, 14.519780 ], [ 42.626953, 12.983148 ], [ 43.066406, 12.726084 ], [ 42.802734, 12.468760 ], [ 42.363281, 12.554564 ], [ 40.869141, 14.093957 ], [ 39.990234, 14.519780 ], [ 39.375000, 14.519780 ], [ 39.111328, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.944785 ], [ 37.617188, 14.179186 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.177734, 17.224758 ], [ 37.880859, 17.392579 ], [ 38.408203, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.486328, 35.029996 ], [ 33.837891, 35.101934 ], [ 34.013672, 34.957995 ], [ 32.958984, 34.597042 ], [ 32.519531, 34.669359 ], [ 32.255859, 35.101934 ], [ 33.398438, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 38.479395 ], [ 71.367188, 38.272689 ], [ 71.279297, 37.926868 ], [ 71.542969, 37.926868 ], [ 71.455078, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.020098 ], [ 73.300781, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.091797, 36.809285 ], [ 71.806641, 36.527295 ], [ 71.279297, 36.102376 ], [ 71.630859, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.191406, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.960938, 34.016242 ], [ 70.312500, 33.358062 ], [ 69.697266, 33.137551 ], [ 69.257812, 32.472695 ], [ 69.345703, 31.877558 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.578535 ], [ 67.675781, 31.278551 ], [ 66.972656, 31.278551 ], [ 66.357422, 30.751278 ], [ 66.357422, 29.916852 ], [ 65.039062, 29.458731 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.305561 ], [ 63.544922, 29.458731 ], [ 62.578125, 29.305561 ], [ 60.908203, 29.840644 ], [ 61.787109, 30.751278 ], [ 61.699219, 31.353637 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.175612 ], [ 60.556641, 32.990236 ], [ 60.996094, 33.504759 ], [ 60.556641, 33.651208 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.245619 ], [ 63.017578, 35.389050 ], [ 63.193359, 35.889050 ], [ 63.984375, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.775391, 37.090240 ], [ 65.566406, 37.300275 ], [ 65.742188, 37.649034 ], [ 66.181641, 37.370157 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.020098 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.521484, 37.579413 ], [ 70.136719, 37.579413 ], [ 70.400391, 38.134557 ], [ 70.839844, 38.479395 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 53.085938, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.623037 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.373047, 13.581921 ], [ 45.615234, 13.325485 ], [ 45.000000, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.208984, 12.554564 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 42.890625, 14.774883 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.284185 ], [ 42.714844, 15.707663 ], [ 42.802734, 15.876809 ], [ 42.802734, 16.383391 ], [ 43.242188, 16.636192 ], [ 43.154297, 17.056785 ], [ 43.417969, 17.560247 ], [ 43.769531, 17.308688 ], [ 45.175781, 17.392579 ], [ 46.406250, 17.224758 ], [ 46.757812, 17.308688 ], [ 47.021484, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.145852 ], [ 49.130859, 18.646245 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 92.109375, 27.449790 ], [ 92.021484, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.857422, 27.137368 ], [ 88.857422, 27.293689 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.988281, 41.376809 ], [ 48.603516, 41.836828 ], [ 49.658203, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.361328, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.218750, 39.027719 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.076172, 39.571822 ], [ 47.724609, 39.504041 ], [ 46.494141, 38.754083 ], [ 46.494141, 39.436193 ], [ 45.615234, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.780541 ], [ 45.175781, 40.979898 ], [ 45.000000, 41.244772 ], [ 45.175781, 41.442726 ], [ 45.966797, 41.112469 ], [ 46.494141, 41.046217 ], [ 46.669922, 41.178654 ], [ 46.142578, 41.705729 ], [ 46.406250, 41.836828 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.000000, 39.707187 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.824219, 39.707187 ], [ 45.000000, 39.707187 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.328125, 41.376809 ], [ 141.943359, 39.977120 ], [ 141.855469, 39.164141 ], [ 140.976562, 38.203655 ], [ 140.976562, 37.160317 ], [ 140.625000, 36.315125 ], [ 140.800781, 35.817813 ], [ 140.273438, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.431441 ], [ 135.087891, 33.870416 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.187500, 33.870416 ], [ 130.957031, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.308594, 31.428663 ], [ 130.693359, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.284620 ], [ 130.341797, 33.578015 ], [ 130.869141, 34.234512 ], [ 131.923828, 34.741612 ], [ 132.626953, 35.460670 ], [ 134.648438, 35.746512 ], [ 135.703125, 35.532226 ], [ 136.757812, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.394531, 38.203655 ], [ 140.097656, 39.436193 ], [ 139.921875, 40.580585 ], [ 140.273438, 41.178654 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 133.945312, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.736328, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.769531, 33.504759 ], [ 133.242188, 33.284620 ], [ 132.978516, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.431441 ], [ 132.890625, 34.089061 ], [ 133.505859, 33.943360 ], [ 133.945312, 34.379713 ] ] ], [ [ [ 141.943359, 45.521744 ], [ 143.173828, 44.527843 ], [ 143.876953, 44.150681 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.546875, 43.261206 ], [ 144.052734, 43.004647 ], [ 143.173828, 41.967659 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.921875, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.273438, 43.325178 ], [ 141.416016, 43.389082 ], [ 141.943359, 45.521744 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.926295 ], [ 56.865234, 24.206890 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.563987 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.512557 ], [ 59.765625, 22.350076 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.468189 ], [ 57.832031, 20.220966 ], [ 57.656250, 19.725342 ], [ 57.832031, 19.062118 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.062312 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.613281, 16.720385 ], [ 53.085938, 16.636192 ], [ 52.031250, 18.979026 ], [ 55.019531, 19.973349 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.674847 ], [ 55.195312, 23.079732 ], [ 55.546875, 23.563987 ], [ 55.546875, 23.966176 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.425781, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.513672, 26.273714 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.337891, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 35.859375, 5.353521 ], [ 35.859375, 4.740675 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.144531, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.781250, 4.214943 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.108899 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.814453, -3.688855 ], [ 39.638672, -4.390229 ], [ 39.199219, -4.653080 ], [ 37.792969, -3.688855 ], [ 37.705078, -3.074695 ], [ 33.925781, -0.966751 ], [ 33.925781, 0.087891 ], [ 35.068359, 1.933227 ], [ 34.453125, 3.513421 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 98.261719, 27.761330 ], [ 98.701172, 27.527758 ], [ 98.701172, 25.958045 ], [ 97.734375, 25.085599 ], [ 97.646484, 23.885838 ], [ 98.701172, 24.046464 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.917923 ], [ 99.228516, 22.105999 ], [ 100.458984, 21.534847 ], [ 101.162109, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.371094, 20.797201 ], [ 100.107422, 20.385825 ], [ 99.580078, 20.220966 ], [ 98.964844, 19.725342 ], [ 98.261719, 19.725342 ], [ 97.822266, 18.646245 ], [ 97.382812, 18.479609 ], [ 97.822266, 17.560247 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.284185 ], [ 98.173828, 15.114553 ], [ 98.437500, 14.604847 ], [ 99.140625, 13.838080 ], [ 99.228516, 12.811801 ], [ 99.580078, 11.867351 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.660608 ], [ 98.789062, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.207031, 16.888660 ], [ 95.361328, 15.707663 ], [ 94.218750, 16.045813 ], [ 94.570312, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.691406, 19.725342 ], [ 93.076172, 19.890723 ], [ 92.373047, 20.632784 ], [ 92.285156, 21.453069 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.024546 ], [ 93.164062, 22.268764 ], [ 93.076172, 22.674847 ], [ 93.251953, 23.079732 ], [ 93.339844, 24.046464 ], [ 94.130859, 23.885838 ], [ 94.570312, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.185547, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.226970 ], [ 97.910156, 28.304381 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.441022 ], [ 115.312500, 4.302591 ], [ 114.873047, 4.390229 ], [ 114.697266, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.488281, 5.441022 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.167969, -8.928487 ], [ 32.783203, -9.188870 ], [ 33.222656, -9.709057 ], [ 33.486328, -10.487812 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.468760 ], [ 32.958984, -12.811801 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 29.531250, -15.623037 ], [ 28.916016, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.070312, -17.978733 ], [ 25.224609, -17.727759 ], [ 24.697266, -17.392579 ], [ 23.994141, -17.308688 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.695273 ], [ 23.994141, -11.264612 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.919618 ], [ 24.345703, -11.264612 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.953349 ], [ 27.158203, -11.609193 ], [ 27.421875, -12.125264 ], [ 28.125000, -12.297068 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.476562, -9.188870 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } -, -{ "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": [ [ [ 68.906250, -48.632909 ], [ 69.609375, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.576172, -49.267805 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.267805 ], [ 68.906250, -48.632909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.228437 ], [ 162.158203, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.279297, -10.228437 ] ] ], [ [ [ 159.697266, -9.275622 ], [ 160.400391, -9.362353 ], [ 160.839844, -9.882275 ], [ 159.873047, -9.795678 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.275622 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.718750, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.751953, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.362467 ], [ 159.609375, -8.059230 ], [ 159.960938, -8.581021 ], [ 159.169922, -8.146243 ], [ 158.203125, -7.449624 ], [ 158.378906, -7.362467 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.148438, -7.013668 ], [ 157.500000, -7.362467 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.188101 ], [ 156.533203, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } ] } ] } , @@ -63,19 +57,19 @@ { "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.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.783203, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.853290 ], [ -77.211914, 17.685895 ], [ -77.783203, 17.853290 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.437925 ], [ -77.783203, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.928675 ], [ -77.431641, 7.623887 ], [ -77.739258, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -80.024414, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.210938, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.624472 ], [ -82.880859, 8.798225 ], [ -82.705078, 8.928487 ], [ -82.924805, 9.058702 ], [ -82.924805, 9.492408 ], [ -82.529297, 9.579084 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -69.960938, 12.168226 ], [ -69.565430, 11.480025 ], [ -68.862305, 11.436955 ], [ -68.247070, 10.876465 ], [ -68.203125, 10.574222 ], [ -67.280273, 10.531020 ], [ -66.225586, 10.660608 ], [ -65.654297, 10.185187 ], [ -64.907227, 10.098670 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.875000, 10.703792 ], [ -62.709961, 10.401378 ], [ -62.402344, 9.968851 ], [ -61.567383, 9.882275 ], [ -60.820312, 9.362353 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.624472 ], [ -59.765625, 8.363693 ], [ -60.556641, 7.798079 ], [ -60.644531, 7.406048 ], [ -60.292969, 7.057282 ], [ -60.556641, 6.839170 ], [ -61.171875, 6.708254 ], [ -61.127930, 6.227934 ], [ -61.391602, 5.965754 ], [ -60.732422, 5.178482 ], [ -60.600586, 4.915833 ], [ -60.952148, 4.521666 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.127285 ], [ -64.819336, 4.039618 ], [ -64.379883, 3.776559 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.324219, 3.337954 ], [ -67.324219, 3.557283 ], [ -67.631836, 3.820408 ], [ -67.807617, 4.521666 ], [ -67.763672, 5.222247 ], [ -67.500000, 5.572250 ], [ -67.324219, 6.096860 ], [ -67.675781, 6.271618 ], [ -68.247070, 6.140555 ], [ -68.994141, 6.227934 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.970049 ], [ -70.664062, 7.100893 ], [ -71.938477, 6.970049 ], [ -72.202148, 7.318882 ], [ -72.465820, 7.406048 ], [ -72.465820, 7.623887 ], [ -72.377930, 8.015716 ], [ -72.421875, 8.407168 ], [ -72.641602, 8.624472 ], [ -72.773438, 9.102097 ], [ -73.300781, 9.145486 ], [ -73.037109, 9.752370 ], [ -72.905273, 10.444598 ], [ -72.597656, 10.833306 ], [ -72.246094, 11.092166 ], [ -71.982422, 11.609193 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.523088 ], [ -71.938477, 11.436955 ], [ -71.630859, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.882275 ], [ -71.674805, 9.058702 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.838979 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.962764 ], [ -70.136719, 11.393879 ], [ -70.312500, 11.867351 ], [ -69.960938, 12.168226 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ], [ -60.908203, 10.876465 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.128649 ], [ -7.382812, 54.597528 ], [ -7.558594, 54.059388 ], [ -6.943359, 54.085173 ], [ -6.196289, 53.878440 ], [ -6.020508, 53.146770 ], [ -6.767578, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.808615 ], [ -9.184570, 52.855864 ], [ -9.667969, 53.878440 ], [ -7.558594, 55.128649 ] ] ] } } , -{ "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": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.710938, 12.254128 ], [ -13.842773, 12.125264 ], [ -13.754883, 11.824341 ], [ -13.886719, 11.695273 ], [ -14.106445, 11.695273 ], [ -14.370117, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.049038 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.699219, 12.382928 ], [ -16.127930, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.640338 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.966140 ], [ 0.000000, 21.779905 ], [ 1.801758, 20.591652 ], [ 2.065430, 20.138470 ], [ 3.164062, 19.683970 ], [ 3.164062, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.538376 ], [ 2.768555, 15.411319 ], [ 1.406250, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.000000, 14.944785 ], [ -0.263672, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.054688, 14.987240 ], [ -2.021484, 14.562318 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.795406 ], [ -3.120117, 13.539201 ], [ -3.515625, 13.325485 ], [ -3.999023, 13.453737 ], [ -4.262695, 13.239945 ], [ -4.438477, 12.554564 ], [ -5.229492, 11.695273 ], [ -5.185547, 11.393879 ], [ -5.449219, 10.962764 ], [ -5.405273, 10.358151 ], [ -6.064453, 10.098670 ], [ -6.196289, 10.531020 ], [ -6.503906, 10.401378 ], [ -6.679688, 10.444598 ], [ -6.855469, 10.141932 ], [ -7.602539, 10.141932 ], [ -7.910156, 10.314919 ], [ -8.041992, 10.185187 ], [ -8.349609, 10.487812 ], [ -8.261719, 10.790141 ], [ -8.393555, 10.919618 ], [ -8.613281, 10.790141 ], [ -8.569336, 11.135287 ], [ -8.393555, 11.393879 ], [ -8.789062, 11.824341 ], [ -8.920898, 12.082296 ], [ -9.140625, 12.297068 ], [ -9.316406, 12.340002 ], [ -9.887695, 12.039321 ], [ -10.151367, 11.824341 ], [ -10.590820, 11.910354 ], [ -10.854492, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.469727, 12.082296 ], [ -11.513672, 12.425848 ], [ -11.469727, 12.768946 ], [ -11.557617, 13.154376 ], [ -11.909180, 13.410994 ], [ -12.128906, 14.008696 ], [ -12.172852, 14.604847 ], [ -11.821289, 14.817371 ], [ -11.645508, 15.368950 ], [ -11.337891, 15.411319 ], [ -10.634766, 15.114553 ], [ -10.107422, 15.326572 ], [ -9.711914, 15.284185 ], [ -9.536133, 15.496032 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.214675 ], [ -5.493164, 16.341226 ], [ -6.459961, 24.966140 ], [ -4.921875, 24.966140 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.141932 ], [ -5.405273, 10.358151 ], [ -5.449219, 10.962764 ], [ -5.185547, 11.393879 ], [ -5.229492, 11.695273 ], [ -4.438477, 12.554564 ], [ -4.262695, 13.239945 ], [ -3.999023, 13.453737 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.288086, -3.425692 ], [ -80.288086, -3.513421 ], [ -80.419922, -3.513421 ], [ -80.288086, -3.425692 ] ] ], [ [ [ -78.178711, -3.513421 ], [ -77.827148, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.541992, -1.581830 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.131836 ], [ -75.102539, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -1.010690 ], [ -73.652344, -1.274309 ], [ -73.081055, -2.328460 ], [ -72.333984, -2.416276 ], [ -71.762695, -2.152814 ], [ -71.411133, -2.328460 ], [ -70.795898, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.532227, -3.513421 ], [ -78.178711, -3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.318990 ], [ 1.669922, 9.145486 ], [ 1.625977, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.571289, 6.926427 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 9.449062 ], [ 0.351562, 10.185187 ], [ 0.000000, 10.660608 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.043945, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.254128 ], [ 3.515625, 11.738302 ], [ 3.515625, 9.838979 ], [ 2.900391, 9.145486 ], [ 2.724609, 8.494105 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.145486 ], [ 1.450195, 9.318990 ], [ 1.406250, 9.838979 ], [ 0.791016, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.450195, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.504883, 12.254128 ], [ 2.856445, 12.254128 ] ] ] } } ] } ] } , @@ -87,11 +81,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.416276 ], [ 30.541992, -2.811371 ], [ 30.761719, -3.030812 ], [ 30.761719, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.355469, -4.521666 ], [ 29.267578, -3.294082 ], [ 29.003906, -2.855263 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.232249 ], [ 33.750000, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.288086, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.804541 ], [ 34.365234, -16.172473 ], [ 34.321289, -15.496032 ], [ 34.497070, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.793945, -14.434680 ], [ 33.222656, -13.966054 ], [ 32.695312, -13.710035 ], [ 33.002930, -12.768946 ], [ 33.310547, -12.425848 ], [ 33.134766, -11.609193 ], [ 33.310547, -10.790141 ], [ 33.486328, -10.531020 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.232249 ] ] ] } } +{ "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.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.823242, -13.068777 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "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.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ] } } ] } ] } , @@ -101,37 +95,39 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.096623 ], [ 15.512695, 50.792047 ], [ 16.259766, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.205033 ], [ 16.875000, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.666016, 50.035974 ], [ 18.413086, 49.979488 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.413086, 49.325122 ], [ 18.149414, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.009051 ], [ 17.885742, 48.893615 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.806863 ], [ 16.962891, 48.603858 ], [ 16.479492, 48.777913 ], [ 16.040039, 48.719961 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.951366 ], [ 14.326172, 48.545705 ], [ 13.579102, 48.864715 ], [ 13.051758, 49.296472 ], [ 12.524414, 49.553726 ], [ 12.436523, 49.979488 ], [ 12.260742, 50.261254 ], [ 12.963867, 50.485474 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.930738 ], [ 14.326172, 51.124213 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.040039, 48.719961 ], [ 16.479492, 48.777913 ], [ 16.962891, 48.603858 ], [ 16.875000, 48.458352 ], [ 16.962891, 48.136767 ], [ 16.918945, 47.724545 ], [ 16.347656, 47.724545 ], [ 16.523438, 47.487513 ], [ 16.215820, 46.860191 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.649436 ], [ 14.633789, 46.437857 ], [ 13.798828, 46.498392 ], [ 12.392578, 46.769968 ], [ 12.172852, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.739861 ], [ 10.458984, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.624023, 47.338823 ], [ 9.580078, 47.517201 ], [ 9.887695, 47.576526 ], [ 10.415039, 47.309034 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.612305, 47.665387 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.875977, 48.283193 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.864715 ], [ 14.326172, 48.545705 ], [ 14.897461, 48.951366 ], [ 15.249023, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.819336, 42.488302 ], [ 20.083008, 42.585444 ], [ 20.302734, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.610352, 41.869561 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.005859, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.516689 ], [ 19.643555, 43.229195 ], [ 19.951172, 43.100983 ], [ 20.346680, 42.908160 ], [ 20.083008, 42.585444 ], [ 19.819336, 42.488302 ], [ 19.731445, 42.682435 ], [ 19.291992, 42.195969 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 18.457031, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.720703, 43.197167 ], [ 19.204102, 43.516689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.893555, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.800685 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.695312, 53.357109 ], [ 32.299805, 53.120405 ], [ 31.508789, 53.173119 ], [ 31.289062, 53.067627 ], [ 31.552734, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.937500, 52.052490 ], [ 30.629883, 51.835778 ], [ 30.541992, 51.316881 ], [ 30.146484, 51.426614 ], [ 29.267578, 51.371780 ], [ 29.003906, 51.590723 ], [ 28.608398, 51.426614 ], [ 28.256836, 51.563412 ], [ 27.465820, 51.590723 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.565430, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.482780 ], [ 23.818359, 52.696361 ], [ 23.818359, 53.094024 ], [ 23.510742, 53.461890 ], [ 23.466797, 53.904338 ], [ 24.433594, 53.904338 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.499023, 55.603178 ], [ 27.114258, 55.776573 ], [ 28.168945, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.873047, 56.365250 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.603178 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.904338 ], [ 23.466797, 53.904338 ], [ 23.247070, 54.213861 ], [ 22.719727, 54.316523 ], [ 22.631836, 54.572062 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.002826 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.267761 ], [ 24.873047, 56.365250 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.145570 ], [ 22.763672, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.574361 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.458352 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.107431 ], [ 29.135742, 47.842658 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.338823 ], [ 29.575195, 46.920255 ], [ 29.926758, 46.679594 ], [ 29.838867, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.346928 ], [ 29.179688, 46.377254 ], [ 29.091797, 46.528635 ], [ 28.872070, 46.437857 ], [ 28.916016, 46.255847 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.583290 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.168945, 46.377254 ], [ 28.125000, 46.800059 ], [ 26.938477, 48.136767 ], [ 26.630859, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.895508, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.060547, 41.145570 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.869561 ], [ 20.698242, 41.836828 ], [ 20.742188, 42.065607 ], [ 21.357422, 42.195969 ], [ 21.928711, 42.293564 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.016602, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.369141, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.435547, 7.754537 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.880746 ], [ 6.459961, 13.496473 ], [ 6.811523, 13.111580 ], [ 7.338867, 13.111580 ], [ 7.822266, 13.325485 ], [ 9.008789, 12.811801 ], [ 9.536133, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.368243 ], [ 11.513672, 13.325485 ], [ 12.304688, 13.025966 ], [ 13.095703, 13.581921 ], [ 13.315430, 13.539201 ], [ 13.974609, 12.468760 ], [ 14.194336, 12.468760 ], [ 14.589844, 12.082296 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.790141 ], [ 13.183594, 9.622414 ], [ 12.963867, 9.405710 ], [ 12.744141, 8.711359 ], [ 12.216797, 8.320212 ], [ 12.084961, 7.798079 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.970049 ], [ 11.074219, 6.664608 ], [ 10.502930, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.536133, 6.446318 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.307708 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.940322 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.449219, 13.880746 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 33.969727, 35.065973 ], [ 33.881836, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.398438, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.200195, 32.546813 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.765537 ], [ 35.375977, 31.503629 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.244141, 31.765537 ], [ 34.980469, 31.877558 ], [ 35.200195, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.547200 ], [ 45.878906, 40.212441 ], [ 45.615234, 39.909736 ], [ 46.054688, 39.639538 ], [ 46.494141, 39.470125 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.747070, 39.334297 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.707187 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.245992 ], [ 43.769531, 40.747257 ], [ 43.593750, 41.079351 ], [ 44.956055, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 42.758789, 12.468760 ], [ 42.363281, 12.554564 ], [ 42.011719, 12.854649 ], [ 41.616211, 13.453737 ], [ 41.176758, 13.752725 ], [ 40.913086, 14.136576 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.496094, 14.519780 ], [ 37.924805, 14.944785 ], [ 37.573242, 14.221789 ], [ 36.430664, 14.434680 ], [ 36.342773, 14.817371 ], [ 36.738281, 16.299051 ], [ 36.870117, 16.972741 ], [ 37.177734, 17.266728 ], [ 37.924805, 17.434511 ], [ 38.408203, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.222656, 12.168226 ], [ 33.090820, 11.436955 ], [ 33.222656, 10.703792 ], [ 33.706055, 10.314919 ], [ 33.837891, 9.968851 ], [ 33.837891, 9.492408 ], [ 33.969727, 9.449062 ], [ 33.969727, 8.667918 ], [ 33.837891, 8.363693 ], [ 33.310547, 8.363693 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.288086, 5.484768 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.860352, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.179688, 4.390229 ], [ 28.696289, 4.434044 ], [ 28.432617, 4.302591 ], [ 27.993164, 4.390229 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.235352, 6.533645 ], [ 25.795898, 6.970049 ], [ 25.136719, 7.493196 ], [ 25.136719, 7.841615 ], [ 23.906250, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.795678 ], [ 25.048828, 10.271681 ], [ 25.795898, 10.401378 ], [ 26.499023, 9.535749 ], [ 26.762695, 9.449062 ], [ 27.114258, 9.622414 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.098670 ], [ 30.014648, 10.271681 ], [ 30.849609, 9.709057 ], [ 31.333008, 9.795678 ], [ 31.860352, 10.531020 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.926013 ], [ 55.546875, 23.523700 ], [ 55.239258, 23.120154 ], [ 55.195312, 22.715390 ], [ 55.019531, 22.512557 ], [ 51.987305, 22.998852 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.553147 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 51.987305, 19.020577 ], [ 55.019531, 20.014645 ], [ 55.678711, 21.983801 ], [ 55.195312, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.546875, 23.523700 ], [ 55.546875, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.381836, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.898438, 51.508742 ], [ 102.084961, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.289339 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.261254 ], [ 107.885742, 49.781264 ], [ 108.457031, 49.296472 ], [ 109.423828, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.323242, 47.842658 ], [ 117.290039, 47.694974 ], [ 118.081055, 48.078079 ], [ 118.872070, 47.754098 ], [ 119.750977, 47.040182 ], [ 119.663086, 46.679594 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 115.971680, 45.736860 ], [ 114.477539, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.840820, 43.739352 ], [ 111.137695, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.985352, 41.607228 ], [ 104.501953, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.821289, 42.520700 ], [ 100.854492, 42.650122 ], [ 99.536133, 42.520700 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.714732 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.702148, 44.339565 ], [ 93.471680, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.571289, 45.706179 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.078079 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.703125, 50.345460 ], [ 92.241211, 50.792047 ], [ 93.120117, 50.485474 ], [ 94.130859, 50.485474 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } +{ "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": [ [ [ 77.827148, 35.496456 ], [ 78.925781, 34.307144 ], [ 78.793945, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.442383, 32.620870 ], [ 78.750000, 31.503629 ], [ 79.716797, 30.864510 ], [ 81.123047, 30.183122 ], [ 80.463867, 29.726222 ], [ 80.068359, 28.806174 ], [ 81.079102, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.320312, 27.371767 ], [ 84.682617, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.071980 ], [ 88.857422, 27.098254 ], [ 89.736328, 26.706360 ], [ 90.351562, 26.863281 ], [ 91.230469, 26.824071 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.713867, 27.761330 ], [ 92.504883, 27.877928 ], [ 93.427734, 28.652031 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.338867, 28.265682 ], [ 97.382812, 27.877928 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.254630 ], [ 95.141602, 26.588527 ], [ 95.141602, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.086914, 23.845650 ], [ 93.339844, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.076172, 22.715390 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.024546 ], [ 92.153320, 23.644524 ], [ 91.889648, 23.604262 ], [ 91.713867, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.450195, 24.086589 ], [ 91.933594, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.165173 ], [ 90.878906, 25.125393 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.958045 ], [ 89.340820, 25.997550 ], [ 88.549805, 26.431228 ], [ 88.198242, 25.760320 ], [ 88.945312, 25.244696 ], [ 88.286133, 24.846565 ], [ 88.066406, 24.487149 ], [ 88.681641, 24.246965 ], [ 88.549805, 23.644524 ], [ 88.857422, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 68.862305, 24.367114 ], [ 71.059570, 24.367114 ], [ 70.839844, 25.204941 ], [ 70.268555, 25.720735 ], [ 70.180664, 26.509905 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.278320, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.223633, 34.741612 ], [ 75.761719, 34.488448 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.183594, 20.756114 ], [ 104.414062, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.221789 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 126.254883, 37.857507 ], [ 126.694336, 37.788081 ], [ 127.089844, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.364258, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.713612 ], [ 30.761719, -2.284551 ], [ 30.454102, -2.416276 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } +{ "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": [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.389648, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ] } } +, +{ "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": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } ] } ] } , @@ -179,25 +175,25 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.496094, 15.008464 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.562012, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.113727 ], [ -83.649902, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.199219, 10.790141 ], [ -84.353027, 11.005904 ], [ -84.682617, 11.092166 ], [ -84.902344, 10.962764 ], [ -85.561523, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.468760 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.011719, 13.025966 ], [ -86.879883, 13.261333 ], [ -86.726074, 13.261333 ], [ -86.748047, 13.752725 ], [ -86.308594, 13.774066 ], [ -86.088867, 14.030015 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.966054 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.056152, 14.541050 ], [ -84.924316, 14.796128 ], [ -84.814453, 14.817371 ], [ -84.638672, 14.668626 ], [ -84.440918, 14.626109 ], [ -84.221191, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.627930, 14.881087 ], [ -83.496094, 15.008464 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.562988, 9.622414 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.739258, 8.950193 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.515836 ], [ -77.233887, 7.928675 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.341953 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.624472 ], [ -82.858887, 8.798225 ], [ -82.727051, 8.928487 ], [ -82.924805, 9.080400 ], [ -82.924805, 9.470736 ], [ -82.551270, 9.557417 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.630859, 19.165924 ], [ -71.696777, 18.791918 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.312811 ], [ -71.718750, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.041421 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.107422, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.854004, 4.587376 ], [ -57.919922, 4.806365 ], [ -57.304688, 5.069058 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -57.304688, 5.069058 ], [ -57.919922, 4.806365 ], [ -57.854004, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.434044 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.227934 ], [ -61.149902, 6.686431 ], [ -60.534668, 6.860985 ], [ -60.292969, 7.035476 ], [ -60.644531, 7.406048 ], [ -60.556641, 7.776309 ], [ -59.765625, 8.363693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.911621, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.686041 ], [ -4.987793, 36.332828 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.966309, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.501117 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.316643 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.943359, 54.072283 ], [ -7.580566, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.178868 ] ] ] ] } } , -{ "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": [ [ [ -15.556641, 12.618897 ], [ -13.710938, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.392090, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.325684, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.811035, 27.664069 ], [ -8.789062, 27.117813 ], [ -9.404297, 27.098254 ], [ -9.733887, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 27.000408 ], [ -11.381836, 26.882880 ], [ -11.711426, 26.096255 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.493964 ], [ -17.028809, 21.412162 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.706063 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.505371, 15.114553 ], [ -1.076660, 14.966013 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.346865 ], [ -3.999023, 13.475106 ], [ -4.284668, 13.218556 ], [ -4.416504, 12.533115 ], [ -5.229492, 11.716788 ], [ -5.207520, 11.372339 ], [ -5.471191, 10.941192 ], [ -5.405273, 10.379765 ], [ -5.822754, 10.228437 ], [ -6.042480, 10.098670 ], [ -6.196289, 10.531020 ], [ -6.503906, 10.401378 ], [ -6.657715, 10.422988 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.910156, 10.293301 ], [ -8.020020, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.415527, 10.919618 ], [ -8.613281, 10.811724 ], [ -8.591309, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.802834 ], [ -8.898926, 12.082296 ], [ -9.118652, 12.318536 ], [ -9.338379, 12.340002 ], [ -9.887695, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.590820, 11.931852 ], [ -10.876465, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.447754, 12.082296 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.747516 ], [ -11.557617, 13.132979 ], [ -11.931152, 13.432367 ], [ -12.128906, 13.987376 ], [ -12.172852, 14.626109 ], [ -11.843262, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.359863, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.689941, 15.262989 ], [ -9.558105, 15.496032 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.193575 ], [ -5.493164, 16.320139 ], [ -6.459961, 24.966140 ], [ -4.921875, 24.966140 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.496032 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.796128 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "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.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.793457, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.196289, 10.531020 ], [ -6.042480, 10.098670 ], [ -5.822754, 10.228437 ], [ -5.405273, 10.379765 ], [ -4.943848, 10.141932 ], [ -4.790039, 9.817329 ], [ -4.328613, 9.600750 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.834473, 9.644077 ], [ -2.570801, 8.211490 ], [ -2.988281, 7.384258 ], [ -3.251953, 6.249776 ], [ -2.812500, 5.397273 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.514648, 4.346411 ], [ -7.712402, 4.368320 ], [ -7.624512, 5.178482 ], [ -7.536621, 5.309766 ], [ -7.580566, 5.703448 ], [ -7.998047, 6.118708 ], [ -8.305664, 6.184246 ], [ -8.613281, 6.468151 ], [ -8.393555, 6.904614 ], [ -8.481445, 7.406048 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.305664, 8.320212 ], [ -8.195801, 8.450639 ], [ -7.822266, 8.581021 ], [ -8.085938, 9.384032 ], [ -8.305664, 9.795678 ], [ -8.239746, 10.120302 ], [ -7.910156, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.657715, 10.422988 ], [ -6.503906, 10.401378 ], [ -6.196289, 10.531020 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.446318 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +{ "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": [ [ [ [ -91.757812, 70.058092 ], [ -91.757812, 70.392606 ], [ -91.516113, 70.192550 ], [ -91.757812, 70.058092 ] ] ], [ [ [ -80.354004, 73.757352 ], [ -78.068848, 73.652545 ], [ -76.333008, 73.105800 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.874402 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.757352 ] ] ], [ [ [ -85.825195, 73.806447 ], [ -86.572266, 73.156808 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.349128 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.559692 ], [ -71.191406, 70.916641 ], [ -68.796387, 70.524897 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.185993 ], [ -68.796387, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -62.709961, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.115234, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.641602, 67.280530 ], [ -72.927246, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.552351 ], [ -76.860352, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.277832, 69.771356 ], [ -78.178711, 69.824471 ], [ -78.947754, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.765206 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.475276 ], [ -89.428711, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.806447 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.926273 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.505299 ], [ -67.829590, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.169434, 79.800637 ], [ -73.234863, 79.635922 ], [ -73.872070, 79.428340 ], [ -76.904297, 79.323013 ], [ -75.520020, 79.196075 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.333008, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.019692 ], [ -77.893066, 76.775629 ], [ -80.551758, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.470633 ], [ -89.626465, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.264160, 77.901861 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.330566, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.100098, 79.347411 ], [ -86.506348, 79.738196 ], [ -86.923828, 80.249670 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.463150 ], [ -84.089355, 80.578943 ], [ -87.604980, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.651033 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.419434, 82.858847 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.129495 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.124512, 68.007571 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.441229 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.233887, 67.584098 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -91.757812, 69.626510 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.616534 ], [ -88.308105, 67.875541 ], [ -87.341309, 67.195518 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.801724 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.210938, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.600849 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -86.352539, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.626510 ] ] ], [ [ [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.374512, 75.480640 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.408070 ], [ -88.154297, 74.390342 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.604004, 76.780655 ] ] ], [ [ [ -91.757812, 74.013493 ], [ -90.505371, 73.855397 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.013493 ] ] ], [ [ [ -91.757812, 80.987131 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.659613 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.273737 ], [ -91.757812, 80.987131 ] ] ] ] } } ] } ] } , @@ -211,11 +207,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.691649 ], [ 30.761719, -2.284551 ], [ 30.476074, -2.416276 ], [ 29.948730, -2.350415 ], [ 29.641113, -2.921097 ], [ 29.025879, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.218684 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } , { "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": [ [ [ 30.278320, -15.517205 ], [ 30.344238, -15.876809 ], [ 31.179199, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.860352, -16.320139 ], [ 32.321777, -16.383391 ], [ 32.849121, -16.720385 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.493964 ], [ 27.729492, -20.858812 ], [ 27.729492, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.169434, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.542117 ], [ 25.268555, -17.727759 ], [ 26.389160, -17.853290 ], [ 26.696777, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.937988, -16.045813 ], [ 29.509277, -15.644197 ], [ 30.278320, -15.517205 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.333496, -29.248063 ], [ 28.850098, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.637912 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.844674 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.664960 ], [ 25.268555, -17.727759 ], [ 25.642090, -18.542117 ], [ 25.839844, -18.708692 ], [ 26.169434, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.488773 ], [ 27.729492, -20.858812 ], [ 28.015137, -21.493964 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.836946 ], [ 27.114258, -23.584126 ], [ 26.784668, -24.246965 ], [ 26.477051, -24.607069 ], [ 25.949707, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.587891, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.895996, -26.824071 ], [ 20.676270, -26.470573 ], [ 20.764160, -25.859224 ], [ 20.170898, -24.926295 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.250220 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.664960 ] ] ] } } ] } ] } , @@ -223,41 +219,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.146770 ], [ 6.833496, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.998535, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.261915 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.084473, 52.975108 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.611816, 51.740636 ], [ 15.007324, 51.110420 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.110420 ], [ 14.062500, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.601074, 48.879167 ], [ 13.249512, 48.414619 ], [ 12.875977, 48.283193 ], [ 13.029785, 47.635784 ], [ 12.941895, 47.472663 ], [ 12.612305, 47.665387 ], [ 12.150879, 47.709762 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.561701 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.576526 ], [ 9.602051, 47.532038 ], [ 8.525391, 47.827908 ], [ 8.327637, 47.620975 ], [ 7.470703, 47.620975 ], [ 7.602539, 48.327039 ], [ 8.107910, 49.023461 ], [ 6.657715, 49.196064 ], [ 6.196289, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.998535, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.833496, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.006348, 44.855869 ], [ 18.544922, 45.089036 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 45.011419 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.809122 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.567978 ], [ 19.819336, 49.210420 ], [ 20.412598, 49.425267 ], [ 20.895996, 49.325122 ], [ 21.599121, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.808105, 48.618385 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.195387 ], [ 19.665527, 48.268569 ], [ 19.182129, 48.107431 ], [ 18.786621, 48.078079 ], [ 18.698730, 47.886881 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.872144 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 48.994636 ], [ 18.105469, 49.037868 ], [ 18.171387, 49.267805 ], [ 18.391113, 49.310799 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.918457, 49.439557 ], [ 19.313965, 49.567978 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.961914, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.908160 ], [ 21.445312, 42.859860 ], [ 21.643066, 42.682435 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.577148, 42.244785 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.853196 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.212245 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.892064 ], [ 20.632324, 43.213183 ], [ 20.808105, 43.277205 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.585444 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.456543, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.027832, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.313965, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.239309 ], [ 39.748535, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.042478 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.288574, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.179688, 46.377254 ], [ 29.750977, 46.346928 ], [ 30.014648, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.421387, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.842658 ], [ 28.674316, 48.122101 ], [ 28.256836, 48.151428 ], [ 27.531738, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.411621, 47.975214 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.092757 ], [ 22.719727, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.785645, 49.023461 ], [ 22.521973, 49.482401 ], [ 23.422852, 50.303376 ], [ 23.928223, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.532715, 51.577070 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.334473, 51.917168 ], [ 26.345215, 51.835778 ], [ 27.443848, 51.590723 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.426614 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.412912 ], [ 30.563965, 51.316881 ], [ 30.629883, 51.822198 ], [ 30.937500, 52.038977 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.851315 ], [ 25.532227, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.917281 ], [ 23.247070, 54.226708 ], [ 22.741699, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.884277, 56.267761 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.708496, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.198205 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.182204 ], [ 27.971191, 43.818675 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.478565 ], [ 8.151855, 34.651285 ], [ 7.514648, 34.089061 ], [ 7.602539, 33.339707 ], [ 8.437500, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.315988 ], [ 9.799805, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.946219 ], [ 10.305176, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.463246 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.601194 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.142090, 19.683970 ], [ 2.680664, 19.849394 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.791691 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.232655 ], [ 3.603516, 11.652236 ], [ 3.581543, 11.329253 ], [ 3.801270, 10.725381 ], [ 3.603516, 10.336536 ], [ 3.713379, 10.055403 ], [ 3.229980, 9.449062 ], [ 2.922363, 9.145486 ], [ 2.724609, 8.515836 ], [ 2.746582, 7.863382 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.482910, 12.232655 ], [ 2.856445, 12.232655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 11.135287 ], [ 22.983398, 10.703792 ], [ 23.554688, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.400879, 9.275622 ], [ 23.466797, 8.950193 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.114746, 7.493196 ], [ 25.795898, 6.970049 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.943900 ], [ 27.224121, 5.550381 ], [ 27.377930, 5.244128 ], [ 27.048340, 5.134715 ], [ 26.411133, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.136719, 4.937724 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.291016, 4.609278 ], [ 22.851562, 4.718778 ], [ 22.697754, 4.631179 ], [ 22.412109, 4.039618 ], [ 21.665039, 4.214943 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.025283 ], [ 18.940430, 4.718778 ], [ 18.544922, 4.193030 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.547988 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.842332 ], [ 14.941406, 4.214943 ], [ 14.479980, 4.740675 ], [ 14.567871, 5.025283 ], [ 14.458008, 5.441022 ], [ 14.545898, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.493196 ], [ 16.281738, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.699219, 7.514981 ], [ 17.973633, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.808594, 8.993600 ], [ 19.094238, 9.080400 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.574222 ], [ 22.236328, 10.962764 ], [ 22.873535, 11.135287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 35.173808 ], [ 33.376465, 35.155846 ], [ 33.464355, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.530273, 35.029996 ], [ 33.684082, 35.012002 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.200684, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.009277, 18.999803 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.165039, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.072645 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.936035, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.504503 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.492676, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.295410, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.306152, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.805935 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.159180, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.341309, 12.533115 ], [ 42.011719, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.221789 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.387617 ], [ 43.945312, 37.247821 ], [ 44.296875, 37.002553 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.101934 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.098633, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.935895 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 44.714355, 29.171349 ], [ 41.879883, 31.184609 ], [ 40.407715, 31.896214 ], [ 39.199219, 32.157012 ], [ 38.781738, 33.376412 ], [ 41.000977, 34.415973 ], [ 41.374512, 35.621582 ], [ 41.286621, 36.350527 ], [ 41.835938, 36.597889 ], [ 42.341309, 37.230328 ], [ 42.780762, 37.387617 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.725098, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.985352, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.468750, 41.228249 ], [ 61.545410, 41.261291 ], [ 61.875000, 41.079351 ], [ 62.380371, 40.061257 ], [ 63.522949, 39.368279 ], [ 64.160156, 38.891033 ], [ 65.214844, 38.410558 ], [ 66.555176, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.657296 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.926868 ], [ 55.502930, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.492676, 41.787697 ], [ 52.954102, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.049293 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.106934, 41.327326 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.228516, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.656738, 22.004175 ], [ 55.217285, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.876465, 24.926295 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 48.493652, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.156250, 9.817329 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.740234, 34.325292 ], [ 74.113770, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.158691, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.367114 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.765231 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.864258, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.928711, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.509762 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.147461, 34.343436 ], [ 71.125488, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.657296 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.844461 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.606934, 3.052754 ], [ 35.046387, 1.911267 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.695312, 3.798484 ], [ 33.398438, 3.798484 ], [ 34.013672, 4.258768 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } ] } ] } , @@ -277,7 +275,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , -{ "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.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.634351 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.429199, -37.961523 ], [ 178.000488, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.264160, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.329664 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.371610 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } ] } ] } , @@ -285,9 +283,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.116068 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.691895, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.767074 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.522906 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.611816, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.958427 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.336914, 23.342256 ], [ 105.820312, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.228090 ], [ 107.050781, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.898042 ], [ 106.259766, 10.962764 ], [ 105.820312, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.622070, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.556152, 15.199386 ], [ 107.314453, 15.919074 ], [ 106.545410, 16.594081 ], [ 105.095215, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.194336, 19.621892 ], [ 104.831543, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.172852, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.513184, 22.695120 ], [ 104.479980, 22.816694 ], [ 105.336914, 23.342256 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.562318 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.820312, 11.566144 ], [ 106.259766, 10.962764 ], [ 105.205078, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.227051, 14.264383 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.562318 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.692995 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.694336, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.770996, 38.307181 ], [ 128.210449, 38.376115 ], [ 128.342285, 38.616870 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } ] } ] } , @@ -385,7 +383,7 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } +{ "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.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.698212 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.136963, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.148193, -52.348763 ], [ -68.576660, -52.301761 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.673835 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.652588, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.334229, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.147217, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } ] } ] } , @@ -395,7 +393,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.247812 ], [ -70.927734, -4.401183 ], [ -71.751709, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.631870 ], [ -73.729248, -6.915521 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.575439, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.005904 ], [ -70.092773, -11.124507 ], [ -69.532471, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.884277, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.254883, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.628906, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.875216 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.107118 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.206787, -32.731841 ], [ -53.646240, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.811035, -34.397845 ], [ -54.931641, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.434098 ], [ -57.821045, -34.461277 ], [ -58.425293, -33.906896 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.036298 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.211608 ], [ -56.975098, -30.107118 ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.875792 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.766785 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.127591 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.788818, -26.617997 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.036298 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.422852, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } , { "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": [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.260653 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.185018 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -69.005127, -27.518015 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.818115, -33.275435 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.817871, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.685791, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.505400 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.710837 ], [ -70.400391, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.367432, -18.344098 ], [ -69.862061, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } ] } @@ -405,17 +403,17 @@ { "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": [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.036377, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.354980, 39.147103 ], [ -76.541748, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.550105 ], [ -76.365967, 34.804783 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.732393 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.468691 ], [ -80.529785, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.075648 ], [ -81.166992, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.104177 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.640320 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.278044 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.859727 ], [ -77.080078, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.033237 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.826172, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.979248, 21.892084 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.308105, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.297119, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.846436, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.389620 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.485107, 15.019075 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.660889, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.000732, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.737061, 13.261333 ], [ -86.759033, 13.752725 ], [ -86.517334, 13.774066 ], [ -86.308594, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.955392 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.924316, 14.785505 ], [ -84.825439, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.627930, 14.881087 ], [ -83.485107, 15.019075 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.221510 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 10.995120 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.660889, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.924805, 9.069551 ], [ -82.716064, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.492408 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.561523, 11.221510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.652934 ], [ -69.774170, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.620361, 18.385805 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -71.004639, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.949463, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.949463, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.377930, 18.218916 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.454590, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.545654, 7.776309 ], [ -60.633545, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.238855 ], [ -61.413574, 5.954827 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.808838, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.204102, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.807617, 2.822344 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.546318 ], [ -67.620850, 3.842332 ], [ -67.818604, 4.499762 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.443848, 7.427837 ], [ -72.476807, 7.634776 ], [ -72.355957, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.624472 ], [ -72.784424, 9.080400 ], [ -73.300781, 9.156333 ], [ -73.026123, 9.741542 ], [ -72.905273, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.224121, 11.113727 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.356201, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.973550 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.973550 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -57.304688, 5.069058 ], [ -57.908936, 4.817312 ], [ -57.864990, 4.576425 ], [ -58.040771, 4.061536 ], [ -57.601318, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.117676, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.820557, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.954827 ], [ -61.138916, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } , @@ -431,13 +429,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } +{ "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": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.968994, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.256104, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.893066, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.982624 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.992188, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.505371, 73.855397 ], [ -90.878906, 73.640171 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } +{ "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.233838 ] ] ] ] } } ] } ] } , @@ -463,15 +461,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.503662, 39.631077 ], [ -7.064209, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.624633 ], [ -14.051514, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.710693, 13.293411 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.282719 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.402832, 13.859414 ], [ -15.084229, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.464422 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.109131, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.559814, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.240967, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.581021 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 10.908830 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } ] } ] } , @@ -509,21 +509,21 @@ , { "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": 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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } , -{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } +{ "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": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.131518 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.284551 ], [ 30.465088, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.921097 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.421143, -1.131518 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.465088, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.113525, -4.094411 ], [ 29.750977, -4.455951 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.630127, -2.921097 ], [ 29.937744, -2.350415 ] ] ] } } , -{ "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": [ [ [ 30.278320, -15.506619 ], [ 30.344238, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.849365, -16.320139 ], [ 32.332764, -16.393931 ], [ 32.849121, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.662842, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.848545 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.290406 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.531700 ], [ 25.268555, -17.738223 ], [ 26.378174, -17.842833 ], [ 26.707764, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.891411 ], [ 35.683594, -14.615478 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.376221, -16.183024 ], [ 34.310303, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.464111, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.793945, -14.455958 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.779661 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.800933 ], [ 33.486328, -10.520219 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , { "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": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.981201, -26.293415 ], [ 31.838379, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.709863 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.008464 ], [ 34.310303, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.903564, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } , -{ "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": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.307861, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } -, { "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.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.014893, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } ] } ] } , @@ -531,39 +531,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.680664, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.796510 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.916992, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.666266 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 20.004322 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.678955, 28.139816 ], [ 9.854736, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.491943, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.389893, 9.264779 ], [ 23.455811, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.125732, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.401123, 4.028659 ], [ 21.654053, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.214943 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.413566 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.896030 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.387617 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.517822, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.156006, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.212288 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.466064, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.746556 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.029541, 1.395126 ], [ 13.282471, 1.318243 ], [ 13.007812, 1.834403 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.150146, 1.966167 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.127686, 3.732708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.870850, 35.092945 ], [ 33.969727, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.724089 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.189209, 32.528289 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.001465, 32.008076 ], [ 37.001953, 31.512996 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.484893 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.837158, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.806749 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.110352, 17.088291 ], [ 43.385010, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.550049, 11.102947 ], [ 42.319336, 11.038255 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } +, +{ "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.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.911267 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } ] } @@ -573,35 +575,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.084298 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.450861 ], [ 10.579834, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.603027, 51.034486 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.127622 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.796387, 52.689702 ], [ 23.203125, 52.489470 ], [ 23.510742, 52.025459 ], [ 23.521729, 51.577070 ], [ 24.027100, 50.708634 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.575102 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.644043, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.864014, 50.471491 ], [ 16.721191, 50.219095 ], [ 16.171875, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.093008 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.875000, 48.472921 ], [ 16.984863, 48.122101 ], [ 16.907959, 47.717154 ], [ 16.336670, 47.709762 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.809814, 46.505954 ], [ 12.381592, 46.769968 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.052246, 46.754917 ], [ 10.447998, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.591064, 47.524620 ], [ 9.898682, 47.576526 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.290503 ], [ 13.238525, 48.414619 ], [ 13.601074, 48.879167 ], [ 14.337158, 48.552978 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.863656 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.003651 ], [ 15.963135, 45.236218 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.292480, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.710938, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.797363, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.819092, 43.269206 ], [ 20.961914, 43.133061 ], [ 21.148682, 43.068888 ], [ 21.269531, 42.908160 ], [ 21.434326, 42.859860 ], [ 21.632080, 42.674359 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.317939 ], [ 21.577148, 42.244785 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.884015 ], [ 20.632324, 43.213183 ], [ 20.819092, 43.269206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.349150 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.072021, 42.585444 ], [ 19.797363, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.709717, 43.197167 ], [ 19.028320, 43.428988 ], [ 19.215088, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.102683 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.762939, 54.844990 ], [ 25.532227, 54.284469 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.873291, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.797363, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.025206 ], [ 36.760254, 46.702202 ], [ 35.826416, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.739502, 46.331758 ], [ 31.673584, 46.709736 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.943511 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.410400, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.137207, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.323486, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.217353 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.125000, 46.807580 ], [ 28.157959, 46.369674 ], [ 28.059082, 45.943511 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.553467, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.070557, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.126556 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.137207, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.949707, 47.989922 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.299805, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.300049, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.323486, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.521729, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.158757 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.047852, 47.509780 ], [ 29.410400, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.904785, 46.672056 ], [ 29.838867, 46.528635 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.943511 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.490946 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.125000, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.370848 ], [ 27.520752, 48.465637 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.019853 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.358544 ], [ 10.513916, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.771094 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } , -{ "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": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.556510 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.660839 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.047669 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.788929 ], [ 29.366455, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.850342, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.505935 ], [ 30.212402, 61.778319 ], [ 31.135254, 62.359805 ], [ 31.519775, 62.870179 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.946813 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.146729, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.416748 ], [ 43.945312, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } ] } ] } , @@ -645,27 +647,25 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.773682, 27.916767 ], [ 70.620117, 27.984700 ], [ 69.510498, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.279541, 25.720735 ], [ 70.839844, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.368408, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.244156 ], [ 63.314209, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.381523 ], [ 62.731934, 28.256006 ], [ 61.776123, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.545166, 29.315141 ], [ 63.544922, 29.468297 ], [ 64.149170, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.306715 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.500496 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.352507 ], [ 71.114502, 34.732584 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.648369 ], [ 71.257324, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.916260, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.426187 ], [ 49.724121, 11.576907 ], [ 50.262451, 11.684514 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.264779 ], [ 81.298828, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.343018, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.828154 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.835205, 25.967922 ], [ 89.923096, 25.274504 ], [ 90.000000, 25.254633 ], [ 90.867920, 25.135339 ], [ 90.878906, 25.135339 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.390714 ], [ 90.274658, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.861499 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.634460 ], [ 88.703613, 24.236947 ], [ 88.088379, 24.497146 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.234758 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } ] } ] } , @@ -673,11 +673,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.142578, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } -, -{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.964463 ], [ 79.145508, 42.859860 ], [ 79.639893, 42.496403 ], [ 80.255127, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.839600, 42.843751 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } ] } ] } , @@ -713,7 +713,7 @@ , { "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.852051, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.390625, 0.878872 ], [ 110.852051, 0.878872 ] ] ] } } ] } ] } , @@ -723,15 +723,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.835205, 25.967922 ], [ 89.923096, 25.274504 ], [ 90.000000, 25.254633 ], [ 90.867920, 25.135339 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.976099 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.624395 ], [ 92.669678, 22.044913 ], [ 92.647705, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.197216 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.187405 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.390714 ], [ 90.274658, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.861499 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.710205, 20.694462 ], [ 105.886230, 19.756364 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.269665 ], [ 104.183350, 19.621892 ], [ 104.820557, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.677848 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.772461, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.462891, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.112061, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.753344 ], [ 126.232910, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.255436 ], [ 127.781982, 38.307181 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.826416, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.267414 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.275030 ], [ 120.992432, 14.530415 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.169189, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.173425 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.451959 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.125244, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.425293, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.568359, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , @@ -843,7 +843,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "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": "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -1075,19 +1075,19 @@ { "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": [ [ [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.000000, 17.816686 ], [ -90.439453, 17.816686 ], [ -90.439453, 20.730428 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.776245, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.997852 ], [ -83.490601, 15.013769 ], [ -83.627930, 14.881087 ], [ -83.973999, 14.748323 ], [ -84.226685, 14.748323 ], [ -84.451904, 14.620794 ], [ -84.649658, 14.668626 ], [ -84.819946, 14.817371 ], [ -84.924316, 14.790817 ], [ -85.050659, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.512085, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.094360, 14.040673 ], [ -86.314087, 13.768731 ], [ -86.522827, 13.779402 ], [ -86.753540, 13.752725 ], [ -86.731567, 13.261333 ], [ -86.879883, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.843414 ], [ -88.538818, 13.982046 ], [ -88.840942, 14.141902 ], [ -89.060669, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.060669, 14.338904 ], [ -88.840942, 14.141902 ], [ -88.538818, 13.982046 ], [ -88.505859, 13.843414 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.136576 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.318026 ], [ -71.707764, 18.046644 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.449097, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.103648 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , @@ -1127,13 +1127,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } +{ "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": [ [ [ [ -90.439453, 75.969558 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } +{ "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": [ [ [ [ -90.439453, 80.635422 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.635422 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.087440 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } ] } ] } , @@ -1169,7 +1169,7 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } +{ "type": "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.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } ] } ] } , @@ -1185,7 +1185,7 @@ { "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": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , @@ -1223,13 +1223,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +{ "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": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.127004 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +{ "type": "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": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } ] } ] } , @@ -1241,13 +1241,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } +{ "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": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } +{ "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": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } ] } ] } , @@ -1337,27 +1337,27 @@ , { "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } +{ "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.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.005904 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.439453, 11.005904 ], [ 0.439453, 8.857934 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , @@ -1365,19 +1365,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.294248 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.099003 ], [ -7.536621, 37.426888 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.031986 ], [ -7.498169, 39.631077 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } , @@ -1449,11 +1449,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.814331, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.814331, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , @@ -1465,25 +1465,25 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.075459 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.268188, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.752075, 15.411319 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.439453, 15.056210 ], [ -0.439453, 22.075459 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.075459 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, +{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } @@ -1495,13 +1495,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.533447, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.533447, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.075459 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.579221 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , @@ -1513,43 +1511,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } , { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } @@ -1559,7 +1559,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.551147, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.193792 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.991577, 61.799093 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 15.551147, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } , @@ -1613,11 +1613,11 @@ , { "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": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +{ "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.860352, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.860352, -21.534847 ] ] ] } } , -{ "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": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } ] } @@ -1627,7 +1627,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.319092, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.995483, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.439449 ], [ 43.319092, 0.439449 ] ] ] } } , -{ "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } +{ "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": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } , @@ -1637,13 +1637,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } , { "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": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } , { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } ] } @@ -1653,22 +1653,22 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 34.617920, 4.844681 ], [ 35.299072, 5.506640 ] ] ] } } @@ -1677,30 +1677,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "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": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.670685 ], [ 33.898315, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.673096, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.573975, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.784217 ], [ 35.397949, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.756196 ], [ 34.974976, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } @@ -1711,22 +1711,22 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.241577, 54.220285 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.807373, 53.090725 ], [ 23.801880, 52.689702 ], [ 23.197632, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.426019 ], [ 23.428345, 50.306884 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.970459, 55.081512 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.156001 ], [ 31.788940, 53.975474 ], [ 31.734009, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.573656 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.197632, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.904338 ], [ 25.537720, 54.281262 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.166319 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.767944, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } @@ -1739,7 +1739,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , @@ -1817,9 +1817,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.442505, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.418787 ], [ 44.560547, 22.350076 ], [ 55.442505, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , @@ -1829,25 +1829,25 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.884450 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } ] } ] } , @@ -1857,11 +1857,11 @@ , { "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": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -1935,16 +1935,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +, { "type": "Feature", "properties": { "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": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } @@ -1955,7 +1955,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , { "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": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } , @@ -2025,15 +2025,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.301636, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } -, -{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , @@ -2131,11 +2131,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , @@ -3071,8 +3071,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } @@ -3082,6 +3080,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } ] } ] } , @@ -3363,25 +3363,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } -, { "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": [ [ [ -77.898560, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.898560, 76.890745 ] ] ] } } +, +{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "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": "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } -, { "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": [ [ [ [ -78.969727, 77.379306 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -76.220398, 79.019097 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379306 ] ] ], [ [ [ -78.969727, 76.998081 ], [ -78.750000, 77.003024 ], [ -77.909546, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998081 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } -, { "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": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.047597 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.899800 ], [ -69.469299, 80.616633 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.633945 ], [ -73.880310, 79.430356 ], [ -76.907043, 79.323013 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -75.791931, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } ] } ] } , @@ -3463,9 +3463,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "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": "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } ] } ] } , @@ -3475,10 +3475,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.583618, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , { "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.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.811631 ], [ -67.107239, -22.735657 ] ] ] } } @@ -3579,17 +3579,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } -, { "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": [ [ [ -66.975403, 81.127169 ], [ -67.104492, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.931889 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } -, { "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": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628514 ], [ -61.894226, 82.361644 ], [ -64.333191, 81.927816 ], [ -66.752930, 81.725164 ], [ -67.500000, 81.540928 ], [ -67.656555, 81.501241 ], [ -67.500000, 81.501646 ], [ -65.481262, 81.506516 ], [ -67.104492, 81.093214 ], [ -67.236328, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } ] } ] } , @@ -3641,10 +3641,10 @@ { "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": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.709412, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.036961 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.088185 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } ] } ] } @@ -3981,30 +3981,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } -, { "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.035278, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , -{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } -, { "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": [ [ [ -11.030273, 26.929416 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.920996 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.375035 ], [ -12.873230, 23.284242 ], [ -13.117676, 22.771117 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.499695, 24.769278 ], [ -12.030029, 26.029638 ], [ -11.716919, 26.103654 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.929416 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.933347 ], [ -11.250000, 25.920996 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.873230, 23.284242 ], [ -11.936646, 23.375035 ], [ -11.969604, 25.933347 ] ] ] } } ] } ] } @@ -4103,52 +4103,52 @@ , { "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } , +{ "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +{ "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } -, { "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": [ [ [ -8.665466, 27.656771 ], [ -8.665466, 27.588632 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.920996 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.698999 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.860830 ], [ -9.736633, 26.860830 ], [ -9.412537, 27.088473 ], [ -8.794556, 27.120257 ], [ -8.816528, 27.656771 ], [ -8.665466, 27.656771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.793907 ], [ -4.924622, 24.973610 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.588632 ], [ -8.673706, 28.842268 ], [ -7.058716, 29.578234 ], [ -6.061707, 29.730992 ], [ -5.243225, 30.000138 ], [ -4.858704, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.637014 ], [ -3.067932, 31.723495 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -2.274170, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } @@ -4177,10 +4177,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.059388 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.867105 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.259752 ], [ -8.561096, 51.669148 ], [ -9.978333, 51.820500 ], [ -9.165344, 52.864156 ], [ -9.687195, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.572327, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.900838 ], [ -2.485657, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.900838 ] ] ], [ [ [ -1.653442, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.775943 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.680070 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.653442, 48.777913 ] ] ] ] } } ] } ] } @@ -4241,9 +4241,9 @@ , { "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +, +{ "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } ] } ] } , @@ -4251,18 +4251,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.376038, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.219727, 11.059821 ], [ -0.219727, 11.393879 ], [ 1.376038, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, { "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, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.129639, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } @@ -4273,16 +4273,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } ] } @@ -4319,12 +4319,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.533893 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.209655 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.215027, 40.813809 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.209655 ] ] ], [ [ [ 11.469727, 46.995241 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 10.511169, 42.932296 ], [ 10.200806, 43.919659 ], [ 9.703674, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.429260, 44.231425 ], [ 7.849731, 43.767127 ], [ 7.434998, 43.693694 ], [ 7.550354, 44.127028 ], [ 7.006531, 44.255036 ], [ 6.751099, 45.028892 ], [ 7.097168, 45.332840 ], [ 6.803284, 45.708097 ], [ 6.844482, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.162712 ], [ 8.489685, 46.004593 ], [ 8.967590, 46.037016 ], [ 9.181824, 46.439750 ], [ 9.923401, 46.314687 ], [ 10.362854, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 11.469727, 46.995241 ] ] ] ] } } @@ -4335,17 +4335,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } ] } ] } , @@ -4353,9 +4353,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.147769 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } ] } ] } , @@ -4445,10 +4445,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.719727, -11.011297 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.633552 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.931702 ], [ 18.956909, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.210815, -17.353260 ], [ 14.059753, -17.424029 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.216797, -17.111918 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.794896 ], [ 12.123413, -14.878433 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.738647, -13.138328 ], [ 13.312683, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.708191, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } , -{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } -, { "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": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.059753, -17.424029 ], [ 14.210815, -17.353260 ], [ 18.262024, -17.308688 ], [ 18.956909, -17.787920 ], [ 21.376648, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.633552 ], [ 22.719727, -17.978733 ], [ 22.500000, -18.028363 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.252828 ], [ 20.882263, -21.813058 ], [ 19.896240, -21.848753 ], [ 19.896240, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.673626 ], [ 12.609558, -19.046541 ], [ 11.793823, -18.070146 ], [ 11.733398, -17.300821 ], [ 12.216797, -17.111918 ], [ 12.812805, -16.941215 ] ] ] } } , +{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.978733 ], [ 22.719727, -22.146708 ], [ 19.896240, -22.146708 ], [ 19.896240, -21.848753 ], [ 20.882263, -21.813058 ], [ 20.909729, -18.252828 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.028363 ], [ 22.719727, -17.978733 ] ] ] } } @@ -4457,10 +4457,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } , +{ "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.933655, -7.596663 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } , { "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": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.795105, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } @@ -4471,18 +4471,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , { "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.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } -, { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -4495,12 +4495,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.938660, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } @@ -4525,12 +4525,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.831272 ], [ 11.030273, 37.088049 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.831272 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.131431 ], [ 11.030273, 33.440609 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.131431 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.830322, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.830322, 31.765537 ] ] ] ] } } ] } ] } @@ -4541,56 +4541,56 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.427307, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.030665 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.759501 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } @@ -4607,10 +4607,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.447733 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.325675 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.030622 ], [ 22.200623, 56.337856 ] ] ] } } @@ -4711,17 +4711,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } -, { "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.668091, -21.739091 ], [ 31.478577, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.660095, -22.151796 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.668091, -21.739091 ] ] ] } } , { "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": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.013916, -25.356437 ], [ 32.574463, -25.728158 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.217055 ], [ 32.829895, -26.743158 ], [ 32.071838, -26.733346 ], [ 31.986694, -26.290953 ], [ 31.838379, -25.844393 ], [ 31.753235, -25.485431 ], [ 31.931763, -24.369615 ], [ 31.670837, -23.659619 ], [ 31.190186, -22.250971 ], [ 31.478577, -21.943046 ], [ 31.668091, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } +, +{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.290953 ], [ 32.071838, -26.733346 ], [ 31.868591, -27.178912 ], [ 31.283569, -27.286367 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.399250 ], [ 30.948486, -26.022234 ], [ 31.044617, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -4729,19 +4729,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.837830, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.925476, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.192388 ], [ 23.930969, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.902844 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.557227 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.557227 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } -, { "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": [ [ [ 24.032593, -17.295576 ], [ 24.683533, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.084534, -17.662343 ], [ 24.521484, -17.887273 ], [ 24.216614, -17.889887 ], [ 23.579407, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.028363 ], [ 22.280273, -18.077979 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } , { "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": [ [ [ 30.275574, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.852112, -16.320139 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.478577, -21.943046 ], [ 31.289062, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.639558 ], [ 28.020630, -21.486297 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.850830, -18.713894 ], [ 25.650330, -18.536909 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.707764, -17.960445 ], [ 27.045593, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.468323, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.043174 ], [ 29.517517, -15.644197 ], [ 30.275574, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, { "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": [ [ [ 33.214417, -13.971385 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.392118 ], [ 33.969727, -22.146708 ], [ 31.289062, -22.146708 ], [ 31.478577, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.654114, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.852112, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.275574, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.214417, -13.971385 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } , { "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.432373, -22.090730 ] ] ] } } ] } @@ -4763,24 +4763,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "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": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.037003 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +, { "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": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } @@ -4793,12 +4793,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } @@ -4837,21 +4837,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.944946, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.101257, 43.741336 ], [ 25.567932, 43.687736 ], [ 26.065063, 43.943395 ], [ 27.243347, 44.176295 ], [ 27.971191, 43.812729 ], [ 28.558960, 43.707594 ], [ 28.039856, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.995911, 42.006448 ], [ 27.136230, 42.141005 ], [ 26.117249, 41.826595 ], [ 26.106262, 41.329389 ], [ 25.197144, 41.234446 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.308761 ], [ 22.953186, 41.337638 ], [ 22.881775, 41.998284 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.986145, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } ] } @@ -4879,10 +4879,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.915771, 61.606396 ], [ 28.070068, 60.503230 ], [ 26.254578, 60.423343 ], [ 24.496765, 60.057987 ], [ 22.870789, 59.846195 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.280273, 60.394862 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.078552, 55.776573 ], [ 26.630859, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.177185, 56.168494 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.838867, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.630859, 55.652798 ], [ 27.078552, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.177185, 56.168494 ] ] ] } } @@ -4991,10 +4991,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 39.336548, -10.962764 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.471619, -11.568835 ], [ 36.773987, -11.595741 ], [ 36.513062, -11.722167 ], [ 35.312805, -11.439647 ], [ 34.560242, -11.520396 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.336548, -10.962764 ] ] ] } } , -{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.560242, -11.520396 ], [ 34.280090, -12.280966 ], [ 34.560242, -13.579251 ], [ 34.906311, -13.565902 ], [ 35.268860, -13.888745 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.340271, -16.106514 ], [ 35.032654, -16.801912 ], [ 34.381714, -16.183024 ], [ 34.307556, -15.477504 ], [ 34.516296, -15.013769 ], [ 34.458618, -14.612821 ], [ 34.065857, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } , +{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } +, { "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": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.057642 ], [ 43.283386, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.893127, -21.163923 ], [ 43.895874, -20.830577 ], [ 44.373779, -20.071411 ], [ 44.464417, -19.435514 ], [ 44.233704, -18.960844 ], [ 44.044189, -18.331062 ], [ 43.961792, -17.410925 ], [ 44.313354, -16.849234 ], [ 44.445190, -16.217312 ], [ 44.945068, -16.180386 ], [ 45.000000, -16.159283 ], [ 45.219727, -16.077486 ] ] ] } } ] } ] } @@ -5007,11 +5007,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.950274 ], [ 34.071350, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.768250, -3.677892 ], [ 39.201965, -4.677717 ], [ 38.740540, -5.908385 ], [ 38.800964, -6.476338 ], [ 39.440918, -6.839170 ], [ 39.471130, -7.100893 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.485955 ], [ 39.537048, -9.112945 ], [ 39.949036, -10.098670 ], [ 40.317078, -10.317621 ], [ 39.520569, -10.898042 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.680359, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.280090, -10.160857 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.378612 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } , { "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": [ [ [ 40.317078, -10.317621 ], [ 40.479126, -10.765858 ], [ 40.462646, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.680359, -11.393879 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.520569, -10.898042 ], [ 40.317078, -10.317621 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } ] } ] } , @@ -5019,16 +5019,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.908830 ], [ 34.258118, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.530273, 10.471607 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 34.620667, 4.847417 ], [ 35.299072, 5.506640 ] ] ] } } @@ -5057,18 +5057,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "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": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } ] } ] } @@ -5083,22 +5083,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.665894, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } @@ -5223,9 +5223,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.703214 ], [ 46.947327, 7.996677 ], [ 47.790527, 8.002117 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 44.780273, 4.995186 ], [ 44.780273, 8.784654 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.790527, 8.002117 ], [ 46.947327, 7.996677 ], [ 45.000000, 8.703214 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.557556, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.677673, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } ] } ] } , @@ -5237,9 +5237,9 @@ , { "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": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.046644 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , @@ -5247,17 +5247,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 47.559814, 32.138409 ], [ 47.686157, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.686157, 30.984673 ], [ 48.004761, 30.984673 ], [ 48.015747, 30.453409 ], [ 48.567810, 29.926374 ], [ 47.974548, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.559814, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.239229 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5269,10 +5269,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.811730 ], [ 45.359802, 40.561808 ], [ 45.892639, 40.218733 ], [ 45.609741, 39.899202 ], [ 46.035461, 39.628961 ], [ 46.483154, 39.463764 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.319425 ], [ 45.738831, 39.474365 ], [ 45.299377, 39.472245 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.686157, 31.952162 ], [ 47.812500, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.458679, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.582407 ], [ 48.356323, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.883667, 38.320111 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.841980, 36.873029 ], [ 52.264709, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.511169, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.812500, 31.765537 ], [ 47.686157, 31.952162 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.092945 ], [ 46.076660, 35.677379 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.155939 ], [ 44.780273, 39.707187 ], [ 44.794006, 39.713525 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } @@ -5289,11 +5289,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.557556, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.157349, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } ] } ] } , @@ -5403,15 +5403,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "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": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.395847 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.395847 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.395847 ] ] ] } } -, -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } ] } ] } , @@ -5419,13 +5419,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.049052 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } ] } @@ -5435,9 +5435,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -5559,10 +5559,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } , { "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": [ [ [ 78.579712, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } @@ -5571,32 +5571,32 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , { "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": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } -, { "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": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.521342 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } @@ -5741,10 +5741,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.767022 ], [ 88.854675, 48.068903 ], [ 88.014221, 48.600225 ], [ 87.893372, 48.922499 ], [ 87.838440, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } @@ -5859,9 +5859,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.681702, 11.393879 ], [ 99.602051, 11.178402 ], [ 99.154358, 9.963440 ], [ 99.223022, 9.240382 ], [ 99.873962, 9.207849 ], [ 100.280457, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.747174 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.642783 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.847351 ], [ 99.519653, 7.343399 ], [ 98.989563, 7.906912 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.039001, 10.960068 ], [ 99.165344, 11.178402 ], [ 99.294434, 11.393879 ], [ 99.681702, 11.393879 ] ] ] } } , -{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.747174 ], [ 101.469727, 2.707122 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 100.695190, 3.938240 ], [ 100.557861, 4.768047 ], [ 100.198059, 5.312501 ], [ 100.305176, 6.039505 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.642783 ] ] ] } } +, +{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } ] } ] } , @@ -5875,9 +5875,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } ] } ] } , @@ -6029,13 +6029,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.810024 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.227934 ], [ 101.030273, 6.855532 ] ] ] } } , -{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.855286, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 107.221069, 10.363555 ], [ 106.405334, 9.530332 ], [ 105.158386, 8.600032 ], [ 104.795837, 9.240382 ], [ 105.075989, 9.917449 ], [ 104.334412, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.855286, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.472006 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 111.796875, 0.903588 ], [ 111.159668, 0.977736 ], [ 110.514221, 0.771766 ], [ 109.830322, 1.337464 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.371155, 2.696148 ], [ 111.796875, 2.885437 ], [ 112.500000, 3.011613 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.227934 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.810024 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.126900 ], [ 102.961121, 5.525777 ], [ 103.381348, 4.855628 ], [ 103.439026, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.230042, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.573853, 1.966167 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 101.030273, 3.551800 ], [ 101.030273, 6.227934 ] ] ] ] } } +, +{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } ] } ] } , @@ -6045,13 +6045,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.151123, 21.848753 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } ] } ] } , @@ -6211,13 +6211,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "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": "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.934606 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.110046, 11.393879 ] ] ] ] } } +, +{ "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } , @@ -6377,9 +6377,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "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": "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.307068, 8.781940 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.749094 ], [ 126.537781, 7.188101 ], [ 126.197205, 6.274348 ], [ 125.831909, 7.294363 ], [ 125.364990, 6.787353 ], [ 125.683594, 6.050430 ], [ 125.395203, 5.580451 ], [ 124.219666, 6.162401 ], [ 123.939514, 6.885527 ], [ 124.244385, 7.359743 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.530273, 7.727322 ], [ 123.530273, 8.638049 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.513119 ], [ 124.763489, 8.961045 ], [ 125.472107, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 125.697327, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.310401 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.358151 ], [ 124.801941, 10.133821 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.329529, 11.393879 ], [ 125.697327, 11.393879 ] ] ], [ [ [ 124.076843, 11.232286 ], [ 124.071350, 11.178402 ], [ 123.983459, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.517518 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.232286 ] ] ] ] } } +, +{ "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } ] } ] } , 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 b94c6eae9..cd22412f5 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 @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39222},{\"dropped_as_needed\":202,\"tile_size_desired\":25164},{\"dropped_as_needed\":190,\"tiny_polygons\":2,\"tile_size_desired\":21198},{\"dropped_as_needed\":156,\"tiny_polygons\":12,\"tile_size_desired\":10761},{\"dropped_as_needed\":80,\"tiny_polygons\":20,\"tile_size_desired\":6604},{\"tiny_polygons\":47}]", +"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39196},{\"dropped_as_needed\":202,\"tile_size_desired\":25157},{\"dropped_as_needed\":190,\"tiny_polygons\":2,\"tile_size_desired\":21202},{\"dropped_as_needed\":155,\"tiny_polygons\":12,\"tile_size_desired\":10760},{\"dropped_as_needed\":79,\"tiny_polygons\":20,\"tile_size_desired\":6601},{\"tiny_polygons\":47}]", "type": "overlay", "version": "2" }, "features": [ @@ -29,9 +29,9 @@ , { "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.020508, 3.513421 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.496094, -3.688855 ], [ -37.221680, -4.828260 ], [ -36.474609, -5.090944 ], [ -35.595703, -5.134715 ], [ -35.244141, -5.484768 ], [ -34.716797, -7.362467 ], [ -35.112305, -9.015302 ], [ -35.639648, -9.665738 ], [ -37.045898, -11.049038 ], [ -37.705078, -12.168226 ], [ -38.408203, -13.025966 ], [ -38.671875, -13.068777 ], [ -38.935547, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.920397 ], [ -40.957031, -21.943046 ], [ -41.748047, -22.390714 ], [ -41.967773, -22.958393 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.450195, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.515625, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.647461, -28.188244 ], [ -48.867188, -28.690588 ], [ -49.570312, -29.228890 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.250977, -32.249974 ], [ -52.690430, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.063956 ], [ -55.590820, -30.864510 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.612305, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.941660 ], [ -53.613281, -26.115986 ], [ -54.140625, -25.562265 ], [ -54.624023, -25.720735 ], [ -54.272461, -24.567108 ], [ -54.272461, -24.006326 ], [ -54.667969, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.415039, -23.966176 ], [ -55.502930, -23.563987 ], [ -55.590820, -22.674847 ], [ -55.810547, -22.350076 ], [ -56.469727, -22.105999 ], [ -56.865234, -22.268764 ], [ -57.919922, -22.105999 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.179724 ], [ -57.832031, -19.973349 ], [ -57.963867, -19.394068 ], [ -57.656250, -18.979026 ], [ -57.480469, -18.187607 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.403320, -16.888660 ], [ -58.227539, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.114553 ], [ -60.249023, -15.072124 ], [ -60.249023, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.795406 ], [ -61.083984, -13.496473 ], [ -61.699219, -13.496473 ], [ -62.138672, -13.197165 ], [ -62.797852, -12.983148 ], [ -63.193359, -12.640338 ], [ -64.335938, -12.468760 ], [ -65.390625, -11.566144 ], [ -65.302734, -10.876465 ], [ -65.434570, -10.531020 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.314919 ], [ -68.027344, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.774414, -11.049038 ], [ -69.521484, -10.962764 ], [ -70.092773, -11.135287 ], [ -70.532227, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.323242, -10.098670 ], [ -72.202148, -10.055403 ], [ -72.553711, -9.535749 ], [ -73.212891, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.564453, -8.407168 ], [ -74.003906, -7.536764 ], [ -73.740234, -7.362467 ], [ -73.740234, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.949219, -5.747174 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.609278 ], [ -70.927734, -4.390229 ], [ -70.795898, -4.258768 ], [ -69.873047, -4.302591 ], [ -69.433594, -1.142502 ], [ -69.565430, -0.571280 ], [ -70.004883, -0.175781 ], [ -70.004883, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.966751 ], [ -69.785156, 1.098565 ], [ -69.829102, 1.713612 ], [ -67.851562, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.280273, 1.713612 ], [ -67.060547, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.313477, 0.703107 ], [ -65.566406, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.933227 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.248047, 2.504085 ], [ -64.423828, 3.118576 ], [ -64.379883, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.801461 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.447266, 1.450040 ], [ -58.095703, 1.493971 ], [ -57.656250, 1.669686 ], [ -57.348633, 1.933227 ], [ -55.986328, 1.801461 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.504085 ], [ -55.590820, 2.416276 ], [ -55.107422, 2.504085 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.569336, 2.328460 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.108899 ], [ -52.558594, 2.504085 ], [ -52.075195, 3.513421 ], [ -51.020508, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } -, { "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.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.820708 ], [ -64.951172, -22.065278 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.024546 ], [ -62.666016, -22.268764 ], [ -60.864258, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.612305, -25.601902 ], [ -58.623047, -27.137368 ], [ -57.612305, -27.410786 ], [ -56.469727, -27.566721 ], [ -55.678711, -27.371767 ], [ -54.799805, -26.627818 ], [ -54.624023, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.657227, -26.941660 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.612305, -30.221102 ], [ -58.139648, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.960223 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.013066 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -66.005859, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -69.477539, -52.133488 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.426614 ], [ -72.290039, -50.680797 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.325122 ], [ -72.641602, -48.864715 ], [ -72.333984, -48.253941 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.890232 ], [ -71.542969, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.802819 ], [ -71.894531, -43.421009 ], [ -72.158203, -42.261049 ], [ -71.762695, -42.065607 ], [ -71.894531, -40.847060 ], [ -71.411133, -38.925229 ], [ -70.795898, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.356445, -35.995785 ], [ -70.400391, -35.173808 ], [ -69.829102, -34.198173 ], [ -69.829102, -33.284620 ], [ -70.092773, -33.100745 ], [ -70.532227, -31.353637 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.382175 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.006326 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.755921 ], [ -66.269531, -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": [ [ [ [ -46.669922, -77.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } ] } ] } , @@ -39,10 +39,10 @@ { "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.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "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.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.108670 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.413086, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ] } } -, { "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.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.856445, 71.314877 ], [ -91.538086, 70.185103 ], [ -92.416992, 69.702868 ], [ -90.527344, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.608521 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.561523, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.672544 ], [ -81.958008, 68.138852 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.407955 ], [ -84.726562, 66.249163 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.319336, 64.774125 ], [ -88.461914, 64.091408 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.262695, 60.909073 ], [ -94.614258, 60.108670 ], [ -94.702148, 58.950008 ], [ -93.208008, 58.790978 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.022461, 56.462490 ], [ -87.319336, 55.998381 ], [ -86.088867, 55.727110 ], [ -84.990234, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.136696 ], [ -79.848633, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.090820, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.663086, 62.186014 ], [ -73.828125, 62.451406 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.301758, 58.950008 ], [ -68.378906, 58.790978 ], [ -67.631836, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.258789, 59.866883 ], [ -64.599609, 60.326948 ], [ -63.808594, 59.445075 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.203953 ], [ -57.963867, 54.952386 ], [ -57.348633, 54.622978 ], [ -56.953125, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.278353 ], [ -55.678711, 52.133488 ], [ -57.128906, 51.426614 ], [ -58.754883, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.743164, 50.092393 ], [ -63.852539, 50.289339 ], [ -65.346680, 50.289339 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.754098 ], [ -71.103516, 46.830134 ], [ -70.268555, 46.980252 ], [ -68.642578, 48.312428 ], [ -66.533203, 49.124219 ], [ -65.039062, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.980252 ], [ -64.467773, 46.225453 ], [ -63.193359, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.237305, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.346680, 43.548548 ], [ -66.137695, 43.612217 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.305803 ], [ -66.005859, 45.243953 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.679594 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.243953 ], [ -71.499023, 44.995883 ], [ -74.882812, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.706055, 43.612217 ], [ -79.189453, 43.452919 ], [ -79.013672, 43.261206 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -81.298828, 42.195969 ], [ -82.441406, 41.672912 ], [ -82.705078, 41.672912 ], [ -83.012695, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.100586, 42.065607 ], [ -82.441406, 42.972502 ], [ -82.133789, 43.580391 ], [ -82.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.452148, 45.981695 ], [ -83.627930, 46.103709 ], [ -83.891602, 46.103709 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.498392 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.528635 ], [ -84.770508, 46.649436 ], [ -84.858398, 46.890232 ], [ -88.374023, 48.312428 ], [ -89.252930, 48.019324 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.625977, 48.136767 ], [ -92.592773, 48.458352 ], [ -94.350586, 48.661943 ], [ -94.658203, 48.835797 ], [ -94.833984, 49.382373 ], [ -95.141602, 49.382373 ], [ -95.141602, 49.009051 ], [ -122.958984, 49.009051 ], [ -124.892578, 49.979488 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.819818 ], [ -128.012695, 51.727028 ], [ -127.836914, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.517578, 54.800685 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.704102, 56.559482 ], [ -133.374023, 58.401712 ], [ -134.252930, 58.859224 ], [ -134.956055, 59.265881 ], [ -135.483398, 59.778522 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.305185 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.428711, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.005567 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.409180, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.926758, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.797852, 67.892086 ], [ -108.808594, 68.318146 ], [ -108.149414, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.024022 ], [ -103.227539, 68.089709 ], [ -101.469727, 67.642676 ], [ -99.887695, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.569336, 68.399180 ], [ -97.690430, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.108398, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.702148, 68.056889 ], [ -94.218750, 69.068563 ], [ -95.317383, 69.687618 ], [ -96.459961, 70.095529 ], [ -96.372070, 71.187754 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.627286 ], [ -80.112305, 61.710706 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.490234, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.379883, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -83.232422, 62.915233 ], [ -81.870117, 62.895218 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.165502 ], [ -83.759766, 62.186014 ], [ -83.979492, 62.451406 ], [ -83.232422, 62.915233 ] ] ], [ [ [ -55.854492, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.777344, 49.809632 ], [ -56.162109, 50.148746 ], [ -55.458984, 49.922935 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.481445, 49.239121 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.166085 ], [ -52.646484, 47.546872 ], [ -53.085938, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.415039, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -57.304688, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.403320, 49.124219 ], [ -57.348633, 50.708634 ], [ -56.733398, 51.289406 ], [ -55.854492, 51.645294 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -96.547852, 69.687618 ], [ -95.668945, 69.099940 ], [ -96.284180, 68.752315 ], [ -97.602539, 69.052858 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.702868 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.653320, 72.646486 ], [ -112.456055, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.907227, 72.958315 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.666016, 72.060381 ], [ -108.413086, 73.086633 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.672681 ], [ -104.765625, 71.705093 ], [ -104.458008, 70.988349 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.580563 ], [ -102.744141, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.138672, 69.115611 ], [ -108.984375, 68.784144 ], [ -113.334961, 68.528235 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.185103 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.902268 ], [ -116.103516, 71.314877 ], [ -117.641602, 71.300793 ], [ -119.399414, 71.552741 ], [ -118.564453, 72.302431 ], [ -117.861328, 72.711903 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -80.332031, 73.763497 ], [ -78.046875, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.738003 ], [ -79.760742, 72.803086 ], [ -80.859375, 73.327858 ], [ -80.815430, 73.689611 ], [ -80.332031, 73.763497 ] ] ], [ [ [ -72.817383, 83.231249 ], [ -65.830078, 83.026219 ], [ -63.676758, 82.902419 ], [ -61.831055, 82.631333 ], [ -61.875000, 82.361644 ], [ -64.335938, 81.929358 ], [ -66.752930, 81.723188 ], [ -67.675781, 81.498805 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.256836, 79.631968 ], [ -73.872070, 79.432371 ], [ -76.904297, 79.327084 ], [ -75.541992, 79.196075 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.333008, 78.179588 ], [ -77.871094, 77.897255 ], [ -78.354492, 77.504119 ], [ -79.760742, 77.205912 ], [ -79.628906, 76.980149 ], [ -77.915039, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.551758, 76.174498 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.583008, 76.424292 ], [ -89.472656, 76.475773 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.179588 ], [ -87.978516, 78.376004 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.078125, 79.343349 ], [ -86.528320, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.583008, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.362305, 81.550619 ], [ -91.582031, 81.892256 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.517578, 82.653843 ], [ -84.243164, 82.597439 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.858847 ], [ -81.079102, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.245117, 83.174035 ], [ -75.717773, 83.063469 ], [ -72.817383, 83.231249 ] ] ], [ [ [ -85.825195, 73.800318 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.528130 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.727539, 72.060381 ], [ -78.750000, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.585938, 72.248917 ], [ -74.223633, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.895508, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.413086, 66.930060 ], [ -61.831055, 66.861082 ], [ -62.182617, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.642704 ], [ -65.302734, 64.377941 ], [ -64.687500, 63.391522 ], [ -64.995117, 62.674143 ], [ -66.269531, 62.935235 ], [ -68.774414, 63.743631 ], [ -66.313477, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.862305, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.695312, 64.225493 ], [ -78.574219, 64.567319 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.802776 ], [ -73.959961, 66.302205 ], [ -72.641602, 67.289015 ], [ -72.905273, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.560384 ], [ -76.860352, 68.895187 ], [ -76.245117, 69.146920 ], [ -77.299805, 69.763757 ], [ -78.178711, 69.824471 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.946289, 69.960439 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.868164, 71.216075 ], [ -90.219727, 72.235514 ], [ -89.428711, 73.124945 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.800318 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.936523, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.639648, 48.835797 ], [ -125.947266, 49.181703 ], [ -126.870117, 49.525208 ], [ -127.045898, 49.809632 ], [ -128.056641, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -92.416992, 81.255032 ], [ -91.142578, 80.725269 ], [ -89.428711, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.663556 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.791016, 78.215541 ], [ -92.856445, 78.340533 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.113389 ], [ -93.164062, 79.383905 ], [ -94.965820, 79.375806 ], [ -96.064453, 79.702907 ], [ -96.723633, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.255032 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.696062 ], [ -61.831055, 49.296472 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.588867, 49.410973 ], [ -64.511719, 49.866317 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -96.723633, 77.157163 ], [ -94.702148, 77.098423 ], [ -93.559570, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.444907 ], [ -90.966797, 76.069092 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -87.846680, 75.563041 ], [ -86.396484, 75.486148 ], [ -84.770508, 75.693931 ], [ -82.749023, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.437572 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.413974 ], [ -88.154297, 74.390342 ], [ -89.780273, 74.519889 ], [ -92.416992, 74.833436 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.877372 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.119141, 76.750473 ], [ -96.723633, 77.157163 ] ] ], [ [ [ -133.198242, 54.162434 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.110943 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.187405 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.066406, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.162434 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.102539, 74.235878 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.762695, 73.226700 ], [ -119.223633, 72.514931 ], [ -120.454102, 71.815130 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -109.599609, 76.790701 ], [ -108.544922, 76.679785 ], [ -108.193359, 76.205967 ], [ -107.797852, 75.845169 ], [ -106.918945, 76.016094 ], [ -105.864258, 75.973553 ], [ -105.688477, 75.475131 ], [ -106.303711, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.413974 ], [ -113.730469, 74.390342 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.039013 ], [ -117.729492, 75.219460 ], [ -116.367188, 76.195485 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.790701 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.627789 ], [ -97.382812, 73.763497 ], [ -97.119141, 73.465984 ], [ -98.041992, 72.996909 ], [ -96.547852, 72.554498 ], [ -96.723633, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.732662 ], [ -102.480469, 72.514931 ], [ -102.480469, 72.829052 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.529297, 63.646259 ], [ -83.100586, 64.110602 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.830254 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.323242, 76.880775 ], [ -117.114258, 76.527061 ], [ -118.037109, 76.486046 ], [ -119.882812, 76.047916 ], [ -121.508789, 75.898801 ], [ -122.871094, 76.111348 ], [ -121.157227, 76.860810 ], [ -119.091797, 77.513624 ], [ -117.553711, 77.494607 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -98.481445, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.690430, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.799805, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.854492, 75.639536 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.341523 ], [ -101.469727, 76.310358 ], [ -99.975586, 76.649377 ], [ -98.569336, 76.588356 ], [ -98.481445, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.416992, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.262695, 72.019729 ], [ -95.405273, 72.060381 ], [ -96.020508, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.493164, 73.861506 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.810547, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.963867, 78.340533 ], [ -105.161133, 78.376004 ], [ -104.194336, 78.673242 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.052896 ], [ -97.294922, 77.851100 ], [ -98.129883, 78.080156 ], [ -98.569336, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.174805, 74.590108 ], [ -95.625000, 74.671638 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.170898, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -111.489258, 78.853070 ], [ -110.961914, 78.801980 ], [ -109.643555, 78.603986 ], [ -110.874023, 78.402537 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.489258, 78.853070 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.415885 ], [ -105.380859, 72.764065 ], [ -106.918945, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -96.416016, 77.832589 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.823242, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.152344, 77.551572 ], [ -96.416016, 77.832589 ] ] ] ] } } , +{ "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.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.108670 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.413086, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ] } } +, { "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": [ [ [ -60.205078, 5.266008 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.434044 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.801461 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.447266, 1.450040 ], [ -58.095703, 1.493971 ], [ -57.656250, 1.669686 ], [ -57.348633, 1.933227 ], [ -55.986328, 1.801461 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.504085 ], [ -55.590820, 2.416276 ], [ -55.107422, 2.504085 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.569336, 2.328460 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.108899 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.250209 ], [ -51.679688, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.064453, 3.645000 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.142502 ], [ -69.565430, -0.571280 ], [ -70.004883, -0.175781 ], [ -70.004883, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.966751 ], [ -69.785156, 1.098565 ], [ -69.829102, 1.713612 ], [ -67.851562, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.280273, 1.713612 ], [ -67.060547, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.313477, 0.703107 ], [ -65.566406, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.933227 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.248047, 2.504085 ], [ -64.423828, 3.118576 ], [ -64.379883, 3.776559 ], [ -64.819336, 4.039618 ], [ -64.643555, 4.127285 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.952148, 4.521666 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.178482 ], [ -60.205078, 5.266008 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.683970 ], [ 2.065430, 20.138470 ], [ 1.801758, 20.591652 ], [ 0.000000, 21.779905 ], [ -8.701172, 27.410786 ], [ -8.657227, 28.844674 ], [ -7.075195, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.229492, 29.993002 ], [ -4.877930, 30.486551 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.249974 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.713867, 33.906896 ], [ -1.801758, 34.524661 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.515625, 36.809285 ] ] ] } } @@ -95,10 +95,10 @@ { "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.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.071777, 20.653346 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.186973 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.137207, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.839076 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.030762, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.859863, 39.774769 ], [ -124.387207, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.990234, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.505175 ], [ -139.877930, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.676938 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.792848 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.970703, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.740674 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.322549 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.217991 ], [ -166.464844, 60.381290 ] ] ] ] } } , -{ "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": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } -, { "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.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } , +{ "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": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } +, { "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": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.352051, 65.394298 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.538996 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.505371, 62.573106 ], [ -180.769043, 62.308794 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } ] } ] } @@ -125,9 +125,9 @@ , { "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": [ [ [ -50.031738, 1.757537 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.406738, -2.130856 ], [ -44.582520, -2.701635 ], [ -43.417969, -2.372369 ], [ -41.462402, -2.921097 ], [ -39.968262, -2.877208 ], [ -38.496094, -3.710782 ], [ -37.221680, -4.828260 ], [ -36.452637, -5.112830 ], [ -35.595703, -5.156599 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.045898, -11.049038 ], [ -37.683105, -12.168226 ], [ -38.430176, -13.047372 ], [ -38.671875, -13.047372 ], [ -38.957520, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.265137, -17.874203 ], [ -39.572754, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.899871 ], [ -40.935059, -21.943046 ], [ -41.748047, -22.370396 ], [ -41.989746, -22.978624 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.351562, -23.805450 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.669434, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.690918, -30.977609 ], [ -51.569824, -31.784217 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.503629 ], [ -55.590820, -30.845647 ], [ -55.964355, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.634277, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.393066, -23.966176 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.788574, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.887207, -22.289096 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.941895, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.381348, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.534668, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.270996, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.721191, -13.496473 ], [ -62.116699, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.618897 ], [ -64.313965, -12.468760 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.434570, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.643066, -9.925566 ], [ -67.170410, -10.314919 ], [ -68.049316, -10.703792 ], [ -68.269043, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.521484, -10.941192 ], [ -70.092773, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.553711, -9.514079 ], [ -73.234863, -9.470736 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.514981 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.971191, -5.747174 ], [ -72.883301, -5.266008 ], [ -71.740723, -4.587376 ], [ -70.927734, -4.412137 ], [ -70.795898, -4.258768 ], [ -69.895020, -4.302591 ], [ -69.433594, -1.559866 ], [ -69.411621, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.335449, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.568359, 1.757537 ], [ -50.031738, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } -, { "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.247070, -53.094024 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.973145, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.359375, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.370605, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.302246, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.373496 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.650793 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.266250 ], [ -70.070801, -33.082337 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.175159 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.994629, -22.978624 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -135,12 +135,12 @@ { "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": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , +{ "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": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.637726 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.021528 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.422713 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.078613, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.250488, 47.754098 ], [ -55.393066, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.673831 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.186014 ], [ -73.850098, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.985840, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.104980, 48.078079 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.375994 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.656011 ], [ -83.100586, 64.101007 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } +, { "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": [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.045813 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ] } } , { "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": [ [ [ -33.508301, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.282760 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.508301, 67.204032 ] ] ] } } , -{ "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": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.637726 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.021528 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.422713 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.078613, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.250488, 47.754098 ], [ -55.393066, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.673831 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.186014 ], [ -73.850098, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.985840, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.104980, 48.078079 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.375994 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.656011 ], [ -83.100586, 64.101007 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } -, { "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": [ [ [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.434044 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.985352, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.655762, 1.779499 ], [ -59.040527, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.107422, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.043024 ], [ -52.932129, 2.130856 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.250209 ], [ -51.657715, 4.149201 ], [ -51.328125, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.911267 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.335449, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } @@ -149,9 +149,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } -, { "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": [ [ [ [ -91.757812, 70.058092 ], [ -91.757812, 70.392606 ], [ -91.516113, 70.192550 ], [ -91.757812, 70.058092 ] ] ], [ [ [ -80.354004, 73.757352 ], [ -78.068848, 73.652545 ], [ -76.333008, 73.105800 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.874402 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.757352 ] ] ], [ [ [ -85.825195, 73.806447 ], [ -86.572266, 73.156808 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.349128 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.559692 ], [ -71.191406, 70.916641 ], [ -68.796387, 70.524897 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.185993 ], [ -68.796387, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -62.709961, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.115234, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.641602, 67.280530 ], [ -72.927246, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.552351 ], [ -76.860352, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.277832, 69.771356 ], [ -78.178711, 69.824471 ], [ -78.947754, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.765206 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.475276 ], [ -89.428711, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.806447 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.926273 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.505299 ], [ -67.829590, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.169434, 79.800637 ], [ -73.234863, 79.635922 ], [ -73.872070, 79.428340 ], [ -76.904297, 79.323013 ], [ -75.520020, 79.196075 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.333008, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.019692 ], [ -77.893066, 76.775629 ], [ -80.551758, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.470633 ], [ -89.626465, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.264160, 77.901861 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.330566, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.100098, 79.347411 ], [ -86.506348, 79.738196 ], [ -86.923828, 80.249670 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.463150 ], [ -84.089355, 80.578943 ], [ -87.604980, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.651033 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.419434, 82.858847 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.129495 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.124512, 68.007571 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.441229 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.233887, 67.584098 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -91.757812, 69.626510 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.616534 ], [ -88.308105, 67.875541 ], [ -87.341309, 67.195518 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.801724 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.210938, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.600849 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -86.352539, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.626510 ] ] ], [ [ [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.374512, 75.480640 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.408070 ], [ -88.154297, 74.390342 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.604004, 76.780655 ] ] ], [ [ [ -91.757812, 74.013493 ], [ -90.505371, 73.855397 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.013493 ] ] ], [ [ [ -91.757812, 80.987131 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.659613 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.273737 ], [ -91.757812, 80.987131 ] ] ] ] } } +, +{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , @@ -185,12 +185,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.936035, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.504503 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.492676, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.295410, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.306152, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.805935 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.159180, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 87.758789, 49.296472 ], [ 88.022461, 48.603858 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.166547 ], [ 91.757812, 27.780772 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.652031 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.107118 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.464355, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.201172, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.168457, 37.125286 ], [ 74.970703, 37.422526 ], [ 74.838867, 37.996163 ], [ 74.860840, 38.376115 ], [ 74.267578, 38.599700 ], [ 73.937988, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.879883, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.405762, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.460449, 27.117813 ], [ 50.141602, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.569824, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.656738, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.329664 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.098792 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.199707, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.071980 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.012031 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.802246, 39.707187 ], [ 44.956055, 39.334297 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.516113, 38.771216 ], [ 47.680664, 39.504041 ], [ 48.054199, 39.588757 ], [ 48.361816, 39.283294 ], [ 48.010254, 38.788345 ], [ 48.625488, 38.272689 ], [ 48.889160, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.272949, 36.703660 ], [ 53.833008, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.502930, 37.961523 ], [ 56.184082, 37.926868 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.425293, 37.527154 ], [ 59.238281, 37.405074 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.657296 ], [ 60.798340, 34.397845 ], [ 60.534668, 33.669497 ], [ 60.974121, 33.523079 ], [ 60.534668, 32.990236 ], [ 60.864258, 32.175612 ], [ 60.952148, 31.541090 ], [ 61.699219, 31.372399 ], [ 61.787109, 30.732393 ], [ 60.864258, 29.821583 ], [ 61.369629, 29.305561 ], [ 61.765137, 28.690588 ], [ 62.731934, 28.265682 ], [ 62.753906, 27.371767 ], [ 63.237305, 27.215556 ], [ 63.325195, 26.765231 ], [ 61.875000, 26.234302 ], [ 61.501465, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.490240 ], [ 53.503418, 26.804461 ], [ 52.492676, 27.586198 ], [ 51.525879, 27.858504 ], [ 50.844727, 28.806174 ], [ 50.119629, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.315988 ], [ 48.559570, 29.935895 ], [ 48.010254, 30.448674 ], [ 48.010254, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.098633, 33.008663 ], [ 45.417480, 33.961586 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.101934 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 44.780273, 37.177826 ], [ 44.230957, 37.978845 ], [ 44.428711, 38.272689 ], [ 44.099121, 39.436193 ], [ 44.802246, 39.707187 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 87.758789, 49.296472 ], [ 88.022461, 48.603858 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.166547 ], [ 91.757812, 27.780772 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.652031 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.107118 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.464355, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.201172, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.168457, 37.125286 ], [ 74.970703, 37.422526 ], [ 74.838867, 37.996163 ], [ 74.860840, 38.376115 ], [ 74.267578, 38.599700 ], [ 73.937988, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ] ] ] } } +, { "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": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 24.106647 ], [ 91.757812, 23.180764 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.757812, 24.106647 ] ] ], [ [ [ 91.757812, 26.824071 ], [ 91.757812, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.264568 ], [ 89.824219, 25.958045 ], [ 89.362793, 26.017298 ], [ 88.571777, 26.450902 ], [ 88.220215, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.507143 ], [ 88.703613, 24.226929 ], [ 88.527832, 23.624395 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.033691, 20.735566 ], [ 86.506348, 20.159098 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.291950 ], [ 83.188477, 17.664960 ], [ 82.199707, 17.014768 ], [ 82.199707, 16.551962 ], [ 81.694336, 16.320139 ], [ 80.793457, 15.961329 ], [ 80.332031, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.870605, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.343262, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.210560 ], [ 78.288574, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.972198 ], [ 76.596680, 8.906780 ], [ 76.135254, 10.293301 ], [ 75.739746, 11.307708 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.626109 ], [ 73.542480, 15.982454 ], [ 72.817383, 19.207429 ], [ 72.817383, 20.427013 ], [ 72.619629, 21.350781 ], [ 71.169434, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.653320, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.684774 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.347097 ], [ 70.839844, 25.224820 ], [ 70.290527, 25.720735 ], [ 70.158691, 26.490240 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.784668, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.443359, 32.768800 ], [ 74.113770, 33.449777 ], [ 73.740234, 34.325292 ], [ 74.245605, 34.741612 ], [ 75.761719, 34.506557 ], [ 76.882324, 34.651285 ], [ 77.827148, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.167480, 32.491230 ], [ 78.464355, 32.620870 ], [ 78.728027, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.101074, 30.183122 ], [ 80.485840, 29.726222 ], [ 80.090332, 28.786918 ], [ 81.057129, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.298340, 27.371767 ], [ 84.682617, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.411551 ], [ 88.176270, 26.804461 ], [ 88.044434, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 91.757812, 26.824071 ] ] ], [ [ [ 91.757812, 27.722436 ], [ 91.691895, 27.780772 ], [ 91.757812, 27.780772 ], [ 91.757812, 27.722436 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.652943 ], [ 91.757812, 45.166547 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.703125, 50.331436 ], [ 91.757812, 50.652943 ] ] ] } } @@ -339,11 +339,11 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } -, { "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.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.698212 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.136963, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.148193, -52.348763 ], [ -68.576660, -52.301761 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.673835 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.652588, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.334229, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.147217, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , { "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.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.565918, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.072283 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.882723 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.246626 ], [ -72.652588, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.301761 ], [ -69.466553, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.433105, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.707275, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.981689, -51.041394 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.709762 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.696045, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.740234, -40.313043 ], [ -71.795654, -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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } ] } ] } , @@ -387,25 +387,25 @@ { "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": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } , -{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.058175 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.612100 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.569114 ], [ -59.271240, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.147488 ], [ -82.441406, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.233643, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.054632 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.446324 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.587402, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.955674 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.368652, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.061035, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.796631, 45.706179 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.880371, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.324707, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.170654, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.528564, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.543658 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.863770, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } -, { "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": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.968994, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.256104, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.893066, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.982624 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.992188, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.505371, 73.855397 ], [ -90.878906, 73.640171 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.233838 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } ] } ] } , @@ -433,10 +433,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.182788 ], [ -2.175293, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.505484 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.822021, 27.654338 ], [ -8.800049, 27.117813 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.184326, 26.863281 ], [ -10.546875, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.722412, 26.106121 ], [ -12.030029, 26.027170 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.694835 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.404053, 29.094577 ], [ -9.569092, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.305420, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.109131, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.041260, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.728167 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.175293, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } @@ -481,24 +481,24 @@ , { "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": 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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.468262, -8.070107 ], [ 18.138428, -7.983078 ], [ 18.468018, -7.841615 ], [ 19.017334, -7.983078 ], [ 19.171143, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.039062, -7.111795 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.203369, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.232286 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.518344 ], [ 21.379395, -17.926476 ], [ 18.951416, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.458252, -16.972741 ], [ 12.810059, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.733154, -13.132979 ], [ 13.315430, -12.479487 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.368958 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.370361, -5.867403 ] ] ], [ [ [ 12.623291, -4.434044 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.315674, -4.609278 ], [ 12.623291, -4.434044 ] ] ] ] } } , -{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } -, { "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": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , +{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.700105 ], [ 39.254150, -8.004837 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.517822, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.264612 ], [ 37.474365, -11.566144 ], [ 36.771240, -11.598432 ], [ 36.518555, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.765653 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.750977, -4.455951 ], [ 30.113525, -4.094411 ], [ 30.509033, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.739746, -3.030812 ], [ 30.531006, -2.811371 ], [ 30.465088, -2.416276 ], [ 30.761719, -2.284551 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.131518 ], [ 30.772705, -1.010690 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.944781 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.520219 ], [ 33.310547, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.518344 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.232286 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.693933 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.664960 ], [ 25.268555, -17.738223 ], [ 25.653076, -18.531700 ], [ 25.850830, -18.719097 ], [ 26.169434, -19.290406 ], [ 27.301025, -20.396123 ], [ 27.729492, -20.499064 ], [ 27.729492, -20.848545 ], [ 28.026123, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.480407 ], [ 20.753174, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.884659 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ] ] ] } } -, { "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": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.981201, -26.293415 ], [ 31.838379, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.709863 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.008464 ], [ 34.310303, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.903564, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } , { "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": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.307861, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.664960 ], [ 25.268555, -17.738223 ], [ 25.653076, -18.531700 ], [ 25.850830, -18.719097 ], [ 26.169434, -19.290406 ], [ 27.301025, -20.396123 ], [ 27.729492, -20.499064 ], [ 27.729492, -20.848545 ], [ 28.026123, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.480407 ], [ 20.753174, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.884659 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ] ] ] } } +, { "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.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } ] } ] } @@ -519,20 +519,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.491943, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.389893, 9.264779 ], [ 23.455811, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.125732, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.401123, 4.028659 ], [ 21.654053, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.214943 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.413566 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.896030 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.387617 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.517822, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.156006, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.212288 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.466064, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.873940 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.104177 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 25.004883, 22.004175 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.666266 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.243392 ], [ 33.211670, 12.178965 ], [ 33.090820, 11.436955 ], [ 33.211670, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.958740, 9.459899 ], [ 33.969727, 8.689639 ], [ 33.826904, 8.374562 ], [ 33.299561, 8.352823 ], [ 32.958984, 7.787194 ], [ 33.563232, 7.710992 ], [ 34.079590, 7.220800 ], [ 34.255371, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.787522 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.838623, 3.513421 ], [ 29.948730, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.291636 ], [ 27.982178, 4.412137 ], [ 27.377930, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.943900 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.504089 ], [ 25.114746, 7.819847 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.796143, 9.806504 ], [ 25.070801, 10.271681 ], [ 25.795898, 10.412183 ], [ 25.960693, 10.131117 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.114258, 9.633246 ], [ 27.828369, 9.600750 ], [ 27.971191, 9.394871 ], [ 28.970947, 9.394871 ], [ 29.003906, 9.600750 ], [ 29.520264, 9.795678 ], [ 29.619141, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.806504 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.243392 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } @@ -553,10 +553,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.513428, 54.470038 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.755207 ], [ 14.348145, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.093008 ], [ 14.611816, 51.747439 ], [ 15.018311, 51.103522 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.923813 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.524414, 49.546598 ], [ 13.029785, 49.303636 ], [ 13.601074, 48.879167 ], [ 13.238525, 48.414619 ], [ 12.886963, 48.290503 ], [ 13.029785, 47.635784 ], [ 12.930908, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.569114 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.576526 ], [ 9.591064, 47.524620 ], [ 8.525391, 47.827908 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.796387, 52.689702 ], [ 23.203125, 52.489470 ], [ 23.510742, 52.025459 ], [ 23.521729, 51.577070 ], [ 24.027100, 50.708634 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.575102 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.644043, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.864014, 50.471491 ], [ 16.721191, 50.219095 ], [ 16.171875, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.093008 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.025206 ], [ 36.760254, 46.702202 ], [ 35.826416, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.739502, 46.331758 ], [ 31.673584, 46.709736 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.943511 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.410400, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.137207, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.323486, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } @@ -623,17 +623,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } -, -{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.108643, 25.948166 ], [ 50.240479, 25.611810 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.345215, 38.255436 ], [ 71.235352, 37.952861 ], [ 71.542969, 37.909534 ], [ 71.444092, 37.063944 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.256836, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.257324, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.352507 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.500496 ], [ 69.312744, 31.905541 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.306715 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.563902 ], [ 64.149170, 29.343875 ], [ 63.544922, 29.468297 ], [ 62.545166, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.776123, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 67.071533, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.191895, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.345215, 38.255436 ], [ 71.235352, 37.952861 ], [ 71.542969, 37.909534 ], [ 71.444092, 37.063944 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.256836, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.257324, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.352507 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.500496 ], [ 69.312744, 31.905541 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.306715 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.563902 ], [ 64.149170, 29.343875 ], [ 63.544922, 29.468297 ], [ 62.545166, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.776123, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 67.071533, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.191895, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.773682, 27.916767 ], [ 70.620117, 27.984700 ], [ 69.510498, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.279541, 25.720735 ], [ 70.839844, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.368408, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.244156 ], [ 63.314209, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.381523 ], [ 62.731934, 28.256006 ], [ 61.776123, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.545166, 29.315141 ], [ 63.544922, 29.468297 ], [ 64.149170, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.306715 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.500496 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.352507 ], [ 71.114502, 34.732584 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.648369 ], [ 71.257324, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.916260, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , @@ -649,12 +649,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.755080 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } , { "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.014799 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } ] } ] } @@ -691,6 +691,8 @@ , { "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": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.852051, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.390625, 0.878872 ], [ 110.852051, 0.878872 ] ] ] } } +, { "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } , { "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": [ [ [ 132.352295, -11.124507 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.505371, -14.997852 ], [ 135.878906, -15.262989 ], [ 135.878906, -34.831841 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.088135, -32.851903 ], [ 134.274902, -32.620870 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.330566, -31.494262 ], [ 129.539795, -31.587894 ], [ 128.243408, -31.952162 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.222412, -32.962586 ], [ 124.024658, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.816162, -33.916013 ], [ 122.178955, -34.007135 ], [ 121.300049, -33.824794 ], [ 120.574951, -33.934245 ], [ 119.893799, -33.979809 ], [ 119.300537, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.509521, -34.750640 ], [ 118.026123, -35.065973 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.565186, -34.388779 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.718994, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.806885, -32.203505 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.806174 ], [ 114.620361, -28.516969 ], [ 114.169922, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.939209, -25.908644 ], [ 114.235840, -26.303264 ], [ 114.213867, -25.790000 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.686952 ], [ 113.389893, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.741455, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.830907 ], [ 115.455322, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.707764, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.234863, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.992920, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.973349 ], [ 120.860596, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.330683 ], [ 124.376221, -15.570128 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.364258, -14.870469 ], [ 128.990479, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.424040 ], [ 129.891357, -13.613956 ], [ 130.341797, -13.357554 ], [ 130.187988, -13.111580 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.737061, -12.307802 ], [ 132.572021, -12.114523 ], [ 132.561035, -11.598432 ], [ 131.824951, -11.275387 ], [ 132.352295, -11.124507 ] ] ] } } @@ -707,9 +709,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.751608 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.190035 ], [ 98.964844, 19.756364 ], [ 98.250732, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.836090 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.827412 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.658447, 19.725342 ], [ 93.076172, 19.859727 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.647705, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.088473 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.265682 ], [ 97.910156, 28.333395 ] ] ] } } , -{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.152727 ], [ 134.769287, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , @@ -829,7 +831,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "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": "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } @@ -1131,17 +1133,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 75.969558 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 80.635422 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.635422 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.087440 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } ] } ] } , @@ -1177,9 +1179,9 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } -, { "type": "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.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , @@ -1197,10 +1199,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } , +{ "type": "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , { "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.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } @@ -1247,17 +1249,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } -, { "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": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.127004 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } -, { "type": "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": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , @@ -1269,17 +1271,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } -, { "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": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } -, { "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": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } +, +{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } ] } ] } , @@ -1373,25 +1375,27 @@ , { "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.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.005904 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , @@ -1403,20 +1407,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.805542, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.992310, 41.541478 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } @@ -1495,16 +1499,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.814331, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.814331, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , -{ "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } , +{ "type": "Feature", "properties": { "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } @@ -1517,28 +1521,28 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.075459 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } , +{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, { "type": "Feature", "properties": { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -1573,15 +1577,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.862776 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.471694 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.649536, 50.050085 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.474987 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.683228, 52.089633 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , @@ -1589,13 +1595,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , @@ -1665,14 +1669,14 @@ , { "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": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } -, { "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.860352, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.860352, -21.534847 ] ] ] } } , { "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.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.860352, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , { "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": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +, { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } @@ -1683,18 +1687,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } -, { "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": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , +{ "type": "Feature", "properties": { "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.765503, -3.677892 ], [ 39.204712, -4.674980 ], [ 38.743286, -5.911117 ], [ 38.798218, -6.473609 ], [ 39.440918, -6.839170 ], [ 39.468384, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.483239 ], [ 39.534302, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.314331, -10.314919 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.270000 ], [ 37.468872, -11.566144 ], [ 36.776733, -11.593051 ], [ 36.513062, -11.722167 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.558228, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.421387, -5.938436 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.119019, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.525513, -2.805885 ], [ 30.470581, -2.416276 ], [ 30.756226, -2.284551 ], [ 30.816650, -1.697139 ], [ 30.421143, -1.137010 ], [ 30.767212, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } @@ -1703,6 +1705,8 @@ , { "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": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, { "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } ] } ] } @@ -1711,26 +1715,26 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } +, { "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } @@ -1741,24 +1745,24 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "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": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } @@ -1769,6 +1773,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.241577, 54.220285 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.807373, 53.090725 ], [ 23.801880, 52.689702 ], [ 23.197632, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.426019 ], [ 23.428345, 50.306884 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } @@ -1779,13 +1785,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , @@ -1801,10 +1805,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } @@ -1891,9 +1895,9 @@ , { "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.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , @@ -1903,29 +1907,29 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.614152 ], [ 44.560547, 39.884450 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.614152 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.094622 ], [ 44.560547, 37.483577 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } ] } ] } , @@ -1937,11 +1941,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.936610 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -2015,20 +2019,20 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , { "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.463514 ], [ 83.897095, 29.319931 ], [ 84.232178, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.416470 ], [ 87.225952, 26.396790 ], [ 86.022949, 26.632729 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.366889 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.524048, 30.424993 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } @@ -2041,12 +2045,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } -, { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } @@ -2119,17 +2123,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } -, -{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , @@ -2231,11 +2235,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , @@ -3181,8 +3185,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } @@ -3192,6 +3194,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } ] } ] } , @@ -3473,25 +3477,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } -, { "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": [ [ [ -77.898560, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.898560, 76.890745 ] ] ] } } +, +{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "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": "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } -, { "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": [ [ [ [ -78.969727, 77.379306 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -76.220398, 79.019097 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379306 ] ] ], [ [ [ -78.969727, 76.998081 ], [ -78.750000, 77.003024 ], [ -77.909546, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998081 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } -, { "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": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.047597 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.899800 ], [ -69.469299, 80.616633 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.633945 ], [ -73.880310, 79.430356 ], [ -76.907043, 79.323013 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -75.791931, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } ] } ] } , @@ -3573,9 +3577,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "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": "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } ] } ] } , @@ -3585,10 +3589,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.583618, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , { "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.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.811631 ], [ -67.107239, -22.735657 ] ] ] } } @@ -3689,17 +3693,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } -, { "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": [ [ [ -66.975403, 81.127169 ], [ -67.104492, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.931889 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } -, { "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": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628514 ], [ -61.894226, 82.361644 ], [ -64.333191, 81.927816 ], [ -66.752930, 81.725164 ], [ -67.500000, 81.540928 ], [ -67.656555, 81.501241 ], [ -67.500000, 81.501646 ], [ -65.481262, 81.506516 ], [ -67.104492, 81.093214 ], [ -67.236328, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } ] } ] } , @@ -3751,10 +3755,10 @@ { "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": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.709412, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.036961 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.088185 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } ] } ] } @@ -4091,30 +4095,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } -, { "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.035278, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , -{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } -, { "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": [ [ [ -11.030273, 26.929416 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.920996 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.375035 ], [ -12.873230, 23.284242 ], [ -13.117676, 22.771117 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.499695, 24.769278 ], [ -12.030029, 26.029638 ], [ -11.716919, 26.103654 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.929416 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.933347 ], [ -11.250000, 25.920996 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.873230, 23.284242 ], [ -11.936646, 23.375035 ], [ -11.969604, 25.933347 ] ] ] } } ] } ] } @@ -4213,52 +4217,52 @@ , { "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } , +{ "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +{ "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } -, { "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": [ [ [ -8.665466, 27.656771 ], [ -8.665466, 27.588632 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.920996 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.698999 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.860830 ], [ -9.736633, 26.860830 ], [ -9.412537, 27.088473 ], [ -8.794556, 27.120257 ], [ -8.816528, 27.656771 ], [ -8.665466, 27.656771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.793907 ], [ -4.924622, 24.973610 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.588632 ], [ -8.673706, 28.842268 ], [ -7.058716, 29.578234 ], [ -6.061707, 29.730992 ], [ -5.243225, 30.000138 ], [ -4.858704, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.637014 ], [ -3.067932, 31.723495 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -2.274170, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } @@ -4287,10 +4291,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.059388 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.867105 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.259752 ], [ -8.561096, 51.669148 ], [ -9.978333, 51.820500 ], [ -9.165344, 52.864156 ], [ -9.687195, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.572327, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.900838 ], [ -2.485657, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.900838 ] ] ], [ [ [ -1.653442, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.775943 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.680070 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.653442, 48.777913 ] ] ] ] } } ] } ] } @@ -4351,9 +4355,9 @@ , { "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +, +{ "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } ] } ] } , @@ -4361,18 +4365,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.376038, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.219727, 11.059821 ], [ -0.219727, 11.393879 ], [ 1.376038, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, { "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, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.129639, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } @@ -4383,16 +4387,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } ] } @@ -4429,12 +4433,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.533893 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.209655 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.215027, 40.813809 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.209655 ] ] ], [ [ [ 11.469727, 46.995241 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 10.511169, 42.932296 ], [ 10.200806, 43.919659 ], [ 9.703674, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.429260, 44.231425 ], [ 7.849731, 43.767127 ], [ 7.434998, 43.693694 ], [ 7.550354, 44.127028 ], [ 7.006531, 44.255036 ], [ 6.751099, 45.028892 ], [ 7.097168, 45.332840 ], [ 6.803284, 45.708097 ], [ 6.844482, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.162712 ], [ 8.489685, 46.004593 ], [ 8.967590, 46.037016 ], [ 9.181824, 46.439750 ], [ 9.923401, 46.314687 ], [ 10.362854, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 11.469727, 46.995241 ] ] ] ] } } @@ -4445,17 +4449,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } ] } ] } , @@ -4463,9 +4467,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.147769 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } ] } ] } , @@ -4555,10 +4559,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.719727, -11.011297 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.633552 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.931702 ], [ 18.956909, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.210815, -17.353260 ], [ 14.059753, -17.424029 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.216797, -17.111918 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.794896 ], [ 12.123413, -14.878433 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.738647, -13.138328 ], [ 13.312683, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.708191, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } , -{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } -, { "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": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.059753, -17.424029 ], [ 14.210815, -17.353260 ], [ 18.262024, -17.308688 ], [ 18.956909, -17.787920 ], [ 21.376648, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.633552 ], [ 22.719727, -17.978733 ], [ 22.500000, -18.028363 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.252828 ], [ 20.882263, -21.813058 ], [ 19.896240, -21.848753 ], [ 19.896240, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.673626 ], [ 12.609558, -19.046541 ], [ 11.793823, -18.070146 ], [ 11.733398, -17.300821 ], [ 12.216797, -17.111918 ], [ 12.812805, -16.941215 ] ] ] } } , +{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.978733 ], [ 22.719727, -22.146708 ], [ 19.896240, -22.146708 ], [ 19.896240, -21.848753 ], [ 20.882263, -21.813058 ], [ 20.909729, -18.252828 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.028363 ], [ 22.719727, -17.978733 ] ] ] } } @@ -4567,10 +4571,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } , +{ "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.933655, -7.596663 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } , { "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": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.795105, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } @@ -4581,18 +4585,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , { "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.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } -, { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -4605,12 +4609,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.938660, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } @@ -4635,12 +4639,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.831272 ], [ 11.030273, 37.088049 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.831272 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.131431 ], [ 11.030273, 33.440609 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.131431 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.830322, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.830322, 31.765537 ] ] ] ] } } ] } ] } @@ -4651,56 +4655,56 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.427307, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.030665 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.759501 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } @@ -4717,10 +4721,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.447733 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.325675 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.030622 ], [ 22.200623, 56.337856 ] ] ] } } @@ -4821,17 +4825,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } -, { "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.668091, -21.739091 ], [ 31.478577, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.660095, -22.151796 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.668091, -21.739091 ] ] ] } } , { "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": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.013916, -25.356437 ], [ 32.574463, -25.728158 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.217055 ], [ 32.829895, -26.743158 ], [ 32.071838, -26.733346 ], [ 31.986694, -26.290953 ], [ 31.838379, -25.844393 ], [ 31.753235, -25.485431 ], [ 31.931763, -24.369615 ], [ 31.670837, -23.659619 ], [ 31.190186, -22.250971 ], [ 31.478577, -21.943046 ], [ 31.668091, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } +, +{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.290953 ], [ 32.071838, -26.733346 ], [ 31.868591, -27.178912 ], [ 31.283569, -27.286367 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.399250 ], [ 30.948486, -26.022234 ], [ 31.044617, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -4839,19 +4843,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.837830, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.925476, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.192388 ], [ 23.930969, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.902844 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.557227 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.557227 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } -, { "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": [ [ [ 24.032593, -17.295576 ], [ 24.683533, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.084534, -17.662343 ], [ 24.521484, -17.887273 ], [ 24.216614, -17.889887 ], [ 23.579407, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.028363 ], [ 22.280273, -18.077979 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } , { "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": [ [ [ 30.275574, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.852112, -16.320139 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.478577, -21.943046 ], [ 31.289062, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.639558 ], [ 28.020630, -21.486297 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.850830, -18.713894 ], [ 25.650330, -18.536909 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.707764, -17.960445 ], [ 27.045593, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.468323, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.043174 ], [ 29.517517, -15.644197 ], [ 30.275574, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, { "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": [ [ [ 33.214417, -13.971385 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.392118 ], [ 33.969727, -22.146708 ], [ 31.289062, -22.146708 ], [ 31.478577, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.654114, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.852112, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.275574, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.214417, -13.971385 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } , { "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.432373, -22.090730 ] ] ] } } ] } @@ -4873,24 +4877,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "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": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.037003 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +, { "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": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } @@ -4903,12 +4907,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } @@ -4947,21 +4951,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.944946, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.101257, 43.741336 ], [ 25.567932, 43.687736 ], [ 26.065063, 43.943395 ], [ 27.243347, 44.176295 ], [ 27.971191, 43.812729 ], [ 28.558960, 43.707594 ], [ 28.039856, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.995911, 42.006448 ], [ 27.136230, 42.141005 ], [ 26.117249, 41.826595 ], [ 26.106262, 41.329389 ], [ 25.197144, 41.234446 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.308761 ], [ 22.953186, 41.337638 ], [ 22.881775, 41.998284 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.986145, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } ] } @@ -4989,10 +4993,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.915771, 61.606396 ], [ 28.070068, 60.503230 ], [ 26.254578, 60.423343 ], [ 24.496765, 60.057987 ], [ 22.870789, 59.846195 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.280273, 60.394862 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.078552, 55.776573 ], [ 26.630859, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.177185, 56.168494 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.838867, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.630859, 55.652798 ], [ 27.078552, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.177185, 56.168494 ] ] ] } } @@ -5101,10 +5105,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 39.336548, -10.962764 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.471619, -11.568835 ], [ 36.773987, -11.595741 ], [ 36.513062, -11.722167 ], [ 35.312805, -11.439647 ], [ 34.560242, -11.520396 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.336548, -10.962764 ] ] ] } } , -{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.560242, -11.520396 ], [ 34.280090, -12.280966 ], [ 34.560242, -13.579251 ], [ 34.906311, -13.565902 ], [ 35.268860, -13.888745 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.340271, -16.106514 ], [ 35.032654, -16.801912 ], [ 34.381714, -16.183024 ], [ 34.307556, -15.477504 ], [ 34.516296, -15.013769 ], [ 34.458618, -14.612821 ], [ 34.065857, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } , +{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } +, { "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": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.057642 ], [ 43.283386, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.893127, -21.163923 ], [ 43.895874, -20.830577 ], [ 44.373779, -20.071411 ], [ 44.464417, -19.435514 ], [ 44.233704, -18.960844 ], [ 44.044189, -18.331062 ], [ 43.961792, -17.410925 ], [ 44.313354, -16.849234 ], [ 44.445190, -16.217312 ], [ 44.945068, -16.180386 ], [ 45.000000, -16.159283 ], [ 45.219727, -16.077486 ] ] ] } } ] } ] } @@ -5117,11 +5121,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.950274 ], [ 34.071350, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.768250, -3.677892 ], [ 39.201965, -4.677717 ], [ 38.740540, -5.908385 ], [ 38.800964, -6.476338 ], [ 39.440918, -6.839170 ], [ 39.471130, -7.100893 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.485955 ], [ 39.537048, -9.112945 ], [ 39.949036, -10.098670 ], [ 40.317078, -10.317621 ], [ 39.520569, -10.898042 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.680359, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.280090, -10.160857 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.378612 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } , { "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": [ [ [ 40.317078, -10.317621 ], [ 40.479126, -10.765858 ], [ 40.462646, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.680359, -11.393879 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.520569, -10.898042 ], [ 40.317078, -10.317621 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } ] } ] } , @@ -5129,16 +5133,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.908830 ], [ 34.258118, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.530273, 10.471607 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 34.620667, 4.847417 ], [ 35.299072, 5.506640 ] ] ] } } @@ -5167,18 +5171,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "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": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } ] } ] } @@ -5193,22 +5197,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.665894, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } @@ -5333,9 +5337,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.703214 ], [ 46.947327, 7.996677 ], [ 47.790527, 8.002117 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 44.780273, 4.995186 ], [ 44.780273, 8.784654 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.790527, 8.002117 ], [ 46.947327, 7.996677 ], [ 45.000000, 8.703214 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.557556, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.677673, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } ] } ] } , @@ -5347,9 +5351,9 @@ , { "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": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.046644 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , @@ -5357,17 +5361,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 47.559814, 32.138409 ], [ 47.686157, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.686157, 30.984673 ], [ 48.004761, 30.984673 ], [ 48.015747, 30.453409 ], [ 48.567810, 29.926374 ], [ 47.974548, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.559814, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.239229 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5379,10 +5383,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.811730 ], [ 45.359802, 40.561808 ], [ 45.892639, 40.218733 ], [ 45.609741, 39.899202 ], [ 46.035461, 39.628961 ], [ 46.483154, 39.463764 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.319425 ], [ 45.738831, 39.474365 ], [ 45.299377, 39.472245 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.686157, 31.952162 ], [ 47.812500, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.458679, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.582407 ], [ 48.356323, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.883667, 38.320111 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.841980, 36.873029 ], [ 52.264709, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.511169, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.812500, 31.765537 ], [ 47.686157, 31.952162 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.092945 ], [ 46.076660, 35.677379 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.155939 ], [ 44.780273, 39.707187 ], [ 44.794006, 39.713525 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } @@ -5399,11 +5403,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.557556, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.157349, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } ] } ] } , @@ -5513,15 +5517,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "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": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.395847 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.395847 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.395847 ] ] ] } } -, -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } ] } ] } , @@ -5529,13 +5533,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.049052 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } ] } @@ -5545,9 +5549,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -5669,10 +5673,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } , { "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": [ [ [ 78.579712, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } @@ -5681,32 +5685,32 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , { "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": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } -, { "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": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.521342 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } @@ -5851,10 +5855,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.767022 ], [ 88.854675, 48.068903 ], [ 88.014221, 48.600225 ], [ 87.893372, 48.922499 ], [ 87.838440, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } @@ -5969,9 +5973,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.681702, 11.393879 ], [ 99.602051, 11.178402 ], [ 99.154358, 9.963440 ], [ 99.223022, 9.240382 ], [ 99.873962, 9.207849 ], [ 100.280457, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.747174 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.642783 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.847351 ], [ 99.519653, 7.343399 ], [ 98.989563, 7.906912 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.039001, 10.960068 ], [ 99.165344, 11.178402 ], [ 99.294434, 11.393879 ], [ 99.681702, 11.393879 ] ] ] } } , -{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.747174 ], [ 101.469727, 2.707122 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 100.695190, 3.938240 ], [ 100.557861, 4.768047 ], [ 100.198059, 5.312501 ], [ 100.305176, 6.039505 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.642783 ] ] ] } } +, +{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } ] } ] } , @@ -5985,9 +5989,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } ] } ] } , @@ -6139,13 +6143,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.810024 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.227934 ], [ 101.030273, 6.855532 ] ] ] } } , -{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.855286, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 107.221069, 10.363555 ], [ 106.405334, 9.530332 ], [ 105.158386, 8.600032 ], [ 104.795837, 9.240382 ], [ 105.075989, 9.917449 ], [ 104.334412, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.855286, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.472006 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 111.796875, 0.903588 ], [ 111.159668, 0.977736 ], [ 110.514221, 0.771766 ], [ 109.830322, 1.337464 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.371155, 2.696148 ], [ 111.796875, 2.885437 ], [ 112.500000, 3.011613 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.227934 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.810024 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.126900 ], [ 102.961121, 5.525777 ], [ 103.381348, 4.855628 ], [ 103.439026, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.230042, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.573853, 1.966167 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 101.030273, 3.551800 ], [ 101.030273, 6.227934 ] ] ] ] } } +, +{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } ] } ] } , @@ -6155,13 +6159,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.151123, 21.848753 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } ] } ] } , @@ -6321,13 +6325,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "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": "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.934606 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.110046, 11.393879 ] ] ] ] } } +, +{ "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } , @@ -6487,9 +6491,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "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": "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.307068, 8.781940 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.749094 ], [ 126.537781, 7.188101 ], [ 126.197205, 6.274348 ], [ 125.831909, 7.294363 ], [ 125.364990, 6.787353 ], [ 125.683594, 6.050430 ], [ 125.395203, 5.580451 ], [ 124.219666, 6.162401 ], [ 123.939514, 6.885527 ], [ 124.244385, 7.359743 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.530273, 7.727322 ], [ 123.530273, 8.638049 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.513119 ], [ 124.763489, 8.961045 ], [ 125.472107, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 125.697327, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.310401 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.358151 ], [ 124.801941, 10.133821 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.329529, 11.393879 ], [ 125.697327, 11.393879 ] ] ], [ [ [ 124.076843, 11.232286 ], [ 124.071350, 11.178402 ], [ 123.983459, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.517518 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.232286 ] ] ] ] } } +, +{ "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json index b9c753dcc..cc9f208df 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":316,\"tile_size_desired\":39222},{\"dropped_as_needed\":287,\"tiny_polygons\":4,\"tile_size_desired\":25164},{\"dropped_as_needed\":223,\"tiny_polygons\":4,\"tile_size_desired\":21198},{\"dropped_as_needed\":93,\"tiny_polygons\":14,\"tile_size_desired\":10761},{\"dropped_as_needed\":9,\"tiny_polygons\":21,\"tile_size_desired\":6604},{\"tiny_polygons\":47}]", +"strategies": "[{\"dropped_as_needed\":479,\"tile_size_desired\":39196},{\"dropped_as_needed\":265,\"tiny_polygons\":3,\"tile_size_desired\":25157},{\"dropped_as_needed\":221,\"tiny_polygons\":3,\"tile_size_desired\":21202},{\"dropped_as_needed\":93,\"tiny_polygons\":13,\"tile_size_desired\":10760},{\"dropped_as_needed\":9,\"tiny_polygons\":20,\"tile_size_desired\":6601},{\"tiny_polygons\":47}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,37 +17,31 @@ { "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.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -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.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.062500, 7.972198 ], [ -58.447266, 7.362467 ], [ -58.447266, 6.839170 ], [ -58.095703, 6.839170 ], [ -57.128906, 5.965754 ], [ -57.304688, 5.090944 ], [ -57.919922, 4.828260 ], [ -57.832031, 4.565474 ], [ -58.007812, 4.039618 ], [ -57.568359, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.128906, 2.811371 ], [ -56.513672, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.656250, 1.669686 ], [ -58.447266, 1.493971 ], [ -58.535156, 1.230374 ], [ -59.062500, 1.318243 ], [ -59.677734, 1.757537 ], [ -59.941406, 2.723583 ], [ -59.853516, 3.601142 ], [ -59.501953, 3.951941 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.565474 ], [ -59.941406, 5.003394 ], [ -60.205078, 5.266008 ], [ -60.732422, 5.178482 ], [ -61.435547, 5.965754 ], [ -61.171875, 6.227934 ], [ -61.171875, 6.664608 ], [ -60.292969, 7.013668 ], [ -60.644531, 7.449624 ], [ -60.556641, 7.798079 ], [ -59.765625, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -4.042969, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.933594, 57.704147 ], [ -2.197266, 56.848972 ], [ -3.076172, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.908902 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.781436 ], [ 1.406250, 51.289406 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.460938, 50.513427 ], [ -2.988281, 50.680797 ], [ -3.603516, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.951220 ], [ -5.800781, 50.176898 ], [ -4.306641, 51.234407 ], [ -3.427734, 51.399206 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.321911 ], [ -4.746094, 52.855864 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.383328 ], [ -2.988281, 54.007769 ], [ -3.603516, 54.622978 ], [ -4.833984, 54.775346 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.009766, 55.776573 ], [ -5.625000, 55.329144 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.797944 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.625000, 54.572062 ], [ -6.240234, 53.852527 ], [ -6.943359, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.382812, 54.572062 ], [ -7.558594, 55.128649 ], [ -6.767578, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.128906, 14.604847 ], [ -11.953125, 13.410994 ], [ -11.513672, 13.154376 ], [ -11.513672, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.480469, 12.297068 ], [ -13.183594, 12.554564 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.382928 ], [ -16.875000, 13.154376 ], [ -15.908203, 13.154376 ], [ -15.117188, 13.496473 ], [ -14.677734, 13.325485 ], [ -14.238281, 13.239945 ], [ -13.886719, 13.496473 ], [ -14.062500, 13.752725 ], [ -14.677734, 13.667338 ], [ -15.117188, 13.838080 ], [ -15.380859, 13.838080 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.349548 ], [ -17.666016, 14.689881 ], [ -17.226562, 14.944785 ], [ -16.435547, 16.130262 ], [ -16.083984, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.551962 ], [ -14.589844, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.316406, 7.885147 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.275292 ], [ -8.964844, 7.275292 ], [ -8.701172, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.349609, 6.926427 ], [ -8.613281, 6.489983 ], [ -7.558594, 5.703448 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -8.964844, 4.828260 ], [ -11.425781, 6.751896 ], [ -11.162109, 7.362467 ], [ -10.195312, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.124213 ], [ -57.744141, -51.563412 ], [ -58.007812, -51.890054 ], [ -59.414062, -52.214339 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.321911 ], [ -61.171875, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.124213 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.563412 ], [ 34.189453, 51.234407 ], [ 34.980469, 51.234407 ], [ 35.419922, 50.792047 ], [ 35.332031, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.353516, 50.401515 ], [ 37.968750, 49.894634 ], [ 38.583984, 49.951220 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.872144 ], [ 38.759766, 47.813155 ], [ 38.232422, 47.517201 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.040182 ], [ 36.738281, 46.679594 ], [ 35.859375, 46.619261 ], [ 34.980469, 46.255847 ], [ 34.980469, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.562500, 45.460131 ], [ 36.298828, 45.089036 ], [ 35.244141, 44.964798 ], [ 33.925781, 44.339565 ], [ 33.310547, 44.590467 ], [ 33.574219, 45.026950 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.828799 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.640625, 46.679594 ], [ 30.761719, 46.558860 ], [ 30.410156, 46.012224 ], [ 29.619141, 45.274886 ], [ 29.179688, 45.460131 ], [ 28.652344, 45.274886 ], [ 28.212891, 45.460131 ], [ 28.476562, 45.583290 ], [ 28.916016, 46.255847 ], [ 28.828125, 46.437857 ], [ 29.091797, 46.498392 ], [ 29.179688, 46.377254 ], [ 30.058594, 46.437857 ], [ 29.794922, 46.498392 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.920255 ], [ 29.443359, 47.338823 ], [ 29.091797, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.107431 ], [ 28.300781, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.894531, 48.341646 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.872144 ], [ 24.873047, 47.754098 ], [ 24.433594, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.166085 ], [ 22.060547, 48.400032 ], [ 22.587891, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.466797, 50.289339 ], [ 23.906250, 50.401515 ], [ 23.994141, 50.680797 ], [ 23.554688, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 26.367188, 51.835778 ], [ 27.421875, 51.618017 ], [ 28.212891, 51.563412 ], [ 28.652344, 51.454007 ], [ 29.003906, 51.618017 ], [ 29.267578, 51.344339 ], [ 30.146484, 51.399206 ], [ 30.585938, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.268157 ], [ 32.695312, 52.214339 ], [ 33.750000, 52.321911 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.041016, 23.483401 ], [ 13.623047, 23.079732 ], [ 14.150391, 22.512557 ], [ 14.853516, 22.836946 ], [ 15.117188, 21.289374 ], [ 15.468750, 21.043491 ], [ 15.468750, 20.715015 ], [ 15.908203, 20.385825 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.895114 ], [ 15.205078, 16.636192 ], [ 13.974609, 15.707663 ], [ 13.535156, 14.349548 ], [ 13.974609, 14.008696 ], [ 13.974609, 13.325485 ], [ 14.589844, 13.325485 ], [ 14.501953, 12.897489 ], [ 14.238281, 12.811801 ], [ 14.150391, 12.468760 ], [ 13.974609, 12.468760 ], [ 13.359375, 13.581921 ], [ 13.095703, 13.581921 ], [ 12.304688, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.722656, 13.239945 ], [ 10.107422, 13.239945 ], [ 9.492188, 12.811801 ], [ 9.052734, 12.811801 ], [ 7.822266, 13.325485 ], [ 7.294922, 13.068777 ], [ 6.855469, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.449219, 13.838080 ], [ 4.394531, 13.752725 ], [ 4.130859, 13.496473 ], [ 3.955078, 12.983148 ], [ 3.691406, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.197266, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.054688, 12.811801 ], [ 0.966797, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.263672, 14.434680 ], [ 0.351562, 14.944785 ], [ 1.054688, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.603516, 15.538376 ], [ 3.691406, 16.214675 ], [ 4.306641, 16.888660 ], [ 4.306641, 19.145168 ], [ 5.712891, 19.642588 ], [ 8.613281, 21.534847 ], [ 12.041016, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.730469, 35.675147 ], [ 24.257812, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.191406, 35.029996 ], [ 24.697266, 34.885931 ], [ 24.697266, 35.101934 ], [ 23.554688, 35.245619 ], [ 23.730469, 35.675147 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.630859, 41.574361 ], [ 26.279297, 40.913513 ], [ 26.015625, 40.847060 ], [ 24.960938, 40.979898 ], [ 23.730469, 40.713956 ], [ 24.433594, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.378906, 39.977120 ], [ 22.851562, 40.446947 ], [ 22.587891, 40.245992 ], [ 22.851562, 39.639538 ], [ 23.378906, 39.164141 ], [ 22.939453, 38.959409 ], [ 23.994141, 38.203655 ], [ 24.082031, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.300275 ], [ 23.115234, 36.456636 ], [ 22.500000, 36.385913 ], [ 21.708984, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.654297, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.708984, 40.913513 ], [ 22.060547, 41.178654 ], [ 22.587891, 41.112469 ], [ 22.939453, 41.310824 ], [ 23.730469, 41.310824 ], [ 24.521484, 41.574361 ], [ 25.224609, 41.244772 ], [ 26.103516, 41.310824 ], [ 26.103516, 41.836828 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.578535 ], [ 28.916016, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.728516, 31.428663 ], [ 31.992188, 30.902225 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.075375 ], [ 34.189453, 27.839076 ], [ 33.925781, 27.683528 ], [ 33.134766, 28.381735 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.695312, 28.690588 ], [ 34.101562, 26.115986 ], [ 34.804688, 25.005973 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.725012 ], [ 35.507812, 23.079732 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.228890 ], [ 24.697266, 30.069094 ], [ 24.960938, 30.675715 ], [ 24.785156, 31.052934 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.578535 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.795678 ], [ 1.494141, 9.362353 ], [ 1.669922, 9.102097 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.527344, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 39.023438, 16.804541 ], [ 39.287109, 15.961329 ], [ 41.220703, 14.519780 ], [ 42.626953, 12.983148 ], [ 43.066406, 12.726084 ], [ 42.802734, 12.468760 ], [ 42.363281, 12.554564 ], [ 40.869141, 14.093957 ], [ 39.990234, 14.519780 ], [ 39.375000, 14.519780 ], [ 39.111328, 14.774883 ], [ 38.496094, 14.519780 ], [ 37.880859, 14.944785 ], [ 37.617188, 14.179186 ], [ 36.386719, 14.434680 ], [ 36.298828, 14.859850 ], [ 36.826172, 16.972741 ], [ 37.177734, 17.224758 ], [ 37.880859, 17.392579 ], [ 38.408203, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.486328, 35.029996 ], [ 33.837891, 35.101934 ], [ 34.013672, 34.957995 ], [ 32.958984, 34.597042 ], [ 32.519531, 34.669359 ], [ 32.255859, 35.101934 ], [ 33.398438, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 38.479395 ], [ 71.367188, 38.272689 ], [ 71.279297, 37.926868 ], [ 71.542969, 37.926868 ], [ 71.455078, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.020098 ], [ 73.300781, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.091797, 36.809285 ], [ 71.806641, 36.527295 ], [ 71.279297, 36.102376 ], [ 71.630859, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.191406, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.960938, 34.016242 ], [ 70.312500, 33.358062 ], [ 69.697266, 33.137551 ], [ 69.257812, 32.472695 ], [ 69.345703, 31.877558 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.578535 ], [ 67.675781, 31.278551 ], [ 66.972656, 31.278551 ], [ 66.357422, 30.751278 ], [ 66.357422, 29.916852 ], [ 65.039062, 29.458731 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.305561 ], [ 63.544922, 29.458731 ], [ 62.578125, 29.305561 ], [ 60.908203, 29.840644 ], [ 61.787109, 30.751278 ], [ 61.699219, 31.353637 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.175612 ], [ 60.556641, 32.990236 ], [ 60.996094, 33.504759 ], [ 60.556641, 33.651208 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.245619 ], [ 63.017578, 35.389050 ], [ 63.193359, 35.889050 ], [ 63.984375, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.775391, 37.090240 ], [ 65.566406, 37.300275 ], [ 65.742188, 37.649034 ], [ 66.181641, 37.370157 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.020098 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.521484, 37.579413 ], [ 70.136719, 37.579413 ], [ 70.400391, 38.134557 ], [ 70.839844, 38.479395 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 53.085938, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.623037 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.373047, 13.581921 ], [ 45.615234, 13.325485 ], [ 45.000000, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.208984, 12.554564 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 42.890625, 14.774883 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.284185 ], [ 42.714844, 15.707663 ], [ 42.802734, 15.876809 ], [ 42.802734, 16.383391 ], [ 43.242188, 16.636192 ], [ 43.154297, 17.056785 ], [ 43.417969, 17.560247 ], [ 43.769531, 17.308688 ], [ 45.175781, 17.392579 ], [ 46.406250, 17.224758 ], [ 46.757812, 17.308688 ], [ 47.021484, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.145852 ], [ 49.130859, 18.646245 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.304381 ], [ 90.703125, 28.071980 ], [ 91.230469, 28.071980 ], [ 92.109375, 27.449790 ], [ 92.021484, 26.824071 ], [ 90.351562, 26.902477 ], [ 89.736328, 26.745610 ], [ 88.857422, 27.137368 ], [ 88.857422, 27.293689 ], [ 89.472656, 28.071980 ], [ 90.000000, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.988281, 41.376809 ], [ 48.603516, 41.836828 ], [ 49.658203, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.361328, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.218750, 39.027719 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.076172, 39.571822 ], [ 47.724609, 39.504041 ], [ 46.494141, 38.754083 ], [ 46.494141, 39.436193 ], [ 45.615234, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.780541 ], [ 45.175781, 40.979898 ], [ 45.000000, 41.244772 ], [ 45.175781, 41.442726 ], [ 45.966797, 41.112469 ], [ 46.494141, 41.046217 ], [ 46.669922, 41.178654 ], [ 46.142578, 41.705729 ], [ 46.406250, 41.836828 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.000000, 39.707187 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.824219, 39.707187 ], [ 45.000000, 39.707187 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.328125, 41.376809 ], [ 141.943359, 39.977120 ], [ 141.855469, 39.164141 ], [ 140.976562, 38.203655 ], [ 140.976562, 37.160317 ], [ 140.625000, 36.315125 ], [ 140.800781, 35.817813 ], [ 140.273438, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.431441 ], [ 135.087891, 33.870416 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.187500, 33.870416 ], [ 130.957031, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.308594, 31.428663 ], [ 130.693359, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.284620 ], [ 130.341797, 33.578015 ], [ 130.869141, 34.234512 ], [ 131.923828, 34.741612 ], [ 132.626953, 35.460670 ], [ 134.648438, 35.746512 ], [ 135.703125, 35.532226 ], [ 136.757812, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.394531, 38.203655 ], [ 140.097656, 39.436193 ], [ 139.921875, 40.580585 ], [ 140.273438, 41.178654 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 133.945312, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.736328, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.769531, 33.504759 ], [ 133.242188, 33.284620 ], [ 132.978516, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.431441 ], [ 132.890625, 34.089061 ], [ 133.505859, 33.943360 ], [ 133.945312, 34.379713 ] ] ], [ [ [ 141.943359, 45.521744 ], [ 143.173828, 44.527843 ], [ 143.876953, 44.150681 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.546875, 43.261206 ], [ 144.052734, 43.004647 ], [ 143.173828, 41.967659 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.921875, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.273438, 43.325178 ], [ 141.416016, 43.389082 ], [ 141.943359, 45.521744 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.926295 ], [ 56.865234, 24.206890 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.563987 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.512557 ], [ 59.765625, 22.350076 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.468189 ], [ 57.832031, 20.220966 ], [ 57.656250, 19.725342 ], [ 57.832031, 19.062118 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.062312 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.613281, 16.720385 ], [ 53.085938, 16.636192 ], [ 52.031250, 18.979026 ], [ 55.019531, 19.973349 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.674847 ], [ 55.195312, 23.079732 ], [ 55.546875, 23.563987 ], [ 55.546875, 23.966176 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.425781, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.513672, 26.273714 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.337891, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 35.859375, 5.353521 ], [ 35.859375, 4.740675 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.144531, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.781250, 4.214943 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.108899 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.814453, -3.688855 ], [ 39.638672, -4.390229 ], [ 39.199219, -4.653080 ], [ 37.792969, -3.688855 ], [ 37.705078, -3.074695 ], [ 33.925781, -0.966751 ], [ 33.925781, 0.087891 ], [ 35.068359, 1.933227 ], [ 34.453125, 3.513421 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 98.261719, 27.761330 ], [ 98.701172, 27.527758 ], [ 98.701172, 25.958045 ], [ 97.734375, 25.085599 ], [ 97.646484, 23.885838 ], [ 98.701172, 24.046464 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.917923 ], [ 99.228516, 22.105999 ], [ 100.458984, 21.534847 ], [ 101.162109, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.371094, 20.797201 ], [ 100.107422, 20.385825 ], [ 99.580078, 20.220966 ], [ 98.964844, 19.725342 ], [ 98.261719, 19.725342 ], [ 97.822266, 18.646245 ], [ 97.382812, 18.479609 ], [ 97.822266, 17.560247 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.284185 ], [ 98.173828, 15.114553 ], [ 98.437500, 14.604847 ], [ 99.140625, 13.838080 ], [ 99.228516, 12.811801 ], [ 99.580078, 11.867351 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.660608 ], [ 98.789062, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.207031, 16.888660 ], [ 95.361328, 15.707663 ], [ 94.218750, 16.045813 ], [ 94.570312, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.691406, 19.725342 ], [ 93.076172, 19.890723 ], [ 92.373047, 20.632784 ], [ 92.285156, 21.453069 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.024546 ], [ 93.164062, 22.268764 ], [ 93.076172, 22.674847 ], [ 93.251953, 23.079732 ], [ 93.339844, 24.046464 ], [ 94.130859, 23.885838 ], [ 94.570312, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.185547, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.226970 ], [ 97.910156, 28.304381 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.441022 ], [ 115.312500, 4.302591 ], [ 114.873047, 4.390229 ], [ 114.697266, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.488281, 5.441022 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.167969, -8.928487 ], [ 32.783203, -9.188870 ], [ 33.222656, -9.709057 ], [ 33.486328, -10.487812 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.468760 ], [ 32.958984, -12.811801 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 29.531250, -15.623037 ], [ 28.916016, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.070312, -17.978733 ], [ 25.224609, -17.727759 ], [ 24.697266, -17.392579 ], [ 23.994141, -17.308688 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.695273 ], [ 23.994141, -11.264612 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.919618 ], [ 24.345703, -11.264612 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.953349 ], [ 27.158203, -11.609193 ], [ 27.421875, -12.125264 ], [ 28.125000, -12.297068 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.476562, -9.188870 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } -, -{ "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": [ [ [ 68.906250, -48.632909 ], [ 69.609375, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.576172, -49.267805 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.267805 ], [ 68.906250, -48.632909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.279297, -10.228437 ], [ 162.158203, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.279297, -10.228437 ] ] ], [ [ [ 159.697266, -9.275622 ], [ 160.400391, -9.362353 ], [ 160.839844, -9.882275 ], [ 159.873047, -9.795678 ], [ 159.609375, -9.622414 ], [ 159.697266, -9.275622 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.718750, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.751953, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.362467 ], [ 159.609375, -8.059230 ], [ 159.960938, -8.581021 ], [ 159.169922, -8.146243 ], [ 158.203125, -7.449624 ], [ 158.378906, -7.362467 ] ] ], [ [ [ 156.533203, -6.577303 ], [ 157.148438, -7.013668 ], [ 157.500000, -7.362467 ], [ 157.324219, -7.362467 ], [ 156.884766, -7.188101 ], [ 156.533203, -6.751896 ], [ 156.533203, -6.577303 ] ] ] ] } } ] } ] } , @@ -59,8 +53,6 @@ , { "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.020508, 3.513421 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.496094, -3.688855 ], [ -37.221680, -4.828260 ], [ -36.474609, -5.090944 ], [ -35.595703, -5.134715 ], [ -35.244141, -5.484768 ], [ -34.716797, -7.362467 ], [ -35.112305, -9.015302 ], [ -35.639648, -9.665738 ], [ -37.045898, -11.049038 ], [ -37.705078, -12.168226 ], [ -38.408203, -13.025966 ], [ -38.671875, -13.068777 ], [ -38.935547, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.920397 ], [ -40.957031, -21.943046 ], [ -41.748047, -22.390714 ], [ -41.967773, -22.958393 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.450195, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.515625, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.647461, -28.188244 ], [ -48.867188, -28.690588 ], [ -49.570312, -29.228890 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.250977, -32.249974 ], [ -52.690430, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.063956 ], [ -55.590820, -30.864510 ], [ -55.986328, -30.864510 ], [ -56.997070, -30.107118 ], [ -57.612305, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.941660 ], [ -53.613281, -26.115986 ], [ -54.140625, -25.562265 ], [ -54.624023, -25.720735 ], [ -54.272461, -24.567108 ], [ -54.272461, -24.006326 ], [ -54.667969, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.415039, -23.966176 ], [ -55.502930, -23.563987 ], [ -55.590820, -22.674847 ], [ -55.810547, -22.350076 ], [ -56.469727, -22.105999 ], [ -56.865234, -22.268764 ], [ -57.919922, -22.105999 ], [ -57.875977, -20.715015 ], [ -58.183594, -20.179724 ], [ -57.832031, -19.973349 ], [ -57.963867, -19.394068 ], [ -57.656250, -18.979026 ], [ -57.480469, -18.187607 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.403320, -16.888660 ], [ -58.227539, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.556641, -15.114553 ], [ -60.249023, -15.072124 ], [ -60.249023, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.795406 ], [ -61.083984, -13.496473 ], [ -61.699219, -13.496473 ], [ -62.138672, -13.197165 ], [ -62.797852, -12.983148 ], [ -63.193359, -12.640338 ], [ -64.335938, -12.468760 ], [ -65.390625, -11.566144 ], [ -65.302734, -10.876465 ], [ -65.434570, -10.531020 ], [ -65.346680, -9.752370 ], [ -66.665039, -9.925566 ], [ -67.192383, -10.314919 ], [ -68.027344, -10.703792 ], [ -68.291016, -11.005904 ], [ -68.774414, -11.049038 ], [ -69.521484, -10.962764 ], [ -70.092773, -11.135287 ], [ -70.532227, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.323242, -10.098670 ], [ -72.202148, -10.055403 ], [ -72.553711, -9.535749 ], [ -73.212891, -9.449062 ], [ -73.037109, -9.015302 ], [ -73.564453, -8.407168 ], [ -74.003906, -7.536764 ], [ -73.740234, -7.362467 ], [ -73.740234, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.949219, -5.747174 ], [ -72.905273, -5.266008 ], [ -71.762695, -4.609278 ], [ -70.927734, -4.390229 ], [ -70.795898, -4.258768 ], [ -69.873047, -4.302591 ], [ -69.433594, -1.142502 ], [ -69.565430, -0.571280 ], [ -70.004883, -0.175781 ], [ -70.004883, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.966751 ], [ -69.785156, 1.098565 ], [ -69.829102, 1.713612 ], [ -67.851562, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.280273, 1.713612 ], [ -67.060547, 1.142502 ], [ -66.884766, 1.274309 ], [ -66.313477, 0.703107 ], [ -65.566406, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.933227 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.248047, 2.504085 ], [ -64.423828, 3.118576 ], [ -64.379883, 3.513421 ], [ -59.853516, 3.513421 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.801461 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.447266, 1.450040 ], [ -58.095703, 1.493971 ], [ -57.656250, 1.669686 ], [ -57.348633, 1.933227 ], [ -55.986328, 1.801461 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.504085 ], [ -55.590820, 2.416276 ], [ -55.107422, 2.504085 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.569336, 2.328460 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.108899 ], [ -52.558594, 2.504085 ], [ -52.075195, 3.513421 ], [ -51.020508, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } -, { "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.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.442383, -3.864255 ], [ -78.618164, -4.565474 ], [ -79.189453, -4.959615 ], [ -79.628906, -4.434044 ], [ -80.024414, -4.346411 ], [ -80.463867, -4.434044 ], [ -80.463867, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.192383, 2.240640 ], [ -66.884766, 1.274309 ], [ -67.060547, 1.142502 ], [ -67.280273, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.851562, 1.713612 ], [ -69.829102, 1.713612 ], [ -69.785156, 1.098565 ], [ -69.213867, 0.966751 ], [ -69.257812, 0.615223 ], [ -69.433594, 0.703107 ], [ -70.004883, 0.527336 ], [ -70.004883, -0.175781 ], [ -69.565430, -0.571280 ], [ -69.433594, -1.142502 ], [ -69.873047, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.795898, -2.240640 ], [ -71.411133, -2.328460 ], [ -71.762695, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.328460 ], [ -73.652344, -1.274309 ], [ -74.135742, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.043945 ], [ -75.366211, -0.131836 ], [ -75.629883, 0.000000 ], [ -76.289062, 0.395505 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.651367, 0.834931 ], [ -77.871094, 0.790990 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.669686 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.387695, 3.513421 ], [ -67.324219, 3.513421 ] ] ] } } @@ -69,14 +61,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -10.531020 ], [ -65.302734, -10.876465 ], [ -65.390625, -11.566144 ], [ -64.335938, -12.468760 ], [ -63.193359, -12.640338 ], [ -62.797852, -12.983148 ], [ -62.138672, -13.197165 ], [ -61.699219, -13.496473 ], [ -61.083984, -13.496473 ], [ -60.512695, -13.795406 ], [ -60.468750, -14.349548 ], [ -60.249023, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.556641, -15.114553 ], [ -60.161133, -16.256867 ], [ -58.227539, -16.299051 ], [ -58.403320, -16.888660 ], [ -58.271484, -17.266728 ], [ -57.744141, -17.560247 ], [ -57.480469, -18.187607 ], [ -57.656250, -18.979026 ], [ -57.963867, -19.394068 ], [ -57.832031, -19.973349 ], [ -58.183594, -20.179724 ], [ -58.183594, -19.849394 ], [ -59.106445, -19.352611 ], [ -60.029297, -19.352611 ], [ -61.787109, -19.642588 ], [ -62.270508, -20.509355 ], [ -62.270508, -21.043491 ], [ -62.666016, -22.268764 ], [ -62.841797, -22.024546 ], [ -63.984375, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.951172, -22.065278 ], [ -66.269531, -21.820708 ], [ -67.104492, -22.755921 ], [ -67.807617, -22.877440 ], [ -68.203125, -21.493964 ], [ -68.774414, -20.385825 ], [ -68.422852, -19.394068 ], [ -68.950195, -18.979026 ], [ -69.082031, -18.271086 ], [ -69.609375, -17.560247 ], [ -68.950195, -16.509833 ], [ -69.389648, -15.665354 ], [ -69.169922, -15.326572 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.434680 ], [ -68.862305, -12.897489 ], [ -68.686523, -12.554564 ], [ -69.521484, -10.962764 ], [ -68.774414, -11.049038 ], [ -68.291016, -11.005904 ], [ -68.027344, -10.703792 ], [ -67.192383, -10.314919 ], [ -66.665039, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "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.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.820708 ], [ -64.951172, -22.065278 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.024546 ], [ -62.666016, -22.268764 ], [ -60.864258, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.612305, -25.601902 ], [ -58.623047, -27.137368 ], [ -57.612305, -27.410786 ], [ -56.469727, -27.566721 ], [ -55.678711, -27.371767 ], [ -54.799805, -26.627818 ], [ -54.624023, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.657227, -26.941660 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.612305, -30.221102 ], [ -58.139648, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.960223 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.013066 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -66.005859, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -69.477539, -52.133488 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.426614 ], [ -72.290039, -50.680797 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.325122 ], [ -72.641602, -48.864715 ], [ -72.333984, -48.253941 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.890232 ], [ -71.542969, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.802819 ], [ -71.894531, -43.421009 ], [ -72.158203, -42.261049 ], [ -71.762695, -42.065607 ], [ -71.894531, -40.847060 ], [ -71.411133, -38.925229 ], [ -70.795898, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.356445, -35.995785 ], [ -70.400391, -35.173808 ], [ -69.829102, -34.198173 ], [ -69.829102, -33.284620 ], [ -70.092773, -33.100745 ], [ -70.532227, -31.353637 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.382175 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.006326 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.755921 ], [ -66.269531, -21.820708 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.997070, -30.107118 ], [ -55.986328, -30.864510 ], [ -55.590820, -30.864510 ], [ -53.789062, -32.063956 ], [ -53.217773, -32.731841 ], [ -53.657227, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.789062, -34.379713 ], [ -54.931641, -34.957995 ], [ -55.678711, -34.741612 ], [ -56.206055, -34.849875 ], [ -57.128906, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.359375, -33.247876 ], [ -58.139648, -33.027088 ], [ -58.139648, -32.026706 ], [ -57.612305, -30.221102 ], [ -56.997070, -30.107118 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, -19.352611 ], [ -58.183594, -19.849394 ], [ -58.183594, -20.179724 ], [ -57.875977, -20.715015 ], [ -57.919922, -22.105999 ], [ -56.865234, -22.268764 ], [ -56.469727, -22.105999 ], [ -55.810547, -22.350076 ], [ -55.590820, -22.674847 ], [ -55.502930, -23.563987 ], [ -55.415039, -23.966176 ], [ -55.019531, -24.006326 ], [ -54.667969, -23.845650 ], [ -54.272461, -24.006326 ], [ -54.272461, -24.567108 ], [ -54.624023, -25.720735 ], [ -54.799805, -26.627818 ], [ -55.678711, -27.371767 ], [ -56.469727, -27.566721 ], [ -57.612305, -27.410786 ], [ -58.623047, -27.137368 ], [ -57.612305, -25.601902 ], [ -57.788086, -25.165173 ], [ -58.798828, -24.766785 ], [ -60.029297, -24.046464 ], [ -60.864258, -23.885838 ], [ -62.666016, -22.268764 ], [ -62.270508, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.642588 ], [ -60.029297, -19.352611 ], [ -59.106445, -19.352611 ] ] ] } } +{ "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.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.820708 ], [ -64.951172, -22.065278 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.024546 ], [ -62.666016, -22.268764 ], [ -60.864258, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.612305, -25.601902 ], [ -58.623047, -27.137368 ], [ -57.612305, -27.410786 ], [ -56.469727, -27.566721 ], [ -55.678711, -27.371767 ], [ -54.799805, -26.627818 ], [ -54.624023, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.657227, -26.941660 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.612305, -30.221102 ], [ -58.139648, -32.026706 ], [ -58.139648, -33.027088 ], [ -58.359375, -33.247876 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.960223 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.013066 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -66.005859, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -69.477539, -52.133488 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.426614 ], [ -72.290039, -50.680797 ], [ -72.993164, -50.736455 ], [ -73.344727, -50.373496 ], [ -73.432617, -49.325122 ], [ -72.641602, -48.864715 ], [ -72.333984, -48.253941 ], [ -72.465820, -47.724545 ], [ -71.938477, -46.890232 ], [ -71.542969, -45.552525 ], [ -71.674805, -44.964798 ], [ -71.235352, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.802819 ], [ -71.894531, -43.421009 ], [ -72.158203, -42.261049 ], [ -71.762695, -42.065607 ], [ -71.894531, -40.847060 ], [ -71.411133, -38.925229 ], [ -70.795898, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.356445, -35.995785 ], [ -70.400391, -35.173808 ], [ -69.829102, -34.198173 ], [ -69.829102, -33.284620 ], [ -70.092773, -33.100745 ], [ -70.532227, -31.353637 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.382175 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.006326 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.755921 ], [ -66.269531, -21.820708 ] ] ] ] } } , { "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.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.271086 ], [ -68.950195, -18.979026 ], [ -68.422852, -19.394068 ], [ -68.774414, -20.385825 ], [ -68.203125, -21.493964 ], [ -67.807617, -22.877440 ], [ -67.104492, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.006326 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.382175 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.353637 ], [ -70.092773, -33.100745 ], [ -69.829102, -33.284620 ], [ -69.829102, -34.198173 ], [ -70.400391, -35.173808 ], [ -70.356445, -35.995785 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.795898, -38.548165 ], [ -71.411133, -38.925229 ], [ -71.894531, -40.847060 ], [ -71.762695, -42.065607 ], [ -72.158203, -42.261049 ], [ -71.894531, -43.421009 ], [ -71.455078, -43.802819 ], [ -71.806641, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.542969, -45.552525 ], [ -71.938477, -46.890232 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.253941 ], [ -72.641602, -48.864715 ], [ -73.432617, -49.325122 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.290039, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.894531, -51.998410 ], [ -69.477539, -52.133488 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.902225 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -69.873047, -18.104087 ], [ -69.609375, -17.560247 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.096623 ], [ -57.744141, -51.563412 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.862924 ], [ -60.688477, -52.295042 ], [ -61.215820, -51.862924 ], [ -59.985352, -51.261915 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.096623 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.578125, -69.990535 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.052734, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ -181.625977, -17.350638 ], [ -181.274414, -17.644022 ], [ -181.450195, -18.145852 ], [ -182.065430, -18.271086 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.727759 ], [ -182.329102, -17.392579 ], [ -181.889648, -17.518344 ], [ -181.625977, -17.350638 ] ] ], [ [ [ -180.000000, -16.088042 ], [ -179.780273, -16.003576 ], [ -179.912109, -16.509833 ], [ -180.000000, -16.551962 ], [ -180.615234, -16.804541 ], [ -181.274414, -17.014768 ], [ -181.406250, -16.636192 ], [ -180.922852, -16.425548 ], [ -180.571289, -16.383391 ], [ -180.000000, -16.088042 ] ] ] ] } } @@ -91,11 +85,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.178711, 25.204941 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.327077 ], [ -77.519531, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 25.997550 ], [ -77.343750, 26.549223 ], [ -77.783203, 26.941660 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -78.530273, 26.863281 ], [ -77.871094, 26.824071 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.969727, 26.784847 ], [ -78.530273, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -83.759766, 15.411319 ], [ -83.408203, 15.284185 ], [ -83.144531, 14.987240 ], [ -83.496094, 15.029686 ], [ -83.627930, 14.859850 ], [ -83.979492, 14.732386 ], [ -84.243164, 14.732386 ], [ -84.462891, 14.604847 ], [ -84.638672, 14.647368 ], [ -84.814453, 14.817371 ], [ -84.946289, 14.774883 ], [ -85.034180, 14.562318 ], [ -85.166016, 14.562318 ], [ -85.166016, 14.349548 ], [ -85.781250, 13.838080 ], [ -86.088867, 14.051331 ], [ -86.308594, 13.752725 ], [ -86.748047, 13.752725 ], [ -86.748047, 13.282719 ], [ -86.879883, 13.239945 ], [ -87.011719, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.282719 ], [ -87.802734, 13.368243 ], [ -87.714844, 13.795406 ], [ -87.846680, 13.880746 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.549805, 13.966054 ], [ -89.077148, 14.349548 ], [ -89.340820, 14.434680 ], [ -89.165039, 14.689881 ], [ -89.208984, 14.859850 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.326572 ], [ -88.242188, 15.707663 ], [ -88.110352, 15.707663 ], [ -87.890625, 15.876809 ], [ -87.626953, 15.876809 ], [ -87.539062, 15.792254 ], [ -87.363281, 15.834536 ], [ -86.923828, 15.749963 ], [ -86.440430, 15.792254 ], [ -86.132812, 15.876809 ], [ -86.000977, 16.003576 ], [ -85.429688, 15.876809 ], [ -84.990234, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.340820, 14.434680 ], [ -89.077148, 14.349548 ], [ -88.549805, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.066406, 13.966054 ], [ -87.714844, 13.795406 ], [ -87.890625, 13.154376 ], [ -88.461914, 13.154376 ], [ -89.252930, 13.453737 ], [ -89.824219, 13.539201 ], [ -90.087891, 13.752725 ], [ -90.043945, 13.880746 ], [ -89.516602, 14.264383 ], [ -89.604492, 14.349548 ], [ -89.340820, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.221510 ], [ -84.902344, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.790141 ], [ -83.891602, 10.746969 ], [ -83.671875, 10.919618 ], [ -83.408203, 10.401378 ], [ -82.529297, 9.579084 ], [ -82.924805, 9.492408 ], [ -82.924805, 9.058702 ], [ -82.705078, 8.928487 ], [ -82.880859, 8.798225 ], [ -82.836914, 8.624472 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.583984, 8.841651 ], [ -83.627930, 9.058702 ], [ -83.891602, 9.275622 ], [ -84.638672, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.902344, 9.795678 ], [ -85.122070, 9.535749 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.781250, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.957031, 10.876465 ], [ -85.561523, 11.221510 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.537565 ], [ -77.255859, 7.928675 ], [ -77.431641, 7.623887 ], [ -77.739258, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -80.024414, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.210938, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.133789, 8.189742 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.836914, 8.624472 ], [ -82.880859, 8.798225 ], [ -82.705078, 8.928487 ], [ -82.924805, 9.058702 ], [ -82.924805, 9.492408 ], [ -82.529297, 9.579084 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.971897 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.936523, 9.318990 ], [ -79.584961, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.795898, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.334961, 18.604601 ], [ -68.686523, 18.187607 ], [ -69.169922, 18.437925 ], [ -69.609375, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.229351 ], [ -70.532227, 18.187607 ], [ -70.664062, 18.437925 ], [ -71.015625, 18.271086 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.674805, 18.312811 ], [ -71.938477, 18.604601 ], [ -71.718750, 18.771115 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.890723 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.168945, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.186678 ], [ -71.718750, 18.771115 ], [ -71.938477, 18.604601 ], [ -71.674805, 18.312811 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.432617, 18.229351 ], [ -73.916016, 18.020528 ], [ -74.443359, 18.354526 ], [ -74.355469, 18.646245 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.687879 ], [ -72.773438, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.432617, 19.642588 ], [ -73.168945, 19.932041 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.876465 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ], [ -60.908203, 10.876465 ] ] ] } } , @@ -105,21 +99,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.739352 ], [ -6.767578, 43.580391 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.389082 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.650122 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.811522 ], [ 1.845703, 42.358544 ], [ 2.988281, 42.488302 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.350586, 36.668419 ], [ -5.009766, 36.315125 ], [ -5.361328, 35.960223 ], [ -5.844727, 36.031332 ], [ -6.240234, 36.350527 ], [ -6.503906, 36.949892 ], [ -7.470703, 37.090240 ], [ -7.558594, 37.439974 ], [ -7.163086, 37.788081 ], [ -7.031250, 38.065392 ], [ -7.382812, 38.376115 ], [ -7.119141, 39.027719 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.372070, 41.376809 ], [ -6.679688, 41.869561 ], [ -7.250977, 41.902277 ], [ -7.426758, 41.804078 ], [ -7.998047, 41.804078 ], [ -8.261719, 42.293564 ], [ -8.657227, 42.130821 ], [ -9.052734, 41.869561 ], [ -8.964844, 42.585444 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.739352 ] ] ] } } , -{ "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": [ [ [ -8.657227, 27.644606 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.918526 ], [ -11.953125, 23.362429 ], [ -12.875977, 23.281719 ], [ -13.139648, 22.755921 ], [ -12.919922, 21.330315 ], [ -16.831055, 21.330315 ], [ -17.050781, 21.002471 ], [ -17.006836, 21.412162 ], [ -14.765625, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.238281, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.733398, 26.115986 ], [ -11.381836, 26.902477 ], [ -10.546875, 26.980829 ], [ -10.195312, 26.863281 ], [ -9.755859, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.137368 ], [ -8.833008, 27.644606 ], [ -8.657227, 27.644606 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.647461, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.713867, 33.906896 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.486551 ], [ -5.229492, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.075195, 29.573457 ], [ -8.657227, 28.844674 ], [ -8.657227, 27.644606 ], [ -8.833008, 27.644606 ], [ -8.789062, 27.137368 ], [ -9.404297, 27.098254 ], [ -9.755859, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 26.980829 ], [ -11.381836, 26.902477 ], [ -11.733398, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.480469, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.238281, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.765625, 21.493964 ], [ -17.006836, 21.412162 ], [ -16.962891, 21.902278 ], [ -16.567383, 22.146708 ], [ -16.259766, 22.674847 ], [ -16.347656, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.073242, 24.527135 ], [ -14.809570, 25.085599 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.273714 ], [ -13.754883, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.916852 ], [ -9.799805, 31.165810 ], [ -9.448242, 32.026706 ], [ -9.316406, 32.546813 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.899414, 34.125448 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.746512 ], [ -5.185547, 35.746512 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.073242, 13.880746 ], [ -14.677734, 13.624633 ], [ -14.370117, 13.624633 ], [ -14.062500, 13.795406 ], [ -13.842773, 13.496473 ], [ -14.282227, 13.282719 ], [ -14.721680, 13.282719 ], [ -15.161133, 13.496473 ], [ -15.512695, 13.282719 ], [ -15.688477, 13.282719 ], [ -15.952148, 13.111580 ], [ -16.831055, 13.154376 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.624633 ], [ -15.380859, 13.880746 ], [ -15.073242, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.594081 ], [ -14.106445, 16.299051 ], [ -13.447266, 16.045813 ], [ -12.172852, 14.604847 ], [ -12.128906, 14.008696 ], [ -11.909180, 13.410994 ], [ -11.557617, 13.154376 ], [ -11.469727, 12.768946 ], [ -11.513672, 12.425848 ], [ -11.645508, 12.382928 ], [ -12.216797, 12.468760 ], [ -12.260742, 12.340002 ], [ -12.480469, 12.340002 ], [ -13.227539, 12.554564 ], [ -15.556641, 12.640338 ], [ -15.820312, 12.511665 ], [ -16.127930, 12.554564 ], [ -16.699219, 12.382928 ], [ -16.831055, 13.154376 ], [ -15.952148, 13.111580 ], [ -15.688477, 13.282719 ], [ -15.512695, 13.282719 ], [ -15.161133, 13.496473 ], [ -14.721680, 13.282719 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.496473 ], [ -14.062500, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.677734, 13.624633 ], [ -15.073242, 13.880746 ], [ -15.380859, 13.880746 ], [ -15.644531, 13.624633 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.392118 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.902322 ], [ -16.699219, 15.623037 ], [ -16.479492, 16.130262 ], [ -16.127930, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.594081 ], [ -14.589844, 16.594081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.537109, 15.496032 ], [ -9.536133, 15.496032 ], [ -9.711914, 15.284185 ], [ -10.107422, 15.326572 ], [ -10.634766, 15.114553 ], [ -11.337891, 15.411319 ], [ -11.645508, 15.368950 ], [ -11.821289, 14.817371 ], [ -12.172852, 14.604847 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.589844, 16.594081 ], [ -15.117188, 16.594081 ], [ -15.644531, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.130262 ], [ -16.567383, 16.678293 ], [ -16.259766, 17.182779 ], [ -16.127930, 18.104087 ], [ -16.391602, 19.601194 ], [ -16.259766, 20.097206 ], [ -16.523438, 20.550509 ], [ -17.050781, 21.002471 ], [ -16.831055, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.139648, 22.755921 ], [ -12.875977, 23.281719 ], [ -11.953125, 23.362429 ], [ -11.953125, 25.918526 ], [ -8.701172, 25.878994 ], [ -8.701172, 27.410786 ] ] ] } } +{ "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": [ [ [ -13.710938, 12.597455 ], [ -13.227539, 12.554564 ], [ -12.480469, 12.340002 ], [ -12.260742, 12.340002 ], [ -12.216797, 12.468760 ], [ -11.645508, 12.382928 ], [ -11.513672, 12.425848 ], [ -11.469727, 12.082296 ], [ -11.293945, 12.082296 ], [ -11.030273, 12.211180 ], [ -10.854492, 12.168226 ], [ -10.590820, 11.910354 ], [ -10.151367, 11.824341 ], [ -9.887695, 12.039321 ], [ -9.316406, 12.340002 ], [ -9.140625, 12.297068 ], [ -8.920898, 12.082296 ], [ -8.789062, 11.824341 ], [ -8.393555, 11.393879 ], [ -8.569336, 11.135287 ], [ -8.613281, 10.790141 ], [ -8.393555, 10.919618 ], [ -8.261719, 10.790141 ], [ -8.349609, 10.487812 ], [ -8.041992, 10.185187 ], [ -8.217773, 10.141932 ], [ -8.305664, 9.795678 ], [ -8.085938, 9.362353 ], [ -7.822266, 8.581021 ], [ -8.217773, 8.450639 ], [ -8.305664, 8.320212 ], [ -8.217773, 8.102739 ], [ -8.261719, 7.667441 ], [ -8.701172, 7.710992 ], [ -8.920898, 7.318882 ], [ -9.228516, 7.318882 ], [ -9.404297, 7.536764 ], [ -9.316406, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.407168 ], [ -10.502930, 8.363693 ], [ -10.502930, 8.711359 ], [ -10.634766, 8.971897 ], [ -10.634766, 9.275622 ], [ -11.118164, 10.055403 ], [ -11.909180, 10.055403 ], [ -12.128906, 9.838979 ], [ -12.436523, 9.838979 ], [ -12.700195, 9.362353 ], [ -13.227539, 8.885072 ], [ -13.666992, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.677734, 10.660608 ], [ -14.853516, 10.876465 ], [ -15.117188, 11.049038 ], [ -14.677734, 11.523088 ], [ -14.370117, 11.523088 ], [ -14.106445, 11.695273 ], [ -13.886719, 11.695273 ], [ -13.754883, 11.824341 ], [ -13.842773, 12.125264 ], [ -13.710938, 12.254128 ], [ -13.710938, 12.597455 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.999023, 9.882275 ], [ -4.350586, 9.622414 ], [ -4.790039, 9.838979 ], [ -4.965820, 10.141932 ], [ -5.405273, 10.358151 ], [ -5.449219, 10.962764 ], [ -5.185547, 11.393879 ], [ -5.229492, 11.695273 ], [ -4.438477, 12.554564 ], [ -4.262695, 13.239945 ], [ -3.999023, 13.453737 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.634766, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.363693 ], [ -10.239258, 8.407168 ], [ -11.162109, 7.406048 ], [ -11.206055, 7.100893 ], [ -11.425781, 6.795535 ], [ -11.689453, 6.839170 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.798079 ], [ -13.139648, 8.146243 ], [ -13.227539, 8.885072 ], [ -12.700195, 9.362353 ], [ -12.436523, 9.838979 ], [ -12.128906, 9.838979 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.271618 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } +{ "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.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.178711, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.288086, -3.425692 ], [ -80.288086, -3.513421 ], [ -80.419922, -3.513421 ], [ -80.288086, -3.425692 ] ] ], [ [ [ -78.178711, -3.513421 ], [ -77.827148, -2.986927 ], [ -76.640625, -2.591889 ], [ -75.541992, -1.581830 ], [ -75.234375, -0.922812 ], [ -75.366211, -0.131836 ], [ -75.102539, -0.043945 ], [ -74.443359, -0.527336 ], [ -74.135742, -1.010690 ], [ -73.652344, -1.274309 ], [ -73.081055, -2.328460 ], [ -72.333984, -2.416276 ], [ -71.762695, -2.152814 ], [ -71.411133, -2.328460 ], [ -70.795898, -2.240640 ], [ -70.048828, -2.723583 ], [ -70.532227, -3.513421 ], [ -78.178711, -3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.316881 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.184570, 3.206333 ], [ -54.008789, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.429518 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.683970 ], [ 2.065430, 20.138470 ], [ 1.801758, 20.591652 ], [ 0.000000, 21.779905 ], [ -8.701172, 27.410786 ], [ -8.657227, 28.844674 ], [ -7.075195, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.229492, 29.993002 ], [ -4.877930, 30.486551 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.249974 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.713867, 33.906896 ], [ -1.801758, 34.524661 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.515625, 36.809285 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.538376 ], [ 3.515625, 11.738302 ], [ 2.856445, 12.254128 ], [ 2.504883, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.010742, 12.854649 ], [ 1.010742, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.307617, 14.434680 ], [ 0.395508, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.406250, 15.326572 ], [ 2.768555, 15.411319 ], [ 3.515625, 15.538376 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.838979 ], [ 1.450195, 9.318990 ], [ 1.669922, 9.145486 ], [ 1.625977, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.571289, 6.926427 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 9.449062 ], [ 0.351562, 10.185187 ], [ 0.000000, 10.660608 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.043945, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } , { "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": [ [ [ [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ] ] ], [ [ [ -180.000000, 71.510978 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -180.000000, 71.510978 ] ] ] ] } } ] } @@ -131,31 +125,33 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.908203, 2.547988 ], [ 15.864258, 3.030812 ], [ 15.424805, 3.337954 ], [ 15.292969, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.457031, 3.513421 ], [ 18.413086, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.834931 ], [ 17.841797, 0.307616 ], [ 17.709961, 0.000000 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 15.952148, -2.723583 ], [ 15.996094, -3.513421 ], [ 15.732422, -3.864255 ], [ 15.161133, -4.346411 ], [ 14.589844, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.150391, -4.521666 ], [ 13.579102, -4.521666 ], [ 13.271484, -4.872048 ], [ 13.007812, -4.784469 ], [ 12.612305, -4.434044 ], [ 12.304688, -4.609278 ], [ 11.909180, -5.047171 ], [ 11.074219, -3.995781 ], [ 11.865234, -3.425692 ], [ 11.469727, -2.767478 ], [ 11.821289, -2.504085 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.416276 ], [ 13.974609, -2.460181 ], [ 14.282227, -1.977147 ], [ 14.414062, -1.318243 ], [ 14.326172, -0.571280 ], [ 13.886719, 0.000000 ], [ 14.282227, 1.186439 ], [ 14.018555, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.007812, 1.845384 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.952148, 1.713612 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.457031, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.528320, 3.513421 ], [ 47.153320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } +{ "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": [ [ [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.571280 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ] ] ] } } , { "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.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.355469, -4.521666 ], [ 29.531250, -5.441022 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.533645 ], [ 30.190430, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.366211, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.432617, -9.145486 ], [ 28.652344, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.340002 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.168945, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.785156, -11.221510 ], [ 24.301758, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.851562, -11.005904 ], [ 22.412109, -11.005904 ], [ 22.148438, -11.092166 ], [ 22.192383, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.928711, -8.320212 ], [ 21.752930, -7.928675 ], [ 21.708984, -7.275292 ], [ 20.522461, -7.318882 ], [ 20.610352, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.144499 ], [ 19.028320, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.149414, -7.972198 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.612305, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.271484, -4.872048 ], [ 13.579102, -4.521666 ], [ 14.150391, -4.521666 ], [ 14.194336, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.732422, -3.864255 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.457031, 3.513421 ], [ 30.849609, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.497070, 3.513421 ], [ 34.584961, 3.074695 ], [ 35.024414, 1.889306 ], [ 34.672852, 1.186439 ], [ 33.881836, 0.087891 ], [ 33.881836, -0.966751 ], [ 30.761719, -1.010690 ], [ 29.838867, -1.450040 ], [ 29.575195, -1.362176 ], [ 29.575195, -0.571280 ], [ 29.838867, -0.219726 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.615223 ], [ 30.102539, 1.054628 ], [ 30.454102, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.157227, 2.196727 ], [ 30.761719, 2.328460 ], [ 30.849609, 3.513421 ], [ 34.497070, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.713612 ], [ 30.761719, -2.284551 ], [ 30.454102, -2.416276 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.881836, -0.966751 ], [ 37.705078, -3.118576 ], [ 37.749023, -3.688855 ], [ 39.199219, -4.696879 ], [ 38.759766, -5.922045 ], [ 38.803711, -6.489983 ], [ 39.418945, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.199219, -8.494105 ], [ 39.550781, -9.102097 ], [ 39.946289, -10.098670 ], [ 40.297852, -10.314919 ], [ 39.506836, -10.876465 ], [ 38.408203, -11.264612 ], [ 37.836914, -11.264612 ], [ 37.485352, -11.566144 ], [ 36.782227, -11.609193 ], [ 36.518555, -11.738302 ], [ 35.332031, -11.436955 ], [ 34.541016, -11.523088 ], [ 34.277344, -10.141932 ], [ 33.750000, -9.405710 ], [ 32.739258, -9.232249 ], [ 32.211914, -8.928487 ], [ 31.157227, -8.581021 ], [ 30.761719, -8.320212 ], [ 30.190430, -7.100893 ], [ 29.619141, -6.533645 ], [ 29.399414, -5.922045 ], [ 29.531250, -5.441022 ], [ 29.355469, -4.521666 ], [ 29.750977, -4.434044 ], [ 30.761719, -3.337954 ], [ 30.761719, -3.030812 ], [ 30.541992, -2.811371 ], [ 30.454102, -2.416276 ], [ 30.761719, -2.284551 ], [ 30.805664, -1.713612 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 33.881836, -0.966751 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.926758, -2.328460 ], [ 30.454102, -2.416276 ], [ 30.541992, -2.811371 ], [ 30.761719, -3.030812 ], [ 30.761719, -3.337954 ], [ 29.750977, -4.434044 ], [ 29.355469, -4.521666 ], [ 29.267578, -3.294082 ], [ 29.003906, -2.855263 ], [ 29.619141, -2.899153 ], [ 29.926758, -2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.644022 ], [ 25.268555, -17.727759 ], [ 25.664062, -18.521283 ], [ 25.839844, -18.729502 ], [ 26.147461, -19.311143 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.509355 ], [ 27.729492, -20.838278 ], [ 28.037109, -21.493964 ], [ 28.784180, -21.657428 ], [ 29.443359, -22.105999 ], [ 28.037109, -22.836946 ], [ 27.114258, -23.563987 ], [ 26.806641, -24.246965 ], [ 26.499023, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.004883, -25.720735 ], [ 24.213867, -25.681137 ], [ 23.730469, -25.403585 ], [ 23.291016, -25.284438 ], [ 22.807617, -25.482951 ], [ 22.587891, -25.997550 ], [ 22.104492, -26.273714 ], [ 21.621094, -26.745610 ], [ 20.874023, -26.824071 ], [ 20.654297, -26.470573 ], [ 20.742188, -25.878994 ], [ 20.170898, -24.926295 ], [ 19.907227, -24.766785 ], [ 19.907227, -21.861499 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.271086 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.853290 ], [ 23.598633, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.644022 ] ] ] } } +{ "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": [ [ [ 30.278320, -15.496032 ], [ 30.322266, -15.876809 ], [ 31.157227, -15.876809 ], [ 31.640625, -16.088042 ], [ 31.860352, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.827148, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.651367, -18.687879 ], [ 32.607422, -19.435514 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.443359, -22.105999 ], [ 28.784180, -21.657428 ], [ 28.037109, -21.493964 ], [ 27.729492, -20.838278 ], [ 27.729492, -20.509355 ], [ 27.290039, -20.385825 ], [ 26.147461, -19.311143 ], [ 25.839844, -18.729502 ], [ 25.664062, -18.521283 ], [ 25.268555, -17.727759 ], [ 26.367188, -17.853290 ], [ 26.718750, -17.978733 ], [ 27.026367, -17.936929 ], [ 27.597656, -17.308688 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.959961, -16.045813 ], [ 29.531250, -15.665354 ], [ 30.278320, -15.496032 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.528320, 3.513421 ], [ 41.000977, 2.767478 ], [ 41.000977, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 37.749023, -3.688855 ], [ 37.705078, -3.118576 ], [ 33.881836, -0.966751 ], [ 33.881836, 0.087891 ], [ 34.672852, 1.186439 ], [ 35.024414, 1.889306 ], [ 34.584961, 3.074695 ], [ 34.497070, 3.513421 ], [ 38.847656, 3.513421 ], [ 39.550781, 3.425692 ], [ 39.638672, 3.513421 ], [ 41.528320, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, -9.232249 ], [ 33.750000, -9.405710 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.288086, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.088042 ], [ 35.024414, -16.804541 ], [ 34.365234, -16.172473 ], [ 34.321289, -15.496032 ], [ 34.497070, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.793945, -14.434680 ], [ 33.222656, -13.966054 ], [ 32.695312, -13.710035 ], [ 33.002930, -12.768946 ], [ 33.310547, -12.425848 ], [ 33.134766, -11.609193 ], [ 33.310547, -10.790141 ], [ 33.486328, -10.531020 ], [ 33.222656, -9.665738 ], [ 32.739258, -9.232249 ] ] ] } } +{ "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.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.823242, -13.068777 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.520508, -28.652031 ], [ 29.311523, -29.267233 ], [ 28.828125, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.125000, -30.562261 ], [ 27.729492, -30.637912 ], [ 26.982422, -29.878755 ], [ 27.553711, -29.228890 ], [ 28.081055, -28.844674 ], [ 28.520508, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.641526 ], [ 31.816406, -25.839449 ], [ 32.080078, -26.745610 ], [ 31.860352, -27.176469 ], [ 31.289062, -27.293689 ], [ 30.673828, -26.745610 ], [ 30.673828, -26.391870 ], [ 30.937500, -26.037042 ], [ 31.025391, -25.720735 ], [ 31.333008, -25.641526 ] ] ] } } , { "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": [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ] } } , -{ "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.755859, -40.713956 ], [ 145.415039, -40.780541 ], [ 146.381836, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.271484, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.391009 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.178402 ], [ 142.866211, -11.781325 ], [ 143.129883, -11.910354 ], [ 143.173828, -12.340002 ], [ 143.525391, -12.854649 ], [ 143.613281, -13.410994 ], [ 143.569336, -13.752725 ], [ 143.920898, -14.562318 ], [ 144.580078, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.411319 ], [ 145.502930, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.732422, -22.390714 ], [ 150.908203, -23.443089 ], [ 152.094727, -24.447150 ], [ 152.841797, -25.284438 ], [ 153.149414, -26.076521 ], [ 153.149414, -26.627818 ], [ 153.105469, -27.254630 ], [ 153.588867, -28.110749 ], [ 153.500977, -28.998532 ], [ 153.061523, -30.334954 ], [ 153.105469, -30.939924 ], [ 152.885742, -31.653381 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.347656, -33.833920 ], [ 150.996094, -34.307144 ], [ 150.732422, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.125286 ], [ 149.985352, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.315430, -37.822802 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.502930, -38.582526 ], [ 144.887695, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.492188, -38.099983 ], [ 143.613281, -38.822591 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.030786 ], [ 140.009766, -37.405074 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.746512 ], [ 138.120117, -35.603719 ], [ 138.427734, -35.137879 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.065973 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 136.977539, -33.760882 ], [ 136.362305, -34.089061 ], [ 136.010742, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.252930, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.989442 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.287133 ], [ 126.166992, -32.212801 ], [ 125.068359, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.662109, -33.906896 ], [ 122.827148, -33.906896 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.833920 ], [ 119.882812, -33.979809 ], [ 119.311523, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.065973 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.004883, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.532227, -33.504759 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.916485 ], [ 115.795898, -32.212801 ], [ 115.708008, -31.615966 ], [ 115.180664, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.497661 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.422852, -25.601902 ], [ 113.950195, -25.918526 ], [ 114.213867, -26.313113 ], [ 114.213867, -25.799891 ], [ 113.730469, -25.005973 ], [ 113.642578, -24.686952 ], [ 113.378906, -24.367114 ], [ 113.510742, -23.805450 ], [ 113.686523, -23.563987 ], [ 113.862305, -23.079732 ], [ 113.730469, -22.471955 ], [ 114.169922, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.084500 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.756114 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.262197 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.420898, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.255859, -18.187607 ], [ 122.299805, -17.266728 ], [ 123.002930, -16.425548 ], [ 123.442383, -17.266728 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.341226 ], [ 124.365234, -15.580711 ], [ 124.936523, -15.072124 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.638672, -14.987240 ], [ 129.418945, -14.434680 ], [ 129.902344, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.166016, -13.111580 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.168226 ], [ 131.748047, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.393879 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.692383, -11.953349 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.274414, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.897489 ], [ 136.318359, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.098633, -13.710035 ], [ 135.439453, -14.732386 ], [ 135.483398, -14.987240 ], [ 136.274414, -15.538376 ], [ 137.065430, -15.876809 ], [ 138.295898, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.086914, -17.056785 ], [ 139.262695, -17.350638 ], [ 140.229492, -17.727759 ], [ 140.888672, -17.350638 ], [ 141.284180, -16.383391 ], [ 141.416016, -15.834536 ], [ 141.723633, -15.029686 ], [ 141.547852, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.503906, -13.710035 ], [ 141.635742, -12.940322 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.425848 ], [ 142.119141, -11.307708 ], [ 142.163086, -11.049038 ], [ 142.514648, -10.660608 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.377930, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.579084 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.102739 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.484768 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "name_sort": "New Caledonia", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.772461, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ] ] ] ] } } ] } ] } , @@ -165,37 +161,39 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.096623 ], [ 15.512695, 50.792047 ], [ 16.259766, 50.708634 ], [ 16.171875, 50.429518 ], [ 16.699219, 50.205033 ], [ 16.875000, 50.485474 ], [ 17.534180, 50.373496 ], [ 17.666016, 50.035974 ], [ 18.413086, 49.979488 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.413086, 49.325122 ], [ 18.149414, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.009051 ], [ 17.885742, 48.893615 ], [ 17.534180, 48.806863 ], [ 17.094727, 48.806863 ], [ 16.962891, 48.603858 ], [ 16.479492, 48.777913 ], [ 16.040039, 48.719961 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.951366 ], [ 14.326172, 48.545705 ], [ 13.579102, 48.864715 ], [ 13.051758, 49.296472 ], [ 12.524414, 49.553726 ], [ 12.436523, 49.979488 ], [ 12.260742, 50.261254 ], [ 12.963867, 50.485474 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.930738 ], [ 14.326172, 51.124213 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.040039, 48.719961 ], [ 16.479492, 48.777913 ], [ 16.962891, 48.603858 ], [ 16.875000, 48.458352 ], [ 16.962891, 48.136767 ], [ 16.918945, 47.724545 ], [ 16.347656, 47.724545 ], [ 16.523438, 47.487513 ], [ 16.215820, 46.860191 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.649436 ], [ 14.633789, 46.437857 ], [ 13.798828, 46.498392 ], [ 12.392578, 46.769968 ], [ 12.172852, 47.129951 ], [ 11.162109, 46.950262 ], [ 11.030273, 46.739861 ], [ 10.458984, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.624023, 47.338823 ], [ 9.580078, 47.517201 ], [ 9.887695, 47.576526 ], [ 10.415039, 47.309034 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.612305, 47.665387 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.875977, 48.283193 ], [ 13.227539, 48.429201 ], [ 13.579102, 48.864715 ], [ 14.326172, 48.545705 ], [ 14.897461, 48.951366 ], [ 15.249023, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.819336, 42.488302 ], [ 20.083008, 42.585444 ], [ 20.302734, 42.326062 ], [ 20.522461, 42.228517 ], [ 20.610352, 41.869561 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.005859, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.610352, 40.111689 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.291992, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.204102, 43.516689 ], [ 19.643555, 43.229195 ], [ 19.951172, 43.100983 ], [ 20.346680, 42.908160 ], [ 20.083008, 42.585444 ], [ 19.819336, 42.488302 ], [ 19.731445, 42.682435 ], [ 19.291992, 42.195969 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 18.457031, 42.488302 ], [ 18.544922, 42.650122 ], [ 18.720703, 43.197167 ], [ 19.204102, 43.516689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.801281 ], [ 30.893555, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.800685 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.695312, 53.357109 ], [ 32.299805, 53.120405 ], [ 31.508789, 53.173119 ], [ 31.289062, 53.067627 ], [ 31.552734, 52.749594 ], [ 31.772461, 52.106505 ], [ 30.937500, 52.052490 ], [ 30.629883, 51.835778 ], [ 30.541992, 51.316881 ], [ 30.146484, 51.426614 ], [ 29.267578, 51.371780 ], [ 29.003906, 51.590723 ], [ 28.608398, 51.426614 ], [ 28.256836, 51.563412 ], [ 27.465820, 51.590723 ], [ 26.323242, 51.835778 ], [ 25.312500, 51.917168 ], [ 24.565430, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.510742, 51.590723 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.482780 ], [ 23.818359, 52.696361 ], [ 23.818359, 53.094024 ], [ 23.510742, 53.461890 ], [ 23.466797, 53.904338 ], [ 24.433594, 53.904338 ], [ 25.532227, 54.290882 ], [ 25.751953, 54.851315 ], [ 26.586914, 55.178868 ], [ 26.499023, 55.603178 ], [ 27.114258, 55.776573 ], [ 28.168945, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.873047, 56.365250 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.603178 ], [ 26.586914, 55.178868 ], [ 25.751953, 54.851315 ], [ 25.532227, 54.290882 ], [ 24.433594, 53.904338 ], [ 23.466797, 53.904338 ], [ 23.247070, 54.213861 ], [ 22.719727, 54.316523 ], [ 22.631836, 54.572062 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.002826 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 22.192383, 56.340901 ], [ 23.862305, 56.267761 ], [ 24.873047, 56.365250 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.101934 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.586914, 41.574361 ], [ 26.279297, 40.946714 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.977120 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 20.610352, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.665039, 40.946714 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.145570 ], [ 22.763672, 41.310824 ], [ 22.939453, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.477539, 41.574361 ], [ 25.180664, 41.244772 ], [ 26.103516, 41.343825 ], [ 26.103516, 41.836828 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.458352 ], [ 28.256836, 48.166085 ], [ 28.652344, 48.107431 ], [ 29.135742, 47.842658 ], [ 29.047852, 47.517201 ], [ 29.399414, 47.338823 ], [ 29.575195, 46.920255 ], [ 29.926758, 46.679594 ], [ 29.838867, 46.528635 ], [ 30.014648, 46.437857 ], [ 29.750977, 46.346928 ], [ 29.179688, 46.377254 ], [ 29.091797, 46.528635 ], [ 28.872070, 46.437857 ], [ 28.916016, 46.255847 ], [ 28.652344, 45.951150 ], [ 28.476562, 45.583290 ], [ 28.212891, 45.490946 ], [ 28.037109, 45.951150 ], [ 28.168945, 46.377254 ], [ 28.125000, 46.800059 ], [ 26.938477, 48.136767 ], [ 26.630859, 48.224673 ], [ 26.850586, 48.370848 ], [ 27.509766, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.368164, 42.326062 ], [ 22.895508, 42.000325 ], [ 22.939453, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.145570 ], [ 22.060547, 41.145570 ], [ 21.665039, 40.946714 ], [ 21.005859, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.478516, 41.508577 ], [ 20.610352, 41.869561 ], [ 20.698242, 41.836828 ], [ 20.742188, 42.065607 ], [ 21.357422, 42.195969 ], [ 21.928711, 42.293564 ], [ 22.368164, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.016602, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.369141, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.435547, 7.754537 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 10.012130 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.880746 ], [ 6.459961, 13.496473 ], [ 6.811523, 13.111580 ], [ 7.338867, 13.111580 ], [ 7.822266, 13.325485 ], [ 9.008789, 12.811801 ], [ 9.536133, 12.854649 ], [ 10.107422, 13.282719 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.368243 ], [ 11.513672, 13.325485 ], [ 12.304688, 13.025966 ], [ 13.095703, 13.581921 ], [ 13.315430, 13.539201 ], [ 13.974609, 12.468760 ], [ 14.194336, 12.468760 ], [ 14.589844, 12.082296 ], [ 14.458008, 11.910354 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.790141 ], [ 13.183594, 9.622414 ], [ 12.963867, 9.405710 ], [ 12.744141, 8.711359 ], [ 12.216797, 8.320212 ], [ 12.084961, 7.798079 ], [ 11.821289, 7.406048 ], [ 11.733398, 6.970049 ], [ 11.074219, 6.664608 ], [ 10.502930, 7.057282 ], [ 10.107422, 7.057282 ], [ 9.536133, 6.446318 ], [ 9.228516, 6.446318 ], [ 8.745117, 5.484768 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.145486 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.559570, 11.307708 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.940322 ], [ 4.086914, 13.539201 ], [ 4.350586, 13.752725 ], [ 5.449219, 13.880746 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 33.969727, 35.065973 ], [ 33.881836, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.398438, 35.173808 ], [ 33.178711, 35.173808 ], [ 32.915039, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.200195, 32.546813 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.765537 ], [ 35.375977, 31.503629 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.244141, 31.765537 ], [ 34.980469, 31.877558 ], [ 35.200195, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.956055, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.547200 ], [ 45.878906, 40.212441 ], [ 45.615234, 39.909736 ], [ 46.054688, 39.639538 ], [ 46.494141, 39.470125 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.747070, 39.334297 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.780273, 39.707187 ], [ 44.384766, 40.010787 ], [ 43.637695, 40.245992 ], [ 43.769531, 40.747257 ], [ 43.593750, 41.079351 ], [ 44.956055, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 42.758789, 12.468760 ], [ 42.363281, 12.554564 ], [ 42.011719, 12.854649 ], [ 41.616211, 13.453737 ], [ 41.176758, 13.752725 ], [ 40.913086, 14.136576 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.496094, 14.519780 ], [ 37.924805, 14.944785 ], [ 37.573242, 14.221789 ], [ 36.430664, 14.434680 ], [ 36.342773, 14.817371 ], [ 36.738281, 16.299051 ], [ 36.870117, 16.972741 ], [ 37.177734, 17.266728 ], [ 37.924805, 17.434511 ], [ 38.408203, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.222656, 12.168226 ], [ 33.090820, 11.436955 ], [ 33.222656, 10.703792 ], [ 33.706055, 10.314919 ], [ 33.837891, 9.968851 ], [ 33.837891, 9.492408 ], [ 33.969727, 9.449062 ], [ 33.969727, 8.667918 ], [ 33.837891, 8.363693 ], [ 33.310547, 8.363693 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.057617, 7.231699 ], [ 34.233398, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.288086, 5.484768 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.860352, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.179688, 4.390229 ], [ 28.696289, 4.434044 ], [ 28.432617, 4.302591 ], [ 27.993164, 4.390229 ], [ 27.202148, 5.572250 ], [ 26.455078, 5.965754 ], [ 26.235352, 6.533645 ], [ 25.795898, 6.970049 ], [ 25.136719, 7.493196 ], [ 25.136719, 7.841615 ], [ 23.906250, 8.624472 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.795678 ], [ 25.048828, 10.271681 ], [ 25.795898, 10.401378 ], [ 26.499023, 9.535749 ], [ 26.762695, 9.449062 ], [ 27.114258, 9.622414 ], [ 27.817383, 9.622414 ], [ 27.949219, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.098670 ], [ 30.014648, 10.271681 ], [ 30.849609, 9.709057 ], [ 31.333008, 9.795678 ], [ 31.860352, 10.531020 ], [ 32.387695, 11.092166 ], [ 32.299805, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.739258, 12.254128 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 75.981445, 42.972502 ], [ 77.651367, 42.972502 ], [ 79.145508, 42.843751 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 71.806641, 39.266284 ], [ 70.532227, 39.605688 ], [ 69.477539, 39.537940 ], [ 69.565430, 40.111689 ], [ 70.664062, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.762695, 40.145289 ], [ 73.037109, 40.880295 ], [ 71.850586, 41.376809 ], [ 71.147461, 41.145570 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.714732 ], [ 71.850586, 42.843751 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.100983 ], [ 74.223633, 43.293200 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.647017 ], [ 51.108398, 24.567108 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.926013 ], [ 55.546875, 23.523700 ], [ 55.239258, 23.120154 ], [ 55.195312, 22.715390 ], [ 55.019531, 22.512557 ], [ 51.987305, 22.998852 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.553147 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.453069 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 51.987305, 19.020577 ], [ 55.019531, 20.014645 ], [ 55.678711, 21.983801 ], [ 55.195312, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.546875, 23.523700 ], [ 55.546875, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.381836, 24.926295 ] ] ], [ [ [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.381836, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.898438, 51.508742 ], [ 102.084961, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.289339 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.261254 ], [ 107.885742, 49.781264 ], [ 108.457031, 49.296472 ], [ 109.423828, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.323242, 47.842658 ], [ 117.290039, 47.694974 ], [ 118.081055, 48.078079 ], [ 118.872070, 47.754098 ], [ 119.750977, 47.040182 ], [ 119.663086, 46.679594 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 115.971680, 45.736860 ], [ 114.477539, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.840820, 43.739352 ], [ 111.137695, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.985352, 41.607228 ], [ 104.501953, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.821289, 42.520700 ], [ 100.854492, 42.650122 ], [ 99.536133, 42.520700 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.714732 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.702148, 44.339565 ], [ 93.471680, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.571289, 45.706179 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.078079 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.703125, 50.345460 ], [ 92.241211, 50.792047 ], [ 93.120117, 50.485474 ], [ 94.130859, 50.485474 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } +{ "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": [ [ [ 77.827148, 35.496456 ], [ 78.925781, 34.307144 ], [ 78.793945, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.442383, 32.620870 ], [ 78.750000, 31.503629 ], [ 79.716797, 30.864510 ], [ 81.123047, 30.183122 ], [ 80.463867, 29.726222 ], [ 80.068359, 28.806174 ], [ 81.079102, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.320312, 27.371767 ], [ 84.682617, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.022461, 27.449790 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.071980 ], [ 88.857422, 27.098254 ], [ 89.736328, 26.706360 ], [ 90.351562, 26.863281 ], [ 91.230469, 26.824071 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.713867, 27.761330 ], [ 92.504883, 27.877928 ], [ 93.427734, 28.652031 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.338867, 28.265682 ], [ 97.382812, 27.877928 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.254630 ], [ 95.141602, 26.588527 ], [ 95.141602, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.086914, 23.845650 ], [ 93.339844, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.076172, 22.715390 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.024546 ], [ 92.153320, 23.644524 ], [ 91.889648, 23.604262 ], [ 91.713867, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.450195, 24.086589 ], [ 91.933594, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.165173 ], [ 90.878906, 25.125393 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.958045 ], [ 89.340820, 25.997550 ], [ 88.549805, 26.431228 ], [ 88.198242, 25.760320 ], [ 88.945312, 25.244696 ], [ 88.286133, 24.846565 ], [ 88.066406, 24.487149 ], [ 88.681641, 24.246965 ], [ 88.549805, 23.644524 ], [ 88.857422, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.011719, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.919074 ], [ 80.024414, 15.156974 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.228177 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 68.862305, 24.367114 ], [ 71.059570, 24.367114 ], [ 70.839844, 25.204941 ], [ 70.268555, 25.720735 ], [ 70.180664, 26.509905 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.762695, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.432617, 29.993002 ], [ 74.399414, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.278320, 32.287133 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.223633, 34.741612 ], [ 75.761719, 34.488448 ], [ 76.860352, 34.669359 ], [ 77.827148, 35.496456 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.183594, 20.756114 ], [ 104.414062, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.073242, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.221789 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.392578, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 126.254883, 37.857507 ], [ 126.694336, 37.788081 ], [ 127.089844, 38.272689 ], [ 128.188477, 38.376115 ], [ 128.364258, 38.616870 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.713612 ], [ 30.761719, -2.284551 ], [ 30.454102, -2.416276 ], [ 29.926758, -2.328460 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } +{ "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": [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.003906, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.267578, -3.513421 ], [ 15.996094, -3.513421 ], [ 15.952148, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.834931 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.389648, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ] } } +, +{ "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": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } ] } ] } , @@ -217,12 +215,12 @@ { "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.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.071777, 20.653346 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.186973 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.137207, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.839076 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.030762, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.859863, 39.774769 ], [ -124.387207, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.990234, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.505175 ], [ -139.877930, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.676938 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.792848 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.970703, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.740674 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.322549 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.217991 ], [ -166.464844, 60.381290 ] ] ] ] } } , +{ "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.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } +, { "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": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.434680 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.136576 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } , -{ "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.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.857422, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.707663 ], [ -88.242188, 13.923404 ], [ -88.505859, 13.838080 ], [ -88.549805, 13.987376 ], [ -88.835449, 14.136576 ], [ -89.055176, 14.349548 ], [ -89.362793, 14.434680 ], [ -89.143066, 14.668626 ], [ -89.230957, 14.881087 ], [ -89.165039, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.707663 ] ] ] } } @@ -257,8 +255,6 @@ , { "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": [ [ [ -50.031738, 1.757537 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.406738, -2.130856 ], [ -44.582520, -2.701635 ], [ -43.417969, -2.372369 ], [ -41.462402, -2.921097 ], [ -39.968262, -2.877208 ], [ -38.496094, -3.710782 ], [ -37.221680, -4.828260 ], [ -36.452637, -5.112830 ], [ -35.595703, -5.156599 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.045898, -11.049038 ], [ -37.683105, -12.168226 ], [ -38.430176, -13.047372 ], [ -38.671875, -13.047372 ], [ -38.957520, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.265137, -17.874203 ], [ -39.572754, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.899871 ], [ -40.935059, -21.943046 ], [ -41.748047, -22.370396 ], [ -41.989746, -22.978624 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.351562, -23.805450 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.669434, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.690918, -30.977609 ], [ -51.569824, -31.784217 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.503629 ], [ -55.590820, -30.845647 ], [ -55.964355, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.634277, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.393066, -23.966176 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.788574, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.887207, -22.289096 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.941895, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.381348, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.534668, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.270996, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.721191, -13.496473 ], [ -62.116699, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.618897 ], [ -64.313965, -12.468760 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.434570, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.643066, -9.925566 ], [ -67.170410, -10.314919 ], [ -68.049316, -10.703792 ], [ -68.269043, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.521484, -10.941192 ], [ -70.092773, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.553711, -9.514079 ], [ -73.234863, -9.470736 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.514981 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.971191, -5.747174 ], [ -72.883301, -5.266008 ], [ -71.740723, -4.587376 ], [ -70.927734, -4.412137 ], [ -70.795898, -4.258768 ], [ -69.895020, -4.302591 ], [ -69.433594, -1.559866 ], [ -69.411621, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.335449, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.568359, 1.757537 ], [ -50.031738, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } -, { "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.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -76.640625, -2.613839 ], [ -77.827148, -3.008870 ], [ -78.442383, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.959615 ], [ -79.628906, -4.455951 ], [ -80.024414, -4.346411 ], [ -80.441895, -4.434044 ], [ -80.463867, -4.061536 ], [ -80.178223, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.760742, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.807617, 1.757537 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.433594, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.686035, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.262595 ], [ -71.411133, -2.350415 ], [ -71.784668, -2.174771 ], [ -72.333984, -2.438229 ], [ -73.081055, -2.306506 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.662109, 1.757537 ], [ -67.807617, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } @@ -267,15 +263,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.412598, -11.566144 ], [ -64.313965, -12.468760 ], [ -63.193359, -12.618897 ], [ -62.797852, -13.004558 ], [ -62.116699, -13.197165 ], [ -61.721191, -13.496473 ], [ -61.083984, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.534668, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.381348, -16.867634 ], [ -58.271484, -17.266728 ], [ -57.744141, -17.560247 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.941895, -19.394068 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.106445, -19.352611 ], [ -60.051270, -19.352611 ], [ -61.787109, -19.642588 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.044913 ], [ -63.984375, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.085640 ], [ -66.269531, -21.841105 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.225098, -21.493964 ], [ -68.752441, -20.365228 ], [ -68.444824, -19.414792 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.587402, -17.581194 ], [ -68.950195, -16.509833 ], [ -69.389648, -15.665354 ], [ -69.169922, -15.326572 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.455958 ], [ -68.884277, -12.897489 ], [ -68.664551, -12.554564 ], [ -69.521484, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.269043, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.170410, -10.314919 ], [ -66.643066, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } , -{ "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.247070, -53.094024 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.973145, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.359375, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.370605, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.302246, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.373496 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.650793 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.266250 ], [ -70.070801, -33.082337 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.175159 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.994629, -22.978624 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.107118 ], [ -55.964355, -30.883369 ], [ -55.590820, -30.845647 ], [ -54.580078, -31.503629 ], [ -53.789062, -32.045333 ], [ -53.217773, -32.731841 ], [ -53.657227, -33.211116 ], [ -53.371582, -33.760882 ], [ -53.811035, -34.397845 ], [ -54.931641, -34.957995 ], [ -55.678711, -34.759666 ], [ -56.206055, -34.867905 ], [ -57.128906, -34.434098 ], [ -57.810059, -34.470335 ], [ -58.425293, -33.906896 ], [ -58.359375, -33.266250 ], [ -58.139648, -33.045508 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.634277, -30.221102 ], [ -56.975098, -30.107118 ] ] ] } } , +{ "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.247070, -53.094024 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.973145, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.359375, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.370605, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.302246, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.373496 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.650793 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.266250 ], [ -70.070801, -33.082337 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.175159 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.994629, -22.978624 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.106445, -19.352611 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.875977, -20.735566 ], [ -57.941895, -22.085640 ], [ -56.887207, -22.289096 ], [ -56.469727, -22.085640 ], [ -55.788574, -22.350076 ], [ -55.612793, -22.654572 ], [ -55.524902, -23.563987 ], [ -55.393066, -23.966176 ], [ -55.019531, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.567108 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.777832, -26.627818 ], [ -55.700684, -27.391278 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.117813 ], [ -57.634277, -25.601902 ], [ -57.788086, -25.165173 ], [ -58.798828, -24.766785 ], [ -60.029297, -24.026397 ], [ -60.842285, -23.885838 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.043491 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.642588 ], [ -60.051270, -19.352611 ], [ -59.106445, -19.352611 ] ] ] } } , { "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.522906 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.950684, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.842595 ], [ -73.828125, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.103516, -54.072283 ], [ -70.598145, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.414792 ], [ -68.752441, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.175159 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.363027 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.372399 ], [ -70.070801, -33.082337 ], [ -69.807129, -33.266250 ], [ -69.807129, -34.198173 ], [ -70.378418, -35.173808 ], [ -70.356445, -36.013561 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.579413 ], [ -70.817871, -38.548165 ], [ -71.411133, -38.908133 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.740723, -42.049293 ], [ -72.158203, -42.261049 ], [ -71.916504, -43.405047 ], [ -71.455078, -43.786958 ], [ -71.784668, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.213379, -44.777936 ], [ -71.652832, -44.980342 ], [ -71.542969, -45.567910 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.239309 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.325122 ], [ -73.322754, -50.373496 ], [ -72.971191, -50.736455 ], [ -72.312012, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.576660, -52.295042 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.895649 ], [ -71.015625, -53.839564 ], [ -71.433105, -53.852527 ], [ -72.553711, -53.527248 ], [ -73.696289, -52.829321 ], [ -74.948730, -52.268157 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.373496 ], [ -75.607910, -48.676454 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.449468 ], [ -72.707520, -42.391009 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.373112 ], [ -74.333496, -43.229195 ], [ -74.025879, -41.787697 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.498535, -38.289937 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.872559, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.674805, -30.921076 ], [ -71.367188, -30.088108 ], [ -71.499023, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.766704 ], [ -70.378418, -18.354526 ], [ -69.851074, -18.083201 ], [ -69.587402, -17.581194 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.744141, -51.549751 ], [ -58.051758, -51.903613 ], [ -59.392090, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.193848, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -289,29 +287,31 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.221510 ], [ -84.902344, 10.962764 ], [ -84.682617, 11.092166 ], [ -84.353027, 11.005904 ], [ -84.199219, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.551270, 9.557417 ], [ -82.924805, 9.470736 ], [ -82.924805, 9.080400 ], [ -82.727051, 8.928487 ], [ -82.858887, 8.798225 ], [ -82.836914, 8.624472 ], [ -82.968750, 8.233237 ], [ -83.518066, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.605957, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.671387, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.561523, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.630859, 19.165924 ], [ -71.696777, 18.791918 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.312811 ], [ -71.718750, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.041421 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.224609, 19.621892 ], [ -69.960938, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.411133, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.718750, 18.041421 ], [ -71.696777, 18.312811 ], [ -71.938477, 18.625425 ], [ -71.696777, 18.791918 ], [ -71.630859, 19.165924 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.725381 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.765625, 8.363693 ], [ -60.556641, 7.776309 ], [ -60.644531, 7.406048 ], [ -60.292969, 7.035476 ], [ -60.534668, 6.860985 ], [ -61.149902, 6.686431 ], [ -61.149902, 6.227934 ], [ -61.413574, 5.965754 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 4.017699 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.170410, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.302246, 3.316018 ], [ -67.346191, 3.535352 ], [ -67.631836, 3.842332 ], [ -67.829590, 4.499762 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.550381 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.162401 ], [ -68.994141, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.970049 ], [ -70.664062, 7.079088 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.443848, 7.427837 ], [ -72.487793, 7.623887 ], [ -72.355957, 7.993957 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.624472 ], [ -72.795410, 9.080400 ], [ -73.300781, 9.145486 ], [ -73.037109, 9.730714 ], [ -72.905273, 10.444598 ], [ -72.619629, 10.811724 ], [ -72.224121, 11.113727 ], [ -71.982422, 11.609193 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.630859, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.411133, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -57.304688, 5.069058 ], [ -57.919922, 4.806365 ], [ -57.854004, 4.587376 ], [ -58.051758, 4.061536 ], [ -57.612305, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.040527, 1.318243 ], [ -59.655762, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.434044 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.149902, 6.227934 ], [ -61.149902, 6.686431 ], [ -60.534668, 6.860985 ], [ -60.292969, 7.035476 ], [ -60.644531, 7.406048 ], [ -60.556641, 7.776309 ], [ -59.765625, 8.363693 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.107422, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.337954 ], [ -57.612305, 3.337954 ], [ -58.051758, 4.061536 ], [ -57.854004, 4.587376 ], [ -57.919922, 4.806365 ], [ -57.304688, 5.069058 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.842285, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.406431 ], [ -23.950195, 64.895589 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.266856 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.580566, 55.128649 ], [ -7.360840, 54.597528 ], [ -7.580566, 54.059388 ], [ -6.943359, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.911621, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.686041 ], [ -4.987793, 36.332828 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.614746, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.811035, 27.664069 ], [ -8.789062, 27.117813 ], [ -9.404297, 27.098254 ], [ -9.733887, 26.863281 ], [ -10.195312, 26.863281 ], [ -10.546875, 27.000408 ], [ -11.381836, 26.882880 ], [ -11.711426, 26.096255 ], [ -12.041016, 26.037042 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.743652, 21.493964 ], [ -17.028809, 21.412162 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.706063 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "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": [ [ [ -15.556641, 12.618897 ], [ -13.710938, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.392090, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.325684, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.567871, 16.594081 ], [ -14.106445, 16.299051 ], [ -13.425293, 16.045813 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.626109 ], [ -12.128906, 13.987376 ], [ -11.931152, 13.432367 ], [ -11.557617, 13.132979 ], [ -11.469727, 12.747516 ], [ -11.513672, 12.447305 ], [ -11.667480, 12.382928 ], [ -12.194824, 12.468760 ], [ -12.282715, 12.361466 ], [ -12.502441, 12.340002 ], [ -13.227539, 12.576010 ], [ -15.556641, 12.618897 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.554564 ], [ -16.677246, 12.382928 ], [ -16.831055, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.261333 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.517838 ], [ -14.721680, 13.304103 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.496473 ], [ -14.040527, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.677734, 13.624633 ], [ -15.073242, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.127930, 16.446622 ], [ -15.622559, 16.362310 ], [ -15.139160, 16.594081 ], [ -14.567871, 16.594081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.832520, 9.687398 ], [ -10.612793, 9.275622 ], [ -10.656738, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.928675 ], [ -11.140137, 7.406048 ], [ -11.206055, 7.100893 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.496032 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.359863, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.843262, 14.796128 ], [ -12.172852, 14.626109 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.382598 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.505371, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.285645, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.769043, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.401378 ], [ -2.834473, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.600750 ], [ -4.790039, 9.817329 ], [ -4.943848, 10.141932 ], [ -5.405273, 10.379765 ], [ -5.471191, 10.941192 ], [ -5.207520, 11.372339 ], [ -5.229492, 11.716788 ], [ -4.416504, 12.533115 ], [ -4.284668, 13.218556 ], [ -3.999023, 13.475106 ], [ -3.515625, 13.346865 ], [ -3.098145, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.076660, 14.966013 ], [ -0.505371, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.055403 ], [ -10.832520, 9.687398 ], [ -10.612793, 9.275622 ], [ -10.656738, 8.971897 ], [ -10.502930, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.239258, 8.407168 ], [ -10.700684, 7.928675 ], [ -11.140137, 7.406048 ], [ -11.206055, 7.100893 ], [ -11.447754, 6.795535 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.722168, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.436523, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.055403 ], [ -11.118164, 10.055403 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.570801, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } +{ "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.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.793457, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.762695, 12.447305 ], [ -71.389160, 12.382928 ], [ -71.147461, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.811724 ], [ -72.905273, 10.444598 ], [ -73.037109, 9.730714 ], [ -73.300781, 9.145486 ], [ -72.795410, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 7.993957 ], [ -72.487793, 7.623887 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.664062, 7.079088 ], [ -70.092773, 6.970049 ], [ -69.389648, 6.096860 ], [ -68.994141, 6.206090 ], [ -68.269043, 6.162401 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.550381 ], [ -67.741699, 5.222247 ], [ -67.829590, 4.499762 ], [ -67.631836, 3.842332 ], [ -67.346191, 3.535352 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.170410, 2.240640 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -77.761230, 7.710992 ], [ -77.431641, 7.645665 ], [ -77.233887, 7.928675 ], [ -77.475586, 8.515836 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.447305 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -75.739746, -1.757537 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.900842 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.285645, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ] } } ] } @@ -319,10 +319,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } -, { "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": [ [ [ [ -91.757812, 70.058092 ], [ -91.757812, 70.392606 ], [ -91.516113, 70.192550 ], [ -91.757812, 70.058092 ] ] ], [ [ [ -80.354004, 73.757352 ], [ -78.068848, 73.652545 ], [ -76.333008, 73.105800 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.874402 ], [ -79.497070, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.757352 ] ] ], [ [ [ -85.825195, 73.806447 ], [ -86.572266, 73.156808 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.349128 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.559692 ], [ -71.191406, 70.916641 ], [ -68.796387, 70.524897 ], [ -67.917480, 70.125430 ], [ -66.972656, 69.185993 ], [ -68.796387, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.850702 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -62.709961, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.115234, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.641602, 67.280530 ], [ -72.927246, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.552351 ], [ -76.860352, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.277832, 69.771356 ], [ -78.178711, 69.824471 ], [ -78.947754, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.765206 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.475276 ], [ -89.428711, 73.131322 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.806447 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.926273 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.505299 ], [ -67.829590, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.169434, 79.800637 ], [ -73.234863, 79.635922 ], [ -73.872070, 79.428340 ], [ -76.904297, 79.323013 ], [ -75.520020, 79.196075 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.333008, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.019692 ], [ -77.893066, 76.775629 ], [ -80.551758, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.470633 ], [ -89.626465, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.264160, 77.901861 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.330566, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.100098, 79.347411 ], [ -86.506348, 79.738196 ], [ -86.923828, 80.249670 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.463150 ], [ -84.089355, 80.578943 ], [ -87.604980, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.651033 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.419434, 82.858847 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.129495 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.124512, 68.007571 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.441229 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.233887, 67.584098 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -91.757812, 69.626510 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.616534 ], [ -88.308105, 67.875541 ], [ -87.341309, 67.195518 ], [ -86.308594, 67.925140 ], [ -85.583496, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.801724 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.210938, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.600849 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -86.352539, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.626510 ] ] ], [ [ [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.374512, 75.480640 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.408070 ], [ -88.154297, 74.390342 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.604004, 76.780655 ] ] ], [ [ [ -91.757812, 74.013493 ], [ -90.505371, 73.855397 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.013493 ] ] ], [ [ [ -91.757812, 80.987131 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.659613 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.273737 ], [ -91.757812, 80.987131 ] ] ] ] } } , +{ "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.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.082520, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.913920 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.576660, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.554199, 71.434176 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.132898 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.287257 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.652545 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.101283 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.063801 ], [ -69.675293, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.774902, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.440097 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.911621, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +, { "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.126465, 66.407955 ], [ -20.742188, 65.802776 ], [ -24.125977, 65.802776 ], [ -23.642578, 66.266856 ], [ -22.126465, 66.407955 ] ] ], [ [ [ -20.390625, 65.802776 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ], [ -15.842285, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.721680, 65.802776 ], [ -20.390625, 65.802776 ] ] ] ] } } ] } ] } @@ -337,15 +337,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } , -{ "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": [ [ [ 13.051758, 1.757537 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.460181 ], [ 13.117676, -2.438229 ], [ 12.568359, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 13.051758, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.907715, 1.757537 ], [ 17.775879, 0.856902 ], [ 17.819824, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.644043, -0.417477 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.413574, -1.735574 ], [ 15.974121, -2.701635 ], [ 15.996094, -3.535352 ], [ 15.754395, -3.864255 ], [ 15.161133, -4.346411 ], [ 14.589844, -4.959615 ], [ 14.216309, -4.784469 ], [ 14.150391, -4.499762 ], [ 13.601074, -4.499762 ], [ 13.249512, -4.872048 ], [ 12.985840, -4.784469 ], [ 12.612305, -4.434044 ], [ 12.326660, -4.609278 ], [ 11.909180, -5.047171 ], [ 11.096191, -3.973861 ], [ 11.865234, -3.425692 ], [ 11.469727, -2.767478 ], [ 11.821289, -2.504085 ], [ 12.502441, -2.394322 ], [ 12.568359, -1.955187 ], [ 13.117676, -2.438229 ], [ 13.996582, -2.460181 ], [ 14.304199, -1.999106 ], [ 14.436035, -1.340210 ], [ 14.326172, -0.549308 ], [ 13.864746, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.282227, 1.186439 ], [ 14.018555, 1.406109 ], [ 13.293457, 1.318243 ], [ 13.051758, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.930176, 1.735574 ], [ 15.952148, 1.757537 ], [ 17.907715, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } , +{ "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": [ [ [ 13.051758, 1.757537 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.460181 ], [ 13.117676, -2.438229 ], [ 12.568359, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 13.051758, 1.757537 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.856475 ], [ 16.325684, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.231699 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.993957 ], [ 18.457031, -7.841615 ], [ 19.006348, -7.993957 ], [ 19.160156, -7.732765 ], [ 19.423828, -7.166300 ], [ 20.039062, -7.122696 ], [ 20.083008, -6.948239 ], [ 20.610352, -6.948239 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.928675 ], [ 21.950684, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.884766, -9.514079 ], [ 22.214355, -9.903921 ], [ 22.148438, -11.092166 ], [ 22.412109, -10.984335 ], [ 22.829590, -11.027472 ], [ 23.466797, -10.876465 ], [ 23.906250, -10.919618 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.716788 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.576010 ], [ 24.016113, -12.918907 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.088042 ], [ 22.565918, -16.888660 ], [ 23.225098, -17.518344 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.413546 ], [ 13.469238, -16.972741 ], [ 12.810059, -16.951724 ], [ 12.216797, -17.119793 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.623047, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.216797, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.744141, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.856475 ] ] ], [ [ [ 12.612305, -4.434044 ], [ 12.985840, -4.784469 ], [ 12.634277, -4.981505 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 12.326660, -4.609278 ], [ 12.612305, -4.434044 ] ] ] ] } } , -{ "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.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.245605, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.267578, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.515836 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.239945 ], [ 28.520508, -12.704651 ], [ 28.146973, -12.275599 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -10.984335 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.083008, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.634277, -4.981505 ], [ 12.985840, -4.784469 ], [ 13.249512, -4.872048 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.499762 ], [ 14.216309, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.754395, -3.864255 ], [ 15.996094, -3.535352 ], [ 15.974121, -2.701635 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } +{ "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": [ [ [ 12.810059, -16.951724 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.413546 ], [ 14.216309, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.225098, -17.518344 ], [ 24.038086, -17.287709 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.581194 ], [ 25.092773, -17.664960 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.271086 ], [ 23.203125, -17.874203 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.250220 ], [ 20.874023, -21.820708 ], [ 19.885254, -21.841105 ], [ 19.885254, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.457031, -29.036961 ], [ 17.841797, -28.863918 ], [ 17.380371, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.091366 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.383735 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.663280 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.119793 ], [ 12.810059, -16.951724 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } , @@ -357,21 +359,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.602747 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.222656, -9.687398 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.425848 ], [ 32.980957, -12.790375 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.796128 ], [ 30.278320, -15.517205 ], [ 29.509277, -15.644197 ], [ 28.937988, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.696777, -17.957832 ], [ 26.389160, -17.853290 ], [ 25.268555, -17.727759 ], [ 25.092773, -17.664960 ], [ 25.070801, -17.581194 ], [ 24.675293, -17.350638 ], [ 24.038086, -17.287709 ], [ 23.225098, -17.518344 ], [ 22.565918, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.576010 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.716788 ], [ 24.016113, -11.243062 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.323730, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.931852 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.146973, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.239945 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.168226 ], [ 29.333496, -12.361466 ], [ 28.366699, -11.802834 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.515836 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.664960 ], [ 25.268555, -17.727759 ], [ 25.642090, -18.542117 ], [ 25.839844, -18.708692 ], [ 26.169434, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.488773 ], [ 27.729492, -20.858812 ], [ 28.015137, -21.493964 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.836946 ], [ 27.114258, -23.584126 ], [ 26.784668, -24.246965 ], [ 26.477051, -24.607069 ], [ 25.949707, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.587891, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.895996, -26.824071 ], [ 20.676270, -26.470573 ], [ 20.764160, -25.859224 ], [ 20.170898, -24.926295 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.250220 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.664960 ] ] ] } } -, { "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": [ [ [ 30.278320, -15.517205 ], [ 30.344238, -15.876809 ], [ 31.179199, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.860352, -16.320139 ], [ 32.321777, -16.383391 ], [ 32.849121, -16.720385 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.783203, -19.725342 ], [ 32.651367, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.248429 ], [ 30.651855, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.421387, -22.085640 ], [ 28.784180, -21.637005 ], [ 28.015137, -21.493964 ], [ 27.729492, -20.858812 ], [ 27.729492, -20.488773 ], [ 27.290039, -20.385825 ], [ 26.169434, -19.290406 ], [ 25.839844, -18.708692 ], [ 25.642090, -18.542117 ], [ 25.268555, -17.727759 ], [ 26.389160, -17.853290 ], [ 26.696777, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.937988, -16.045813 ], [ 29.509277, -15.644197 ], [ 30.278320, -15.517205 ] ] ] } } , -{ "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": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.080078, -26.725987 ], [ 31.992188, -26.293415 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.201172, -22.248429 ], [ 32.255859, -21.125498 ], [ 32.519531, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.783203, -19.725342 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.720385 ], [ 32.321777, -16.383391 ], [ 31.860352, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.179199, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.190430, -14.796128 ], [ 33.222656, -13.966054 ], [ 33.793945, -14.455958 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.519043, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.387207, -16.193575 ], [ 35.024414, -16.804541 ], [ 35.332031, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.914551, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.782227, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.836914, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.528809, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.750000, -9.427387 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.914551, -13.560562 ], [ 35.266113, -13.880746 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.897942 ], [ 35.332031, -16.109153 ], [ 35.024414, -16.804541 ], [ 34.387207, -16.193575 ], [ 34.299316, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.453125, -14.604847 ], [ 34.057617, -14.349548 ], [ 33.793945, -14.455958 ], [ 33.222656, -13.966054 ], [ 32.695312, -13.710035 ], [ 32.980957, -12.790375 ], [ 33.310547, -12.425848 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.790141 ], [ 33.486328, -10.531020 ], [ 33.222656, -9.687398 ], [ 32.761230, -9.232249 ] ] ] } } , +{ "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": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.080078, -26.725987 ], [ 31.992188, -26.293415 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.201172, -22.248429 ], [ 32.255859, -21.125498 ], [ 32.519531, -20.385825 ], [ 32.651367, -20.303418 ], [ 32.783203, -19.725342 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.720385 ], [ 32.321777, -16.383391 ], [ 31.860352, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.179199, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.190430, -14.796128 ], [ 33.222656, -13.966054 ], [ 33.793945, -14.455958 ], [ 34.057617, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.519043, -15.008464 ], [ 34.299316, -15.474857 ], [ 34.387207, -16.193575 ], [ 35.024414, -16.804541 ], [ 35.332031, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.604847 ], [ 35.266113, -13.880746 ], [ 34.914551, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.782227, -11.587669 ], [ 37.463379, -11.566144 ], [ 37.836914, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.528809, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } +, { "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.196777, -12.039321 ], [ 49.548340, -12.468760 ], [ 49.812012, -12.897489 ], [ 50.053711, -13.560562 ], [ 50.207520, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.383301, -15.707663 ], [ 50.207520, -16.003576 ], [ 49.855957, -15.411319 ], [ 49.680176, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.504395, -17.098792 ], [ 49.438477, -17.957832 ], [ 48.537598, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.548828, -23.785345 ], [ 47.087402, -24.946219 ], [ 46.274414, -25.185059 ], [ 45.417480, -25.601902 ], [ 44.033203, -24.986058 ], [ 43.769531, -24.467151 ], [ 43.703613, -23.584126 ], [ 43.352051, -22.776182 ], [ 43.264160, -22.065278 ], [ 43.439941, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.076570 ], [ 44.472656, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.033203, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.934082, -16.172473 ], [ 45.505371, -15.982454 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.771109 ], [ 46.889648, -15.220589 ], [ 47.702637, -14.604847 ], [ 48.010254, -14.093957 ], [ 47.878418, -13.667338 ], [ 48.295898, -13.774066 ], [ 48.845215, -13.090179 ], [ 48.867188, -12.490214 ], [ 49.196777, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.333496, -29.248063 ], [ 28.850098, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.637912 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.844674 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.092773, -17.664960 ], [ 25.268555, -17.727759 ], [ 25.642090, -18.542117 ], [ 25.839844, -18.708692 ], [ 26.169434, -19.290406 ], [ 27.290039, -20.385825 ], [ 27.729492, -20.488773 ], [ 27.729492, -20.858812 ], [ 28.015137, -21.493964 ], [ 28.784180, -21.637005 ], [ 29.421387, -22.085640 ], [ 28.015137, -22.836946 ], [ 27.114258, -23.584126 ], [ 26.784668, -24.246965 ], [ 26.477051, -24.607069 ], [ 25.949707, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.661333 ], [ 23.730469, -25.383735 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.587891, -25.977799 ], [ 22.104492, -26.273714 ], [ 21.599121, -26.725987 ], [ 20.895996, -26.824071 ], [ 20.676270, -26.470573 ], [ 20.764160, -25.859224 ], [ 20.170898, -24.926295 ], [ 19.885254, -24.766785 ], [ 19.885254, -21.841105 ], [ 20.874023, -21.820708 ], [ 20.917969, -18.250220 ], [ 21.665039, -18.229351 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.271086 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.895114 ], [ 25.092773, -17.664960 ] ] ] } } +, +{ "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.421387, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.725987 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.061035, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.602362 ], [ 18.237305, -32.435613 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.036961 ], [ 19.006348, -28.979312 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.859224 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.661333 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.421387, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.248063 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.839449 ], [ 31.992188, -26.293415 ], [ 32.080078, -26.725987 ], [ 31.860352, -27.176469 ], [ 31.289062, -27.293689 ], [ 30.695801, -26.745610 ], [ 30.673828, -26.391870 ], [ 30.959473, -26.017298 ], [ 31.047363, -25.740529 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.421387, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.725987 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.061035, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.602362 ], [ 18.237305, -32.435613 ], [ 18.215332, -31.653381 ], [ 17.556152, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.036961 ], [ 19.006348, -28.979312 ], [ 19.885254, -28.459033 ], [ 19.885254, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.859224 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.661333 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.686952 ], [ 26.477051, -24.607069 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.421387, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.637912 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.248063 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.333496, -29.248063 ], [ 28.850098, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.637912 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.844674 ], [ 28.542480, -28.652031 ] ] ] } } , { "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": [ [ [ 68.928223, -48.618385 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } ] } @@ -381,41 +383,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.146770 ], [ 6.833496, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.998535, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.041394 ], [ 4.965820, 51.481383 ], [ 4.042969, 51.261915 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.348145, 53.252069 ], [ 14.084473, 52.975108 ], [ 14.436035, 52.629729 ], [ 14.677734, 52.093008 ], [ 14.611816, 51.740636 ], [ 15.007324, 51.110420 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.110420 ], [ 14.062500, 50.930738 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.553726 ], [ 13.029785, 49.310799 ], [ 13.601074, 48.879167 ], [ 13.249512, 48.414619 ], [ 12.875977, 48.283193 ], [ 13.029785, 47.635784 ], [ 12.941895, 47.472663 ], [ 12.612305, 47.665387 ], [ 12.150879, 47.709762 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.561701 ], [ 10.393066, 47.309034 ], [ 9.887695, 47.576526 ], [ 9.602051, 47.532038 ], [ 8.525391, 47.827908 ], [ 8.327637, 47.620975 ], [ 7.470703, 47.620975 ], [ 7.602539, 48.327039 ], [ 8.107910, 49.023461 ], [ 6.657715, 49.196064 ], [ 6.196289, 49.468124 ], [ 6.240234, 49.908787 ], [ 6.042480, 50.134664 ], [ 6.152344, 50.805935 ], [ 5.998535, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.833496, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.899414, 53.488046 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.272461, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.006348, 44.855869 ], [ 18.544922, 45.089036 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 45.011419 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.824708 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.452919 ], [ 17.666016, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.809122 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.490946 ], [ 13.710938, 45.506347 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.314941, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.313965, 49.567978 ], [ 19.819336, 49.210420 ], [ 20.412598, 49.425267 ], [ 20.895996, 49.325122 ], [ 21.599121, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.429201 ], [ 21.862793, 48.327039 ], [ 20.808105, 48.618385 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.195387 ], [ 19.665527, 48.268569 ], [ 19.182129, 48.107431 ], [ 18.786621, 48.078079 ], [ 18.698730, 47.886881 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.872144 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.094727, 48.821333 ], [ 17.534180, 48.806863 ], [ 17.885742, 48.908059 ], [ 17.907715, 48.994636 ], [ 18.105469, 49.037868 ], [ 18.171387, 49.267805 ], [ 18.391113, 49.310799 ], [ 18.544922, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.918457, 49.439557 ], [ 19.313965, 49.567978 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.808105, 43.277205 ], [ 20.961914, 43.133061 ], [ 21.137695, 43.068888 ], [ 21.269531, 42.908160 ], [ 21.445312, 42.859860 ], [ 21.643066, 42.682435 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.533203, 42.326062 ], [ 21.577148, 42.244785 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.853196 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.212245 ], [ 20.280762, 42.326062 ], [ 20.061035, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.892064 ], [ 20.632324, 43.213183 ], [ 20.808105, 43.277205 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 42.682435 ], [ 19.797363, 42.504503 ], [ 20.061035, 42.585444 ], [ 20.280762, 42.326062 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.456543, 41.508577 ], [ 20.610352, 41.079351 ], [ 21.027832, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.313965, 42.195969 ], [ 19.731445, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.239309 ], [ 39.748535, 47.901614 ], [ 38.759766, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.042478 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.288574, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.476562, 45.598666 ], [ 28.652344, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.179688, 46.377254 ], [ 29.750977, 46.346928 ], [ 30.014648, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.935261 ], [ 29.421387, 47.353711 ], [ 29.047852, 47.517201 ], [ 29.113770, 47.842658 ], [ 28.674316, 48.122101 ], [ 28.256836, 48.151428 ], [ 27.531738, 48.472921 ], [ 26.850586, 48.370848 ], [ 26.608887, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.411621, 47.975214 ], [ 23.752441, 47.989922 ], [ 23.137207, 48.092757 ], [ 22.719727, 47.886881 ], [ 22.631836, 48.151428 ], [ 22.082520, 48.429201 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.785645, 49.023461 ], [ 22.521973, 49.482401 ], [ 23.422852, 50.303376 ], [ 23.928223, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.532715, 51.577070 ], [ 23.994141, 51.618017 ], [ 24.543457, 51.890054 ], [ 25.334473, 51.917168 ], [ 26.345215, 51.835778 ], [ 27.443848, 51.590723 ], [ 28.234863, 51.577070 ], [ 28.608398, 51.426614 ], [ 28.981934, 51.604372 ], [ 29.245605, 51.371780 ], [ 30.146484, 51.412912 ], [ 30.563965, 51.316881 ], [ 30.629883, 51.822198 ], [ 30.937500, 52.038977 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.295042 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.851074, 56.377419 ], [ 25.004883, 56.170023 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.851315 ], [ 25.532227, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.917281 ], [ 23.247070, 54.226708 ], [ 22.741699, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 22.192383, 56.340901 ], [ 23.884277, 56.267761 ], [ 24.851074, 56.377419 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.708496, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.198205 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.182204 ], [ 27.971191, 43.818675 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.663574, 42.585444 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.590797 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.438961 ], [ 8.371582, 35.478565 ], [ 8.151855, 34.651285 ], [ 7.514648, 34.089061 ], [ 7.602539, 33.339707 ], [ 8.437500, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.315988 ], [ 9.799805, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.946219 ], [ 10.305176, 24.387127 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.106647 ], [ 11.997070, 23.463246 ], [ 8.569336, 21.575719 ], [ 5.668945, 19.601194 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.142090, 19.683970 ], [ 2.680664, 19.849394 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.791691 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.856445, 12.232655 ], [ 3.603516, 11.652236 ], [ 3.581543, 11.329253 ], [ 3.801270, 10.725381 ], [ 3.603516, 10.336536 ], [ 3.713379, 10.055403 ], [ 3.229980, 9.449062 ], [ 2.922363, 9.145486 ], [ 2.724609, 8.515836 ], [ 2.746582, 7.863382 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.625977, 6.839170 ], [ 1.669922, 9.123792 ], [ 1.472168, 9.340672 ], [ 1.428223, 9.817329 ], [ 0.769043, 10.466206 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.482910, 12.232655 ], [ 2.856445, 12.232655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.873535, 11.135287 ], [ 22.983398, 10.703792 ], [ 23.554688, 10.098670 ], [ 23.554688, 9.687398 ], [ 23.400879, 9.275622 ], [ 23.466797, 8.950193 ], [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.114746, 7.493196 ], [ 25.795898, 6.970049 ], [ 26.213379, 6.555475 ], [ 26.455078, 5.943900 ], [ 27.224121, 5.550381 ], [ 27.377930, 5.244128 ], [ 27.048340, 5.134715 ], [ 26.411133, 5.156599 ], [ 25.642090, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.136719, 4.937724 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.291016, 4.609278 ], [ 22.851562, 4.718778 ], [ 22.697754, 4.631179 ], [ 22.412109, 4.039618 ], [ 21.665039, 4.214943 ], [ 20.917969, 4.324501 ], [ 20.280762, 4.696879 ], [ 19.467773, 5.025283 ], [ 18.940430, 4.718778 ], [ 18.544922, 4.193030 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.547988 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.842332 ], [ 14.941406, 4.214943 ], [ 14.479980, 4.740675 ], [ 14.567871, 5.025283 ], [ 14.458008, 5.441022 ], [ 14.545898, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.493196 ], [ 16.281738, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.699219, 7.514981 ], [ 17.973633, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.808594, 8.993600 ], [ 19.094238, 9.080400 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.574222 ], [ 22.236328, 10.962764 ], [ 22.873535, 11.135287 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.200684, 35.173808 ], [ 33.376465, 35.155846 ], [ 33.464355, 35.101934 ], [ 33.486328, 34.994004 ], [ 33.530273, 35.029996 ], [ 33.684082, 35.012002 ], [ 33.859863, 35.101934 ], [ 33.969727, 35.065973 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.200684, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.009277, 18.999803 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.165039, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.072645 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.993600 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.990491 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.936035, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.504503 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.492676, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.295410, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.306152, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.805935 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.159180, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.341309, 12.533115 ], [ 42.011719, 12.876070 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.541050 ], [ 39.089355, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.221789 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.387617 ], [ 43.945312, 37.247821 ], [ 44.296875, 37.002553 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.101934 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.098633, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.935895 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 44.714355, 29.171349 ], [ 41.879883, 31.184609 ], [ 40.407715, 31.896214 ], [ 39.199219, 32.157012 ], [ 38.781738, 33.376412 ], [ 41.000977, 34.415973 ], [ 41.374512, 35.621582 ], [ 41.286621, 36.350527 ], [ 41.835938, 36.597889 ], [ 42.341309, 37.230328 ], [ 42.780762, 37.387617 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 48.625488, 38.272689 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.054199, 39.588757 ], [ 47.680664, 39.504041 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.725098, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 44.956055, 39.334297 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.985352, 42.228517 ], [ 60.073242, 41.426253 ], [ 60.468750, 41.228249 ], [ 61.545410, 41.261291 ], [ 61.875000, 41.079351 ], [ 62.380371, 40.061257 ], [ 63.522949, 39.368279 ], [ 64.160156, 38.891033 ], [ 65.214844, 38.410558 ], [ 66.555176, 37.978845 ], [ 66.511230, 37.370157 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.657296 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.425293, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.926868 ], [ 55.502930, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.492676, 41.787697 ], [ 52.954102, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.049293 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.106934, 41.327326 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.746024 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.958246 ], [ 56.601562, 18.583776 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.228516, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.656738, 22.004175 ], [ 55.217285, 22.715390 ], [ 55.239258, 23.120154 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.926013 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.876465, 24.926295 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.758789, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 48.493652, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.773716 ], [ 79.694824, 8.211490 ], [ 80.156250, 9.817329 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.906849 ], [ 77.827148, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.740234, 34.325292 ], [ 74.113770, 33.449777 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.158691, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.224820 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.367114 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.765231 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.864258, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.477861 ], [ 64.138184, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.928711, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.509762 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.147461, 34.343436 ], [ 71.125488, 34.741612 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.657296 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.844461 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.258768 ], [ 34.475098, 3.557283 ], [ 34.606934, 3.052754 ], [ 35.046387, 1.911267 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.350415 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.695312, 3.798484 ], [ 33.398438, 3.798484 ], [ 34.013672, 4.258768 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.805664, -1.691649 ], [ 30.805664, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ] ] ] } } ] } ] } , @@ -441,10 +445,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "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.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , -{ "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.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.969727, -9.297307 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.268066, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.893066, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.450639 ], [ 122.893066, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.511230, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.699707, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.833317 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.118576 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } , +{ "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.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.969727, -9.297307 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.268066, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.893066, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.450639 ], [ 122.893066, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.511230, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.699707, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.833317 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.118576 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.090332, -8.646196 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } , { "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.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.261230, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.211426, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.882812, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.554199, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.187607 ], [ 122.321777, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.346865 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.103781 ], [ 132.561035, -11.609193 ], [ 131.813965, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -14.987240 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.688688 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ] ] } } @@ -475,17 +479,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.701172, 26.745610 ], [ 98.679199, 25.918526 ], [ 97.734375, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.958393 ], [ 99.250488, 22.126355 ], [ 100.415039, 21.555284 ], [ 101.140137, 21.841105 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.776659 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.179724 ], [ 98.964844, 19.746024 ], [ 98.261719, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.382812, 18.437925 ], [ 97.866211, 17.560247 ], [ 98.503418, 16.846605 ], [ 98.898926, 16.172473 ], [ 98.547363, 15.305380 ], [ 98.195801, 15.114553 ], [ 98.437500, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.261333 ], [ 99.206543, 12.811801 ], [ 99.580078, 11.888853 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.813396 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.330315 ], [ 92.680664, 22.044913 ], [ 93.164062, 22.268764 ], [ 93.054199, 22.695120 ], [ 93.295898, 23.039298 ], [ 93.317871, 24.086589 ], [ 94.108887, 23.845650 ], [ 94.548340, 24.666986 ], [ 94.592285, 25.165173 ], [ 95.163574, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.274161 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.612793, 19.518375 ], [ 101.271973, 19.456234 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.104087 ], [ 102.414551, 17.936929 ], [ 103.007812, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.721680, 17.434511 ], [ 104.787598, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.227051, 14.264383 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 101.821289, 5.812757 ], [ 101.162109, 5.681584 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.888853 ], [ 99.206543, 12.811801 ], [ 99.206543, 13.261333 ], [ 99.096680, 13.838080 ], [ 98.437500, 14.626109 ], [ 98.195801, 15.114553 ], [ 98.547363, 15.305380 ], [ 98.898926, 16.172473 ], [ 98.503418, 16.846605 ], [ 97.866211, 17.560247 ], [ 97.382812, 18.437925 ], [ 97.800293, 18.625425 ], [ 98.261719, 19.704658 ], [ 98.964844, 19.746024 ], [ 99.536133, 20.179724 ], [ 100.107422, 20.427013 ] ] ] } } -, -{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.004395, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.004395, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.591309, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.981505 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.677848 ], [ 103.205566, 20.776659 ], [ 104.436035, 20.756114 ], [ 104.831543, 19.890723 ], [ 104.194336, 19.621892 ], [ 103.886719, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.545410, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.556152, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.227051, 14.264383 ], [ 105.534668, 14.732386 ], [ 105.578613, 15.580711 ], [ 104.787598, 16.446622 ], [ 104.721680, 17.434511 ], [ 103.952637, 18.250220 ], [ 103.205566, 18.312811 ], [ 103.007812, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.106934, 18.104087 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.417079 ], [ 101.271973, 19.456234 ], [ 100.612793, 19.518375 ], [ 100.546875, 20.117840 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.776659 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.207459 ], [ 101.799316, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.336914, 23.342256 ], [ 105.820312, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.228090 ], [ 107.050781, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.898042 ], [ 106.259766, 10.962764 ], [ 105.820312, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.622070, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.556152, 15.199386 ], [ 107.314453, 15.919074 ], [ 106.545410, 16.594081 ], [ 105.095215, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.194336, 19.621892 ], [ 104.831543, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.172852, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.513184, 22.695120 ], [ 104.479980, 22.816694 ], [ 105.336914, 23.342256 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.612793, 19.518375 ], [ 101.271973, 19.456234 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.104087 ], [ 102.414551, 17.936929 ], [ 103.007812, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.721680, 17.434511 ], [ 104.787598, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.227051, 14.264383 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 101.821289, 5.812757 ], [ 101.162109, 5.681584 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.888853 ], [ 99.206543, 12.811801 ], [ 99.206543, 13.261333 ], [ 99.096680, 13.838080 ], [ 98.437500, 14.626109 ], [ 98.195801, 15.114553 ], [ 98.547363, 15.305380 ], [ 98.898926, 16.172473 ], [ 98.503418, 16.846605 ], [ 97.866211, 17.560247 ], [ 97.382812, 18.437925 ], [ 97.800293, 18.625425 ], [ 98.261719, 19.704658 ], [ 98.964844, 19.746024 ], [ 99.536133, 20.179724 ], [ 100.107422, 20.427013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.004395, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 4.017699 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.681584 ], [ 101.821289, 5.812757 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.526037 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.546875, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.562318 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.820312, 11.566144 ], [ 106.259766, 10.962764 ], [ 105.205078, 10.898042 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.227051, 14.264383 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.562318 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.486816, 25.304304 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.387127 ], [ 121.179199, 22.796439 ], [ 120.739746, 21.963425 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.695801, 24.547123 ], [ 121.486816, 25.304304 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.336914, 23.342256 ], [ 105.820312, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.228090 ], [ 107.050781, 21.820708 ], [ 108.039551, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.259277, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.898042 ], [ 106.259766, 10.962764 ], [ 105.820312, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.622070, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.556152, 15.199386 ], [ 107.314453, 15.919074 ], [ 106.545410, 16.594081 ], [ 105.095215, 18.667063 ], [ 103.886719, 19.269665 ], [ 104.194336, 19.621892 ], [ 104.831543, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.776659 ], [ 102.744141, 21.677848 ], [ 102.172852, 22.471955 ], [ 102.700195, 22.715390 ], [ 103.513184, 22.695120 ], [ 104.479980, 22.816694 ], [ 105.336914, 23.342256 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.177246, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.375488, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 128.210449, 38.376115 ], [ 127.770996, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.694336, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.856820 ], [ 125.375977, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.255371, 39.926588 ], [ 125.090332, 40.563895 ], [ 126.188965, 41.112469 ], [ 126.870117, 41.820455 ], [ 127.353516, 41.508577 ], [ 128.210449, 41.459195 ], [ 128.056641, 42.000325 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.988576 ] ] ] } } , @@ -493,7 +493,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.713355 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.004395, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 4.017699 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.681584 ], [ 101.821289, 5.812757 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.526037 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.546875, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.311035, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.311035, 18.500447 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 124.079590, 11.243062 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.243062 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.156845 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.004395, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.004395, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.601142 ], [ 99.689941, 3.184394 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.591309, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.981505 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , @@ -609,13 +613,13 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } -, { "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.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.698212 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.136963, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.148193, -52.348763 ], [ -68.576660, -52.301761 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.673835 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.652588, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.334229, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.147217, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , { "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.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.565918, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.072283 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.882723 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.246626 ], [ -72.652588, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.301761 ], [ -69.466553, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.433105, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.707275, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.981689, -51.041394 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.709762 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.696045, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.740234, -40.313043 ], [ -71.795654, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.546143, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.204834, -51.849353 ], [ -59.996338, -51.248163 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.096623 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.642704 ], [ -62.039795, -64.581470 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.699855 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.268241 ] ] ] } } ] } ] } , @@ -633,10 +637,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.458033 ], [ -63.193359, -12.629618 ], [ -62.797852, -13.004558 ], [ -62.127686, -13.197165 ], [ -61.710205, -13.485790 ], [ -61.083984, -13.475106 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.349548 ], [ -60.260010, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.392334, -16.878147 ], [ -58.282471, -17.266728 ], [ -57.733154, -17.549772 ], [ -57.502441, -18.177169 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.404430 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.352611 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.379883, -22.796439 ], [ -64.962158, -22.075459 ], [ -66.269531, -21.830907 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.225098, -21.493964 ], [ -68.752441, -20.375527 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.260653 ], [ -69.587402, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.665354 ], [ -69.158936, -15.326572 ], [ -69.334717, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.884277, -12.897489 ], [ -68.664551, -12.565287 ], [ -69.532471, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.170410, -10.304110 ], [ -66.643066, -9.936388 ], [ -65.335693, -9.763198 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.875792 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.766785 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.127591 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.788818, -26.617997 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.036298 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.422852, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.107118 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.206787, -32.731841 ], [ -53.646240, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.811035, -34.397845 ], [ -54.931641, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.434098 ], [ -57.821045, -34.461277 ], [ -58.425293, -33.906896 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.036298 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.211608 ], [ -56.975098, -30.107118 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.875792 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.766785 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.127591 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.788818, -26.617997 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.036298 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.422852, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.875977, -20.735566 ], [ -57.941895, -22.085640 ], [ -56.876221, -22.278931 ], [ -56.469727, -22.085640 ], [ -55.799561, -22.360236 ], [ -55.612793, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.391278 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.127591 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.165173 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.036431 ], [ -60.842285, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ] ] ] } } , { "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": [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.260653 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.185018 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -69.005127, -27.518015 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.818115, -33.275435 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.817871, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.685791, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.505400 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.710837 ], [ -70.400391, -23.624395 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.367432, -18.344098 ], [ -69.862061, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } @@ -651,9 +655,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.214881 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.214881 ] ] ], [ [ [ -77.794189, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.794189, 27.039557 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.843677 ], [ -77.816162, 26.578702 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.508301, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.859727 ], [ -77.080078, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.033237 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.826172, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.979248, 21.892084 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.067383, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.273587 ], [ -83.144531, 14.997852 ], [ -83.485107, 15.019075 ], [ -83.627930, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.817371 ], [ -84.924316, 14.785505 ], [ -85.056152, 14.551684 ], [ -85.144043, 14.562318 ], [ -85.166016, 14.349548 ], [ -85.517578, 14.083301 ], [ -85.693359, 13.955392 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.308594, 13.774066 ], [ -86.517334, 13.774066 ], [ -86.759033, 13.752725 ], [ -86.737061, 13.261333 ], [ -86.879883, 13.250640 ], [ -87.000732, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.389620 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.538818, 13.976715 ], [ -88.846436, 14.136576 ], [ -89.055176, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.528076, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.760536 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.897942 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.308105, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.297119, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.846436, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.389620 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , @@ -661,11 +663,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.221510 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 10.995120 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.660889, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.924805, 9.069551 ], [ -82.716064, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.492408 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.561523, 11.221510 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.794189, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.652934 ], [ -69.774170, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.620361, 18.385805 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -71.004639, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.949463, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.859727 ], [ -77.080078, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.033237 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.222168, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.826172, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.156883 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.979248, 21.892084 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.949463, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.377930, 18.218916 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.454590, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.652934 ], [ -69.774170, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.620361, 18.385805 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -71.004639, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.949463, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } , @@ -689,25 +693,25 @@ { "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": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } , -{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.058175 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.612100 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.569114 ], [ -59.271240, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.147488 ], [ -82.441406, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.233643, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.054632 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.446324 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.587402, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.955674 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.368652, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.061035, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.796631, 45.706179 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.880371, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.324707, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.170654, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.528564, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.543658 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.863770, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } -, { "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": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.968994, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.256104, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.893066, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.982624 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.992188, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.505371, 73.855397 ], [ -90.878906, 73.640171 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.601074, 75.098458 ], [ -58.590088, 75.516404 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } -, { "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": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.233838 ] ] ] ] } } +, +{ "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": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.686523, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.735830 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.768799, 82.628514 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } ] } ] } , @@ -735,39 +739,39 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.031250, 40.187267 ], [ -7.064209, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.182788 ], [ -2.175293, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.505484 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.822021, 27.654338 ], [ -8.800049, 27.117813 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.184326, 26.863281 ], [ -10.546875, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.722412, 26.106121 ], [ -12.030029, 26.027170 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.694835 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.404053, 29.094577 ], [ -9.569092, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.305420, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } -, { "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": [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.938287 ], [ -11.942139, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -17.017822, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.694835 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.800049, 27.117813 ], [ -8.822021, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.182788 ], [ -2.175293, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.505484 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.822021, 27.654338 ], [ -8.800049, 27.117813 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.184326, 26.863281 ], [ -10.546875, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.722412, 26.106121 ], [ -12.030029, 26.027170 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.694835 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.404053, 29.094577 ], [ -9.569092, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.305420, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "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": [ [ [ -15.545654, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.721924, 12.243392 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.512322 ], [ -14.688721, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.820312, 12.511665 ], [ -15.545654, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.109131, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.041260, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.624633 ], [ -14.051514, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.710693, 13.293411 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.282719 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.402832, 13.859414 ], [ -15.084229, 13.880746 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.502441, 12.329269 ], [ -12.282715, 12.350734 ], [ -12.205811, 12.468760 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.447305 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.082296 ], [ -11.041260, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.624268, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.318882 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.843506, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.660608 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.688721, 11.523088 ], [ -14.381104, 11.512322 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.673755 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "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": [ [ [ -15.545654, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.721924, 12.243392 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.512322 ], [ -14.688721, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.820312, 12.511665 ], [ -15.545654, 12.629618 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.109131, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.624268, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.041260, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.502441, 12.329269 ], [ -12.282715, 12.350734 ], [ -12.205811, 12.468760 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.447305 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.082296 ], [ -11.041260, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.624268, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.318882 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.843506, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.660608 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.688721, 11.523088 ], [ -14.381104, 11.512322 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.673755 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.464422 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.109131, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.843506, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.601318, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.318882 ], [ -8.920898, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.689217 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.915521 ], [ -8.602295, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.195068, 7.100893 ], [ -11.151123, 7.395153 ], [ -10.700684, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.537565 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.559814, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.240967, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.581021 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.416942 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.240967, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.559814, 8.222364 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.758057, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.728167 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.175293, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.908830 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.908830 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.908830 ], [ 0.878906, 10.368958 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.908830 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 10.908830 ], [ 0.769043, 10.466206 ], [ 0.878906, 10.368958 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.416942 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.240967, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.559814, 8.222364 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.758057, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } ] } ] } , @@ -777,10 +781,10 @@ , { "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": "Polygon", "coordinates": [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.807279 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.797852, 63.680377 ], [ -18.654785, 63.494670 ], [ -22.763672, 63.961496 ], [ -21.774902, 64.401685 ], [ -23.950195, 64.890928 ], [ -22.181396, 65.086018 ], [ -22.225342, 65.380571 ], [ -24.323730, 65.612952 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.730626 ], [ -19.061279, 66.275698 ], [ -17.797852, 65.995681 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.862497 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.842595 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.086670, 55.059495 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.128649 ], [ -7.360840, 54.597528 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.667478 ], [ -7.569580, 55.128649 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.862497 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.842595 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.086670, 55.059495 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -3.010254, 58.636935 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.416260, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 0.878906, 42.722804 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.009033, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.668213, 42.130821 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.009033, 41.787697 ], [ -7.426758, 41.795888 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -6.888428, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } @@ -817,18 +821,18 @@ , { "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": 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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.468262, -8.070107 ], [ 18.138428, -7.983078 ], [ 18.468018, -7.841615 ], [ 19.017334, -7.983078 ], [ 19.171143, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.039062, -7.111795 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.203369, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.232286 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.518344 ], [ 21.379395, -17.926476 ], [ 18.951416, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.458252, -16.972741 ], [ 12.810059, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.733154, -13.132979 ], [ 13.315430, -12.479487 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.368958 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.370361, -5.867403 ] ] ], [ [ [ 12.623291, -4.434044 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.315674, -4.609278 ], [ 12.623291, -4.434044 ] ] ] ] } } +{ "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": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } , -{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.468262, -8.070107 ], [ 18.138428, -7.983078 ], [ 18.468018, -7.841615 ], [ 19.017334, -7.983078 ], [ 19.171143, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.039062, -7.111795 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.203369, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.232286 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.518344 ], [ 21.379395, -17.926476 ], [ 18.951416, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.458252, -16.972741 ], [ 12.810059, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.733154, -13.132979 ], [ 13.315430, -12.479487 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.368958 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.370361, -5.867403 ] ] ], [ [ [ 12.623291, -4.434044 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.315674, -4.609278 ], [ 12.623291, -4.434044 ] ] ] ] } } , { "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": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } , +{ "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.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.944781 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.003662, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.131518 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.284551 ], [ 30.465088, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.921097 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.421143, -1.131518 ] ] ] } } @@ -839,23 +843,23 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.520219 ], [ 33.310547, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.518344 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.232286 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.693933 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.664960 ], [ 25.268555, -17.738223 ], [ 25.653076, -18.531700 ], [ 25.850830, -18.719097 ], [ 26.169434, -19.290406 ], [ 27.301025, -20.396123 ], [ 27.729492, -20.499064 ], [ 27.729492, -20.848545 ], [ 28.026123, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.480407 ], [ 20.753174, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.884659 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ] ] ] } } -, { "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": [ [ [ 30.278320, -15.506619 ], [ 30.344238, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.640625, -16.066929 ], [ 31.849365, -16.320139 ], [ 32.332764, -16.393931 ], [ 32.849121, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.248429 ], [ 30.662842, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.848545 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.290406 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.531700 ], [ 25.268555, -17.738223 ], [ 26.378174, -17.842833 ], [ 26.707764, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.891411 ], [ 35.683594, -14.615478 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.376221, -16.183024 ], [ 34.310303, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.464111, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.793945, -14.455958 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.779661 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.800933 ], [ 33.486328, -10.520219 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.878872 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.903809, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.453125, 0.878872 ], [ 40.989990, 0.878872 ] ] ] } } , { "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": [ [ [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.981201, -26.293415 ], [ 31.838379, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.190186, -22.248429 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.709863 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.344238, -15.876809 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.008464 ], [ 34.310303, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.683594, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.903564, -13.560562 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.275599 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.716788 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.277344, -12.275599 ], [ 34.562988, -13.581921 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.891411 ], [ 35.683594, -14.615478 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.376221, -16.183024 ], [ 34.310303, -15.474857 ], [ 34.519043, -15.008464 ], [ 34.464111, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.793945, -14.455958 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.779661 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.310547, -10.800933 ], [ 33.486328, -10.520219 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } -, { "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": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.307861, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.014893, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.664960 ], [ 25.268555, -17.738223 ], [ 25.653076, -18.531700 ], [ 25.850830, -18.719097 ], [ 26.169434, -19.290406 ], [ 27.301025, -20.396123 ], [ 27.729492, -20.499064 ], [ 27.729492, -20.848545 ], [ 28.026123, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.482951 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.264568 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.480407 ], [ 20.753174, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.192139, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.884659 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ] ] ] } } +, +{ "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.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.839449 ], [ 31.981201, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.871338, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.673828, -26.401711 ], [ 30.948486, -26.027170 ], [ 31.047363, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.014893, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.103027, -30.543339 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } ] } ] } , @@ -863,39 +867,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.680664, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.430122 ], [ 8.371582, 35.478565 ], [ 8.140869, 34.651285 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.339707 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.624023, 27.137368 ], [ 9.711914, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.796510 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.916992, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.666266 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 20.004322 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.678955, 28.139816 ], [ 9.854736, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.828154 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.614990, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.416942 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.801270, 10.736175 ], [ 3.603516, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.614990, 6.828261 ], [ 1.669922, 9.123792 ], [ 1.461182, 9.329831 ], [ 1.428223, 9.828154 ], [ 0.769043, 10.466206 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.560562 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.491943, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.603516, 10.336536 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.389893, 9.264779 ], [ 23.455811, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.125732, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.401123, 4.028659 ], [ 21.654053, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.214943 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.413566 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.896030 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.387617 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.517822, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.156006, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.212288 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.466064, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.746556 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 14.359131, -0.878872 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.029541, 1.395126 ], [ 13.282471, 1.318243 ], [ 13.007812, 1.834403 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.150146, 1.966167 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.127686, 3.732708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.870850, 35.092945 ], [ 33.969727, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.915039, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.724089 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.826416, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.705566, 32.713355 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.189209, 32.528289 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.484893 ], [ 35.419922, 31.099982 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.463867, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.826416, 33.275435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.001465, 32.008076 ], [ 37.001953, 31.512996 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.484893 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.837158, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.806749 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.110352, 17.088291 ], [ 43.385010, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.955399 ], [ 38.518066, 14.509144 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.103781 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.038255 ], [ 42.550049, 11.102947 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.188870 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.342583 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.563232, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.727783, 10.908830 ], [ 34.826660, 11.318481 ], [ 35.255127, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.265869, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.902832, 14.955399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.550049, 11.102947 ], [ 42.319336, 11.038255 ], [ 41.759033, 11.049038 ], [ 41.737061, 11.350797 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.103781 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } +, +{ "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.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.911267 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } ] } @@ -907,39 +913,39 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.146729, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.206377 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.505935 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.009086 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.146729, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.146770 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.034486 ], [ 4.976807, 51.474540 ], [ 4.042969, 51.268789 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.603027, 51.034486 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.127622 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.513428, 54.470038 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.755207 ], [ 14.348145, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.093008 ], [ 14.611816, 51.747439 ], [ 15.018311, 51.103522 ], [ 14.567871, 50.999929 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.923813 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.524414, 49.546598 ], [ 13.029785, 49.303636 ], [ 13.601074, 48.879167 ], [ 13.238525, 48.414619 ], [ 12.886963, 48.290503 ], [ 13.029785, 47.635784 ], [ 12.930908, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.569114 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.576526 ], [ 9.591064, 47.524620 ], [ 8.525391, 47.827908 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.146770 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.084298 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.450861 ], [ 10.579834, 57.727619 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.875000, 48.472921 ], [ 16.984863, 48.122101 ], [ 16.907959, 47.717154 ], [ 16.336670, 47.709762 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.809814, 46.505954 ], [ 12.381592, 46.769968 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.052246, 46.754917 ], [ 10.447998, 46.890232 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.591064, 47.524620 ], [ 9.898682, 47.576526 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.290503 ], [ 13.238525, 48.414619 ], [ 13.601074, 48.879167 ], [ 14.337158, 48.552978 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.505954 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.863656 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.003651 ], [ 15.963135, 45.236218 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.292480, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.710938, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.006836, 45.236218 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.863656 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.428988 ], [ 18.709717, 43.197167 ], [ 18.555908, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.292480, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.347422 ], [ 15.754395, 44.816916 ], [ 15.963135, 45.236218 ], [ 16.314697, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.006836, 45.236218 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.324951, 49.575102 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.797119, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.764404, 48.202710 ], [ 19.665527, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.698730, 47.879513 ], [ 17.852783, 47.761484 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.875000, 48.472921 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.274973 ], [ 18.402100, 49.317961 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.575102 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.349150 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.072021, 42.585444 ], [ 19.797363, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.709717, 43.197167 ], [ 19.028320, 43.428988 ], [ 19.215088, 43.524655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.006836, 45.236218 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.863656 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.428988 ], [ 18.709717, 43.197167 ], [ 18.555908, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.292480, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.347422 ], [ 15.754395, 44.816916 ], [ 15.963135, 45.236218 ], [ 16.314697, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.006836, 45.236218 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.819092, 43.269206 ], [ 20.961914, 43.133061 ], [ 21.148682, 43.068888 ], [ 21.269531, 42.908160 ], [ 21.434326, 42.859860 ], [ 21.632080, 42.674359 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.317939 ], [ 21.577148, 42.244785 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.884015 ], [ 20.632324, 43.213183 ], [ 20.819092, 43.269206 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.102683 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.762939, 54.844990 ], [ 25.532227, 54.284469 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.873291, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.214844, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.478271, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.434326, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.819092, 43.269206 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.335693, 42.900113 ], [ 19.962158, 43.109004 ], [ 19.632568, 43.213183 ], [ 19.478760, 43.349150 ], [ 19.215088, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.863656 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.025206 ], [ 36.760254, 46.702202 ], [ 35.826416, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.739502, 46.331758 ], [ 31.673584, 46.709736 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.943511 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.410400, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.137207, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.828566 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.323486, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.598145, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.217353 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.125000, 46.807580 ], [ 28.157959, 46.369674 ], [ 28.059082, 45.943511 ], [ 28.234863, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.553467, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.070557, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.214844, 46.126556 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.137207, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.949707, 47.989922 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.366455, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.299805, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.300049, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.323486, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.521729, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.214844, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.478271, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.434326, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.819092, 43.269206 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.335693, 42.900113 ], [ 19.962158, 43.109004 ], [ 19.632568, 43.213183 ], [ 19.478760, 43.349150 ], [ 19.215088, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.863656 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.905300 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.377254 ], [ 16.567383, 46.505954 ], [ 16.369629, 46.837650 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.336670, 47.709762 ], [ 16.907959, 47.717154 ], [ 16.984863, 48.122101 ], [ 17.490234, 47.864774 ], [ 17.852783, 47.761484 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.665527, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.478516, 48.560250 ], [ 20.797119, 48.625647 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.158757 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.047852, 47.509780 ], [ 29.410400, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.904785, 46.672056 ], [ 29.838867, 46.528635 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.943511 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.490946 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.125000, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.370848 ], [ 27.520752, 48.465637 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.019853 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.358544 ], [ 10.513916, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.771094 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.556510 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.556510 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.317939 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } , @@ -999,33 +1005,33 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 45.000000, 29.161756 ], [ 44.714355, 29.180941 ], [ 44.121094, 29.602118 ], [ 44.121094, 37.125286 ], [ 44.296875, 37.002553 ], [ 44.769287, 37.169072 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.345215, 38.255436 ], [ 71.235352, 37.952861 ], [ 71.542969, 37.909534 ], [ 71.444092, 37.063944 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.256836, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.257324, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.352507 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.500496 ], [ 69.312744, 31.905541 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.306715 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.563902 ], [ 64.149170, 29.343875 ], [ 63.544922, 29.468297 ], [ 62.545166, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.776123, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 67.071533, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.191895, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.056783 ], [ 56.260986, 25.710837 ], [ 56.392822, 24.926295 ], [ 55.887451, 24.916331 ], [ 55.799561, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.110049 ], [ 55.206299, 22.705255 ], [ 55.008545, 22.492257 ], [ 51.998291, 22.998852 ], [ 51.613770, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.016362 ], [ 52.580566, 24.176825 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.796708 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.664710 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.478482 ], [ 57.821045, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.656738, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 20.004322 ], [ 55.667725, 22.004175 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.799561, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.480713, 26.313113 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.426187 ], [ 49.724121, 11.576907 ], [ 50.262451, 11.684514 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } +{ "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": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.554443, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 73.948975, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.063944 ], [ 71.542969, 37.909534 ], [ 71.235352, 37.952861 ], [ 71.345215, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.191895, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.160476 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } , @@ -1045,18 +1051,18 @@ , { "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": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.824951, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.519775, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.172594 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.722986 ], [ 60.930176, 52.449314 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.548344 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.711670, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.644768 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.666036 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.787580 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.755080 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.964463 ], [ 79.145508, 42.859860 ], [ 79.639893, 42.496403 ], [ 80.255127, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.839600, 42.843751 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.755080 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.014799 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } @@ -1095,10 +1101,10 @@ , { "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.852051, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.390625, 0.878872 ], [ 110.852051, 0.878872 ] ] ] } } , +{ "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.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } , { "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": [ [ [ 132.352295, -11.124507 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.505371, -14.997852 ], [ 135.878906, -15.262989 ], [ 135.878906, -34.831841 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.088135, -32.851903 ], [ 134.274902, -32.620870 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.330566, -31.494262 ], [ 129.539795, -31.587894 ], [ 128.243408, -31.952162 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.222412, -32.962586 ], [ 124.024658, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.816162, -33.916013 ], [ 122.178955, -34.007135 ], [ 121.300049, -33.824794 ], [ 120.574951, -33.934245 ], [ 119.893799, -33.979809 ], [ 119.300537, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.509521, -34.750640 ], [ 118.026123, -35.065973 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.565186, -34.388779 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.718994, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.806885, -32.203505 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.806174 ], [ 114.620361, -28.516969 ], [ 114.169922, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.939209, -25.908644 ], [ 114.235840, -26.303264 ], [ 114.213867, -25.790000 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.686952 ], [ 113.389893, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.741455, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.830907 ], [ 115.455322, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.707764, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.234863, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.992920, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.973349 ], [ 120.860596, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.330683 ], [ 124.376221, -15.570128 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.364258, -14.870469 ], [ 128.990479, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.424040 ], [ 129.891357, -13.613956 ], [ 130.341797, -13.357554 ], [ 130.187988, -13.111580 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.737061, -12.307802 ], [ 132.572021, -12.114523 ], [ 132.561035, -11.598432 ], [ 131.824951, -11.275387 ], [ 132.352295, -11.124507 ] ] ] } } @@ -1117,17 +1123,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.751608 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.190035 ], [ 98.964844, 19.756364 ], [ 98.250732, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.836090 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.827412 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.658447, 19.725342 ], [ 93.076172, 19.859727 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.647705, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.088473 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.265682 ], [ 97.910156, 28.333395 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } -, -{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.677848 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.446622 ], [ 104.721680, 17.424029 ], [ 103.952637, 18.239786 ], [ 103.205566, 18.312811 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.466592 ], [ 100.601807, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.710205, 20.694462 ], [ 105.886230, 19.756364 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.269665 ], [ 104.183350, 19.621892 ], [ 104.820557, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.677848 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.601807, 19.508020 ], [ 101.282959, 19.466592 ], [ 101.041260, 18.406655 ], [ 101.063232, 17.507867 ], [ 102.117920, 18.104087 ], [ 102.414551, 17.936929 ], [ 102.996826, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.239786 ], [ 104.721680, 17.424029 ], [ 104.776611, 16.446622 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.651058 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.410994 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.217529, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.860985 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 99.041748, 10.962764 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.827412 ], [ 98.426514, 14.626109 ], [ 98.195801, 15.125159 ], [ 98.536377, 15.305380 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.836090 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.800293, 18.625425 ], [ 98.250732, 19.704658 ], [ 98.964844, 19.756364 ], [ 99.547119, 20.190035 ], [ 100.118408, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.173425 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.451959 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.125244, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.425293, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.568359, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.710205, 20.694462 ], [ 105.886230, 19.756364 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.205078, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.269665 ], [ 104.183350, 19.621892 ], [ 104.820557, 19.890723 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.677848 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.772461, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , @@ -1137,7 +1139,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.455322, 5.451959 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.904887 ], [ 115.455322, 5.451959 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.152727 ], [ 134.769287, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.125244, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.173425 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.451959 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.125244, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.425293, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.568359, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.826416, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.267414 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.275030 ], [ 120.992432, 14.530415 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.169189, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +, +{ "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": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.882568, 1.307260 ], [ 121.662598, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.682861, 1.131518 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.144531, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.173425 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , @@ -1273,7 +1279,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "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": "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "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.060547, 58.896134 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.896134 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } @@ -1537,8 +1543,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.776245, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.997852 ], [ -83.490601, 15.013769 ], [ -83.627930, 14.881087 ], [ -83.973999, 14.748323 ], [ -84.226685, 14.748323 ], [ -84.451904, 14.620794 ], [ -84.649658, 14.668626 ], [ -84.819946, 14.817371 ], [ -84.924316, 14.790817 ], [ -85.050659, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.512085, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.094360, 14.040673 ], [ -86.314087, 13.768731 ], [ -86.522827, 13.779402 ], [ -86.753540, 13.752725 ], [ -86.731567, 13.261333 ], [ -86.879883, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.843414 ], [ -88.538818, 13.982046 ], [ -88.840942, 14.141902 ], [ -89.060669, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } @@ -1549,14 +1553,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.318026 ], [ -71.707764, 18.046644 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.449097, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.103648 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.102322 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.438354, 8.407168 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.229614, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.775948 ], [ -71.361694, 11.539234 ], [ -71.949463, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.377724 ], [ -70.296021, 11.845847 ], [ -69.944458, 12.162856 ] ] ] } } @@ -1605,17 +1611,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 75.969558 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } -, { "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": [ [ [ [ -90.439453, 80.635422 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.635422 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.087440 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } ] } ] } , @@ -1651,9 +1657,9 @@ , { "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": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } -, { "type": "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.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -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.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.759155, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , @@ -1673,10 +1679,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } , +{ "type": "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": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , { "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.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } @@ -1725,17 +1731,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } -, { "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": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.127004 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.045647 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } -, { "type": "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": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } +, +{ "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": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , @@ -1747,17 +1753,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } -, { "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": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.540928 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.104048 ], [ -67.428589, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.357916 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } -, { "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": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } +, +{ "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": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } ] } ] } , @@ -1851,37 +1857,37 @@ , { "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } -, { "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.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "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": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.005904 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.486938, 7.395153 ], [ -8.388062, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.195168 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.976074, 4.357366 ], [ -9.003296, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.395153 ], [ -10.695190, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.439453, 11.005904 ], [ 0.439453, 8.857934 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , @@ -1891,24 +1897,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.631077 ], [ -7.097168, 39.031986 ], [ -7.371826, 38.371809 ], [ -7.031250, 38.074041 ], [ -7.168579, 37.805444 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.099003 ], [ -7.855225, 36.840065 ], [ -8.382568, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.653383 ], [ -8.838501, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.860474, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "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": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.805542, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.992310, 41.541478 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } @@ -1987,16 +1993,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.814331, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.814331, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } +{ "type": "Feature", "properties": { "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": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , -{ "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } , +{ "type": "Feature", "properties": { "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": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.814331, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } @@ -2009,34 +2015,34 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.075459 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.918457, 21.943046 ], [ 18.072510, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } , +{ "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.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +, { "type": "Feature", "properties": { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -2049,9 +2055,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.533447, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.533447, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , @@ -2059,6 +2063,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.579221 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } @@ -2071,43 +2077,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.459195 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } , { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } @@ -2119,10 +2127,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.203369, 56.337856 ] ] ] } } @@ -2177,19 +2185,19 @@ , { "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": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } -, { "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.860352, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.860352, -21.534847 ] ] ] } } , { "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.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.860352, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , { "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": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } +, +{ "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -2199,10 +2207,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } -, { "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": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , +{ "type": "Feature", "properties": { "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.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.915611 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.290039 ], [ 29.256592, -2.213195 ], [ 29.289551, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] } } @@ -2213,18 +2221,18 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } , { "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": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } -, { "type": "Feature", "properties": { "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": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +, { "type": "Feature", "properties": { "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.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } ] } ] } @@ -2233,14 +2241,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } @@ -2249,14 +2259,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } +, { "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": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } @@ -2267,14 +2275,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "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": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.933228, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.933228, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } @@ -2283,17 +2291,19 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.784217 ], [ 35.397949, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.756196 ], [ 34.974976, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } , @@ -2301,8 +2311,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } @@ -2315,6 +2323,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.285723 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } @@ -2325,20 +2335,18 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } @@ -2355,10 +2363,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } @@ -2445,9 +2453,9 @@ , { "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.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.944092, 11.393879 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , @@ -2459,35 +2467,35 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.884450 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.926295 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.206299, 22.710323 ], [ 55.008545, 22.497332 ], [ 51.998291, 22.998852 ], [ 51.619263, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.021379 ], [ 52.575073, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.437012, 25.438314 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.926295 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.206299, 22.710323 ], [ 55.008545, 22.497332 ], [ 51.998291, 22.998852 ], [ 51.619263, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.021379 ], [ 52.575073, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.437012, 25.438314 ], [ 56.068726, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } ] } ] } , @@ -2501,11 +2509,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.936610 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -2581,20 +2589,20 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , { "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": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.463514 ], [ 83.897095, 29.319931 ], [ 84.232178, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.416470 ], [ 87.225952, 26.396790 ], [ 86.022949, 26.632729 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.366889 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.524048, 30.424993 ] ] ] } } , { "type": "Feature", "properties": { "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": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } @@ -2609,12 +2617,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } -, { "type": "Feature", "properties": { "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": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } @@ -2687,17 +2695,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } -, -{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.573608, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , @@ -2803,15 +2811,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "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": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "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": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , @@ -3767,8 +3775,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } @@ -3778,6 +3784,8 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } ] } ] } , @@ -4059,25 +4067,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } -, { "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": [ [ [ -77.898560, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.898560, 76.890745 ] ] ] } } +, +{ "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": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "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": "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } -, { "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": [ [ [ [ -78.969727, 77.379306 ], [ -78.969727, 79.212538 ], [ -75.693054, 79.212538 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -76.220398, 79.019097 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379306 ] ] ], [ [ [ -78.969727, 76.998081 ], [ -78.750000, 77.003024 ], [ -77.909546, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998081 ] ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.421246 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162043 ], [ -67.280273, 79.190925 ], [ -67.280273, 77.407481 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } -, { "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": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.047597 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.899800 ], [ -69.469299, 80.616633 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.633945 ], [ -73.880310, 79.430356 ], [ -76.907043, 79.323013 ], [ -75.528259, 79.197619 ], [ -75.632629, 79.171335 ], [ -75.791931, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.358376 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } ] } ] } , @@ -4159,9 +4167,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "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": "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } +, +{ "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": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } ] } ] } , @@ -4171,10 +4179,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "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": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.583618, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , { "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.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.811631 ], [ -67.107239, -22.735657 ] ] ] } } @@ -4275,17 +4283,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } -, { "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": [ [ [ -66.975403, 81.127169 ], [ -67.104492, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.931889 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.358376 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } -, { "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": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628514 ], [ -61.894226, 82.361644 ], [ -64.333191, 81.927816 ], [ -66.752930, 81.725164 ], [ -67.500000, 81.540928 ], [ -67.656555, 81.501241 ], [ -67.500000, 81.501646 ], [ -65.481262, 81.506516 ], [ -67.104492, 81.093214 ], [ -67.236328, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } +, +{ "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": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.478760, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } ] } ] } , @@ -4337,10 +4345,10 @@ { "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": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.709412, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.036961 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.088185 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } ] } ] } @@ -4677,30 +4685,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } -, { "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.035278, 22.146708 ], [ -13.010559, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , -{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "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": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +, +{ "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } -, { "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": [ [ [ -11.030273, 26.929416 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.920996 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.375035 ], [ -12.873230, 23.284242 ], [ -13.117676, 22.771117 ], [ -13.010559, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.499695, 24.769278 ], [ -12.030029, 26.029638 ], [ -11.716919, 26.103654 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -11.030273, 26.929416 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.719496 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.250000, 28.529036 ], [ -11.030273, 28.719496 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.933347 ], [ -11.250000, 25.920996 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.010559, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.873230, 23.284242 ], [ -11.936646, 23.375035 ], [ -11.969604, 25.933347 ] ] ] } } ] } ] } @@ -4799,52 +4807,52 @@ , { "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } , +{ "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.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Côte d'Ivoire", "name_long": "Côte d'Ivoire", "brk_a3": "CIV", "brk_name": "Côte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Côte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "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": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } +{ "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } -, { "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": [ [ [ -8.665466, 27.656771 ], [ -8.665466, 27.588632 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.920996 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.698999 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.902477 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.860830 ], [ -9.736633, 26.860830 ], [ -9.412537, 27.088473 ], [ -8.794556, 27.120257 ], [ -8.816528, 27.656771 ], [ -8.665466, 27.656771 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.793907 ], [ -4.924622, 24.973610 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.588632 ], [ -8.673706, 28.842268 ], [ -7.058716, 29.578234 ], [ -6.061707, 29.730992 ], [ -5.243225, 30.000138 ], [ -4.858704, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.637014 ], [ -3.067932, 31.723495 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -2.274170, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } @@ -4873,10 +4881,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.059388 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.867105 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.259752 ], [ -8.561096, 51.669148 ], [ -9.978333, 51.820500 ], [ -9.165344, 52.864156 ], [ -9.687195, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.572327, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.276711 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.622253, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.900838 ], [ -2.485657, 48.777913 ], [ -4.034729, 48.777913 ], [ -3.295898, 48.900838 ] ] ], [ [ [ -1.653442, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.775943 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.680070 ], [ 0.219727, 49.754654 ], [ 0.219727, 48.777913 ], [ -1.653442, 48.777913 ] ] ] ] } } ] } ] } @@ -4937,9 +4945,9 @@ , { "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } +, +{ "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.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } ] } ] } , @@ -4947,18 +4955,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.376038, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.219727, 11.059821 ], [ -0.219727, 11.393879 ], [ 1.376038, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } +, { "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, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.129639, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } @@ -4969,16 +4977,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } ] } @@ -5015,12 +5023,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.533893 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.209655 ], [ 9.404297, 40.979898 ], [ 9.544373, 40.813809 ], [ 8.215027, 40.813809 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.209655 ] ] ], [ [ [ 11.469727, 46.995241 ], [ 11.469727, 42.159332 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 10.511169, 42.932296 ], [ 10.200806, 43.919659 ], [ 9.703674, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.429260, 44.231425 ], [ 7.849731, 43.767127 ], [ 7.434998, 43.693694 ], [ 7.550354, 44.127028 ], [ 7.006531, 44.255036 ], [ 6.751099, 45.028892 ], [ 7.097168, 45.332840 ], [ 6.803284, 45.708097 ], [ 6.844482, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.162712 ], [ 8.489685, 46.004593 ], [ 8.967590, 46.037016 ], [ 9.181824, 46.439750 ], [ 9.923401, 46.314687 ], [ 10.362854, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 11.469727, 46.995241 ] ] ] ] } } @@ -5031,17 +5039,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } ] } ] } , @@ -5049,9 +5057,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.147769 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } ] } ] } , @@ -5141,10 +5149,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.719727, -11.011297 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.633552 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.931702 ], [ 18.956909, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.210815, -17.353260 ], [ 14.059753, -17.424029 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.216797, -17.111918 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.794896 ], [ 12.123413, -14.878433 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.738647, -13.138328 ], [ 13.312683, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.708191, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } , -{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } -, { "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": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.059753, -17.424029 ], [ 14.210815, -17.353260 ], [ 18.262024, -17.308688 ], [ 18.956909, -17.787920 ], [ 21.376648, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.633552 ], [ 22.719727, -17.978733 ], [ 22.500000, -18.028363 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.252828 ], [ 20.882263, -21.813058 ], [ 19.896240, -21.848753 ], [ 19.896240, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.673626 ], [ 12.609558, -19.046541 ], [ 11.793823, -18.070146 ], [ 11.733398, -17.300821 ], [ 12.216797, -17.111918 ], [ 12.812805, -16.941215 ] ] ] } } , +{ "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": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.978733 ], [ 22.719727, -22.146708 ], [ 19.896240, -22.146708 ], [ 19.896240, -21.848753 ], [ 20.882263, -21.813058 ], [ 20.909729, -18.252828 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.028363 ], [ 22.719727, -17.978733 ] ] ] } } @@ -5153,10 +5161,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } , +{ "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": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.933655, -7.596663 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } , { "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": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.795105, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } @@ -5167,18 +5175,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , { "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.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "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": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } -, { "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": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -5191,12 +5199,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.938660, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } @@ -5221,12 +5229,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.831272 ], [ 11.030273, 37.088049 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.831272 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.131431 ], [ 11.030273, 33.440609 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.131431 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.830322, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.830322, 31.765537 ] ] ] ] } } ] } ] } @@ -5237,56 +5245,56 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "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": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.427307, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.030665 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.759501 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } @@ -5303,10 +5311,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.447733 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.325675 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.030622 ], [ 22.200623, 56.337856 ] ] ] } } @@ -5407,17 +5415,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } -, { "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.668091, -21.739091 ], [ 31.478577, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.660095, -22.151796 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.668091, -21.739091 ] ] ] } } , { "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": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.926295 ], [ 33.750000, -25.025884 ], [ 33.013916, -25.356437 ], [ 32.574463, -25.728158 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.217055 ], [ 32.829895, -26.743158 ], [ 32.071838, -26.733346 ], [ 31.986694, -26.290953 ], [ 31.838379, -25.844393 ], [ 31.753235, -25.485431 ], [ 31.931763, -24.369615 ], [ 31.670837, -23.659619 ], [ 31.190186, -22.250971 ], [ 31.478577, -21.943046 ], [ 31.668091, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.029638 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } +, +{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.290953 ], [ 32.071838, -26.733346 ], [ 31.868591, -27.178912 ], [ 31.283569, -27.286367 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.399250 ], [ 30.948486, -26.022234 ], [ 31.044617, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.168701, -31.952162 ], [ 28.962708, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.029638 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "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": [ [ [ 28.542480, -28.647210 ], [ 28.979187, -28.955282 ], [ 29.325256, -29.257649 ], [ 29.017639, -29.742917 ], [ 28.847351, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.545704 ], [ 27.748718, -30.645001 ], [ 26.998901, -29.876374 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.851891 ], [ 28.542480, -28.647210 ] ] ] } } ] } ] } , @@ -5425,19 +5433,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.837830, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.925476, -10.962764 ], [ 23.996887, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.192388 ], [ 23.930969, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.902844 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.557227 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.557227 ] ] ] ] } } , -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } -, { "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": [ [ [ 24.032593, -17.295576 ], [ 24.683533, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.084534, -17.662343 ], [ 24.521484, -17.887273 ], [ 24.216614, -17.889887 ], [ 23.579407, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.028363 ], [ 22.280273, -18.077979 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.219910, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.925476, -10.962764 ], [ 24.257812, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } , { "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": [ [ [ 30.275574, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.852112, -16.320139 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.478577, -21.943046 ], [ 31.289062, -22.146708 ], [ 29.965210, -22.146708 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.639558 ], [ 28.020630, -21.486297 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.850830, -18.713894 ], [ 25.650330, -18.536909 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.707764, -17.960445 ], [ 27.045593, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.468323, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.043174 ], [ 29.517517, -15.644197 ], [ 30.275574, -15.506619 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +, { "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": [ [ [ 33.214417, -13.971385 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.392118 ], [ 33.969727, -22.146708 ], [ 31.289062, -22.146708 ], [ 31.478577, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.654114, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.852112, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.275574, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.214417, -13.971385 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -10.962764 ], [ 33.969727, -14.392118 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.214417, -13.971385 ], [ 32.687073, -13.712704 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.115540, -11.606503 ], [ 33.219910, -11.178402 ], [ 33.274841, -10.962764 ], [ 33.969727, -10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } , { "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.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 29.965210, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.432373, -22.090730 ] ] ] } } ] } @@ -5459,24 +5467,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "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": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.037003 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +, { "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": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } @@ -5489,12 +5497,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } @@ -5533,21 +5541,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.944946, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.101257, 43.741336 ], [ 25.567932, 43.687736 ], [ 26.065063, 43.943395 ], [ 27.243347, 44.176295 ], [ 27.971191, 43.812729 ], [ 28.558960, 43.707594 ], [ 28.039856, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.995911, 42.006448 ], [ 27.136230, 42.141005 ], [ 26.117249, 41.826595 ], [ 26.106262, 41.329389 ], [ 25.197144, 41.234446 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.308761 ], [ 22.953186, 41.337638 ], [ 22.881775, 41.998284 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.986145, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } ] } @@ -5575,10 +5583,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.091553, 61.710706 ], [ 29.915771, 61.606396 ], [ 28.070068, 60.503230 ], [ 26.254578, 60.423343 ], [ 24.496765, 60.057987 ], [ 22.870789, 59.846195 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.280273, 60.394862 ], [ 22.280273, 61.710706 ], [ 30.091553, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.078552, 55.776573 ], [ 26.630859, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.177185, 56.168494 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.838867, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.456848, 55.652798 ], [ 26.630859, 55.652798 ], [ 27.078552, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.177185, 56.168494 ] ] ] } } @@ -5687,10 +5695,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 39.336548, -10.962764 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.471619, -11.568835 ], [ 36.773987, -11.595741 ], [ 36.513062, -11.722167 ], [ 35.312805, -11.439647 ], [ 34.560242, -11.520396 ], [ 34.488831, -11.178402 ], [ 34.444885, -10.962764 ], [ 39.336548, -10.962764 ] ] ] } } , -{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.444885, -10.962764 ], [ 34.488831, -11.178402 ], [ 34.560242, -11.520396 ], [ 34.280090, -12.280966 ], [ 34.560242, -13.579251 ], [ 34.906311, -13.565902 ], [ 35.268860, -13.888745 ], [ 35.686340, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.340271, -16.106514 ], [ 35.032654, -16.801912 ], [ 34.381714, -16.183024 ], [ 34.307556, -15.477504 ], [ 34.516296, -15.013769 ], [ 34.458618, -14.612821 ], [ 34.065857, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.750000, -14.418720 ], [ 33.530273, -14.235100 ], [ 33.530273, -10.962764 ], [ 34.444885, -10.962764 ] ] ] } } , +{ "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": [ [ [ 40.470886, -10.962764 ], [ 40.462646, -11.178402 ], [ 40.437927, -11.762504 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.203151 ], [ 40.775757, -14.692538 ], [ 40.476379, -15.406024 ], [ 40.089111, -16.101237 ], [ 39.451904, -16.720385 ], [ 38.537292, -17.101417 ], [ 37.411194, -17.586431 ], [ 36.282349, -18.659257 ], [ 35.897827, -18.841314 ], [ 35.197449, -19.552026 ], [ 34.785461, -19.784796 ], [ 34.703064, -20.496492 ], [ 35.175476, -21.253542 ], [ 35.373230, -21.841105 ], [ 35.378723, -21.943046 ], [ 35.386963, -22.139076 ], [ 35.562744, -22.090730 ], [ 35.559998, -22.146708 ], [ 33.530273, -22.146708 ], [ 33.530273, -14.235100 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 34.065857, -14.360191 ], [ 34.458618, -14.612821 ], [ 34.516296, -15.013769 ], [ 34.307556, -15.477504 ], [ 34.381714, -16.183024 ], [ 35.032654, -16.801912 ], [ 35.340271, -16.106514 ], [ 35.771484, -15.897942 ], [ 35.686340, -14.610163 ], [ 35.268860, -13.888745 ], [ 34.906311, -13.565902 ], [ 34.560242, -13.579251 ], [ 34.280090, -12.280966 ], [ 34.560242, -11.520396 ], [ 35.312805, -11.439647 ], [ 36.513062, -11.722167 ], [ 36.773987, -11.595741 ], [ 37.471619, -11.568835 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.336548, -10.962764 ], [ 40.470886, -10.962764 ] ] ] } } +, { "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": [ [ [ 45.219727, -16.077486 ], [ 45.219727, -22.146708 ], [ 43.264160, -22.146708 ], [ 43.253174, -22.057642 ], [ 43.283386, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.893127, -21.163923 ], [ 43.895874, -20.830577 ], [ 44.373779, -20.071411 ], [ 44.464417, -19.435514 ], [ 44.233704, -18.960844 ], [ 44.044189, -18.331062 ], [ 43.961792, -17.410925 ], [ 44.313354, -16.849234 ], [ 44.445190, -16.217312 ], [ 44.945068, -16.180386 ], [ 45.000000, -16.159283 ], [ 45.219727, -16.077486 ] ] ] } } ] } ] } @@ -5703,11 +5711,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": [ [ [ 33.903809, -0.950274 ], [ 34.071350, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.768250, -3.677892 ], [ 39.201965, -4.677717 ], [ 38.740540, -5.908385 ], [ 38.800964, -6.476338 ], [ 39.440918, -6.839170 ], [ 39.471130, -7.100893 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.485955 ], [ 39.537048, -9.112945 ], [ 39.949036, -10.098670 ], [ 40.317078, -10.317621 ], [ 39.520569, -10.898042 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.680359, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.280090, -10.160857 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.378612 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } , { "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": [ [ [ 40.317078, -10.317621 ], [ 40.479126, -10.765858 ], [ 40.462646, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.680359, -11.393879 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.520569, -10.898042 ], [ 40.317078, -10.317621 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } ] } ] } , @@ -5715,16 +5723,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.908830 ], [ 34.258118, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.530273, 10.471607 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 34.620667, 4.847417 ], [ 35.299072, 5.506640 ] ] ] } } @@ -5753,18 +5761,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "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": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } ] } ] } @@ -5779,22 +5787,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.665894, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } @@ -5919,9 +5927,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "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": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.703214 ], [ 46.947327, 7.996677 ], [ 47.790527, 8.002117 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 44.780273, 4.995186 ], [ 44.780273, 8.784654 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.790527, 8.002117 ], [ 46.947327, 7.996677 ], [ 45.000000, 8.703214 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.557556, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.677673, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.042480, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.526919 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } ] } ] } , @@ -5933,9 +5941,9 @@ , { "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": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.046644 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.042480, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.941345, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , @@ -5943,17 +5951,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 47.559814, 32.138409 ], [ 47.686157, 31.952162 ], [ 47.848206, 31.709476 ], [ 47.686157, 30.984673 ], [ 48.004761, 30.984673 ], [ 48.015747, 30.453409 ], [ 48.567810, 29.926374 ], [ 47.974548, 29.976349 ], [ 47.301636, 30.059586 ], [ 46.568298, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.780273, 29.176145 ], [ 44.780273, 32.138409 ], [ 47.559814, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.239229 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5965,10 +5973,10 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.811730 ], [ 45.359802, 40.561808 ], [ 45.892639, 40.218733 ], [ 45.609741, 39.899202 ], [ 46.035461, 39.628961 ], [ 46.483154, 39.463764 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.319425 ], [ 45.738831, 39.474365 ], [ 45.299377, 39.472245 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "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": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.686157, 31.952162 ], [ 47.812500, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.207764, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.906372, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.207764, 41.145570 ] ] ], [ [ [ 45.000000, 39.738874 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.458679, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.582407 ], [ 48.356323, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.883667, 38.320111 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.841980, 36.873029 ], [ 52.264709, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.511169, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.812500, 31.765537 ], [ 47.686157, 31.952162 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.092945 ], [ 46.076660, 35.677379 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.155939 ], [ 44.780273, 39.707187 ], [ 44.794006, 39.713525 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.500427, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } @@ -5985,11 +5993,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.557556, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.157349, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } ] } ] } , @@ -6099,15 +6107,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "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": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } +, +{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.395847 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.395847 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.395847 ] ] ] } } -, -{ "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": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } ] } ] } , @@ -6115,13 +6123,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.049052 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } ] } @@ -6131,9 +6139,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } ] } ] } , @@ -6255,10 +6263,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , +{ "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": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } , { "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": [ [ [ 78.579712, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } @@ -6267,32 +6275,32 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , { "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": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } -, { "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": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.521342 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "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": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "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": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } @@ -6437,10 +6445,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } +, { "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": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.767022 ], [ 88.854675, 48.068903 ], [ 88.014221, 48.600225 ], [ 87.893372, 48.922499 ], [ 87.838440, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } @@ -6555,9 +6563,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.681702, 11.393879 ], [ 99.602051, 11.178402 ], [ 99.154358, 9.963440 ], [ 99.223022, 9.240382 ], [ 99.873962, 9.207849 ], [ 100.280457, 8.295752 ], [ 100.458984, 7.430560 ], [ 101.016541, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.469727, 6.770989 ], [ 101.469727, 5.747174 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.258484, 6.642783 ], [ 100.085449, 6.465422 ], [ 99.689941, 6.847351 ], [ 99.519653, 7.343399 ], [ 98.989563, 7.906912 ], [ 98.503418, 8.382714 ], [ 98.338623, 7.795357 ], [ 98.149109, 8.350106 ], [ 98.258972, 8.974610 ], [ 98.552856, 9.933682 ], [ 99.039001, 10.960068 ], [ 99.165344, 11.178402 ], [ 99.294434, 11.393879 ], [ 99.681702, 11.393879 ] ] ] } } , -{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.258484, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.469727, 5.747174 ], [ 101.469727, 2.707122 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 100.695190, 3.938240 ], [ 100.557861, 4.768047 ], [ 100.198059, 5.312501 ], [ 100.305176, 6.039505 ], [ 100.085449, 6.465422 ], [ 100.258484, 6.642783 ] ] ] } } +, +{ "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": [ [ [ 95.292664, 5.479300 ], [ 95.938110, 5.438288 ], [ 97.484436, 5.246863 ], [ 98.368835, 4.269724 ], [ 99.143372, 3.590178 ], [ 99.692688, 3.173425 ], [ 100.640259, 2.100664 ], [ 101.250000, 2.089685 ], [ 101.469727, 2.086941 ], [ 101.469727, -0.219726 ], [ 99.687195, -0.219726 ], [ 99.456482, 0.000000 ], [ 99.264221, 0.184021 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.698669, 2.451949 ], [ 97.176819, 3.307792 ], [ 96.424255, 3.869735 ], [ 95.380554, 4.970560 ], [ 95.292664, 5.479300 ] ] ] } } ] } ] } , @@ -6571,9 +6579,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } ] } ] } , @@ -6725,13 +6733,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.810024 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.227934 ], [ 101.030273, 6.855532 ] ] ] } } , -{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.855286, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 107.221069, 10.363555 ], [ 106.405334, 9.530332 ], [ 105.158386, 8.600032 ], [ 104.795837, 9.240382 ], [ 105.075989, 9.917449 ], [ 104.334412, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.855286, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.472006 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 111.796875, 0.903588 ], [ 111.159668, 0.977736 ], [ 110.514221, 0.771766 ], [ 109.830322, 1.337464 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.371155, 2.696148 ], [ 111.796875, 2.885437 ], [ 112.500000, 3.011613 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.227934 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.810024 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.126900 ], [ 102.961121, 5.525777 ], [ 103.381348, 4.855628 ], [ 103.439026, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.230042, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.573853, 1.966167 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 101.030273, 3.551800 ], [ 101.030273, 6.227934 ] ] ] ] } } +, +{ "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": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } ] } ] } , @@ -6741,13 +6749,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.151123, 21.848753 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } ] } ] } , @@ -6907,13 +6915,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "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": "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.934606 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.110046, 11.393879 ] ] ] ] } } +, +{ "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": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } , @@ -7073,9 +7081,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 27, "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": "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.411682, 9.760491 ], [ 126.221924, 9.286465 ], [ 126.307068, 8.781940 ], [ 126.375732, 8.415319 ], [ 126.477356, 7.749094 ], [ 126.537781, 7.188101 ], [ 126.197205, 6.274348 ], [ 125.831909, 7.294363 ], [ 125.364990, 6.787353 ], [ 125.683594, 6.050430 ], [ 125.395203, 5.580451 ], [ 124.219666, 6.162401 ], [ 123.939514, 6.885527 ], [ 124.244385, 7.359743 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.530273, 7.727322 ], [ 123.530273, 8.638049 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 124.601440, 8.513119 ], [ 124.763489, 8.961045 ], [ 125.472107, 8.988175 ], [ 125.411682, 9.760491 ] ] ], [ [ [ 125.697327, 11.393879 ], [ 125.749512, 11.178402 ], [ 125.782471, 11.046343 ], [ 125.397949, 11.178402 ], [ 125.010681, 11.310401 ], [ 125.018921, 11.178402 ], [ 125.032654, 10.976246 ], [ 125.277100, 10.358151 ], [ 124.801941, 10.133821 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.889951 ], [ 124.384460, 11.178402 ], [ 124.329529, 11.393879 ], [ 125.697327, 11.393879 ] ] ], [ [ [ 124.076843, 11.232286 ], [ 124.071350, 11.178402 ], [ 123.983459, 10.279789 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.530273, 9.763198 ], [ 123.530273, 10.517518 ], [ 123.750000, 10.806328 ], [ 124.035645, 11.178402 ], [ 124.076843, 11.232286 ] ] ] ] } } +, +{ "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": [ [ [ [ 127.933044, 2.174771 ], [ 128.004456, 1.628504 ], [ 128.594971, 1.540647 ], [ 128.688354, 1.131518 ], [ 128.636169, 0.258178 ], [ 128.119812, 0.357053 ], [ 128.031921, 0.000000 ], [ 127.976990, -0.219726 ], [ 127.685852, -0.219726 ], [ 127.633667, 0.000000 ], [ 127.400208, 1.010690 ], [ 127.600708, 1.809697 ], [ 127.933044, 2.174771 ] ] ], [ [ [ 125.065613, 1.642231 ], [ 125.241394, 1.419838 ], [ 124.436646, 0.428463 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 123.530273, 0.266417 ], [ 123.530273, 0.898096 ], [ 123.750000, 0.906334 ], [ 124.076843, 0.917319 ], [ 125.065613, 1.642231 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index 464ba92b9..00631a8d1 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -1395,7 +1395,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } @@ -2267,7 +2267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index efe6c2eaa..503be4d29 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -821,7 +821,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index a375ac3ee..b252a7922 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -2236,7 +2236,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json index eae0baec6..66c696890 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json @@ -1398,7 +1398,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } @@ -2270,7 +2270,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json index a7c981bbe..03e15cfdb 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json @@ -1395,7 +1395,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } @@ -2267,7 +2267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json index 4cada38f5..7ddd2c670 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json @@ -1395,7 +1395,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } @@ -2267,7 +2267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json index 5c185e560..6c83885b8 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json @@ -1395,7 +1395,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.000150 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.000150 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -140.822754, 59.728716 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.000150 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -140.822754, 59.728716 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } @@ -2267,7 +2267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.898971 ], [ -157.060547, 56.812908 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.520752, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.060547, 58.898971 ] ] ], [ [ [ -157.060547, 58.913156 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.767456, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.668823, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.913156 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -174.995728, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.396973, 66.513260 ], [ -174.451904, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.439453, 64.825581 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json index d8255da2c..d132d4091 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json @@ -1149,7 +1149,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } ] } ] } , @@ -1591,7 +1591,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json index 2577ac4a5..28447ba0d 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json @@ -1399,7 +1399,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.516113, 70.192550 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.499918 ], [ -90.549316, 68.475895 ], [ -89.208984, 69.260040 ], [ -88.011475, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.660905 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.958008, 68.134760 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.153076, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.625244, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.757568, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.889893, 57.284981 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.353271, 55.241552 ], [ -82.265625, 55.147488 ], [ -82.430420, 54.278055 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.529251 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.279785, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.642822, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.866883 ], [ -64.577637, 60.332386 ], [ -63.797607, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.151123, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.987747 ], [ -64.467773, 46.233053 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.002734 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.115723, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.442950 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.653076, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.311279, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.460894 ], [ -79.002686, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.891846, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.989329 ], [ -83.616943, 46.111326 ], [ -83.891602, 46.111326 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.004625 ], [ -90.823975, 48.268569 ], [ -91.636963, 48.136767 ], [ -92.603760, 48.451066 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.152588, 48.994636 ], [ -122.969971, 49.001844 ], [ -124.903564, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.430420, 50.826758 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.122314, 52.756243 ], [ -129.298096, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.528564, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.912273 ], [ -131.704102, 56.553428 ], [ -132.725830, 57.692406 ], [ -133.352051, 58.407468 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.714298 ], [ -139.119873, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.314440 ], [ -134.406738, 69.626510 ], [ -132.923584, 69.507612 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.196272 ], [ -129.100342, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.133545, 70.484566 ], [ -127.441406, 70.377854 ], [ -125.749512, 69.480672 ], [ -124.420166, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.057861, 69.565226 ], [ -122.684326, 69.854762 ], [ -121.464844, 69.797930 ], [ -119.937744, 69.380313 ], [ -117.597656, 69.013546 ], [ -116.224365, 68.843700 ], [ -115.246582, 68.907051 ], [ -113.895264, 68.399180 ], [ -115.301514, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.940186, 67.982873 ], [ -108.874512, 67.382150 ], [ -107.786865, 67.887951 ], [ -108.808594, 68.314087 ], [ -108.160400, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.337158, 68.019910 ], [ -103.216553, 68.097907 ], [ -101.447754, 67.646855 ], [ -99.898682, 67.805095 ], [ -98.437500, 67.784335 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.580453 ], [ -96.119385, 68.240896 ], [ -96.119385, 67.293256 ], [ -95.482178, 68.089709 ], [ -94.680176, 68.065098 ], [ -94.229736, 69.068563 ], [ -95.306396, 69.687618 ], [ -96.470947, 70.091788 ], [ -96.383057, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.155241 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.354004, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.437857 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.243408, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.243408, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.583897 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.788330, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.778076, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.514404, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.953857, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.393066, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.283203, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.894248 ], [ -58.798828, 48.246626 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.282535 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.152100, 69.862328 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.262207, 68.756296 ], [ -97.613525, 69.060712 ], [ -98.426514, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.909912, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.158936, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.434082, 72.955095 ], [ -111.049805, 72.452104 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.182373, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.391113, 73.089829 ], [ -107.512207, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.458008, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.975342, 70.024341 ], [ -101.085205, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.425537, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.182089 ], [ -107.116699, 69.119527 ], [ -108.995361, 68.780168 ], [ -111.533203, 68.632551 ], [ -113.312988, 68.536276 ], [ -113.851318, 69.009611 ], [ -115.213623, 69.279484 ], [ -116.103516, 69.170373 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.125732, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.412109, 70.366783 ], [ -114.345703, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.652588, 71.297270 ], [ -119.399414, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.861328, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.057861, 73.652545 ], [ -76.333008, 73.102607 ], [ -76.245117, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.744522 ], [ -79.771729, 72.803086 ], [ -80.870361, 73.334161 ], [ -80.826416, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.842041, 82.628514 ], [ -61.885986, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.234863, 79.633945 ], [ -73.872070, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.184088 ], [ -77.882080, 77.899558 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.985098 ], [ -77.904053, 77.022159 ], [ -77.882080, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.593994, 76.421713 ], [ -89.483643, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.253174, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.089111, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.923828, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.254150, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.130809 ], [ -76.245117, 83.172729 ], [ -75.717773, 83.064796 ], [ -72.828369, 83.233838 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.332467 ], [ -72.235107, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.961670, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.082520, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.006104, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.015625, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.675619 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.486084, 69.873672 ], [ -81.298828, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.505615, 70.761586 ], [ -88.461914, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.197754, 72.235514 ], [ -89.428711, 73.131322 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.353271, 50.771208 ], [ -127.309570, 50.548344 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.296358 ], [ -124.914551, 49.475263 ], [ -123.914795, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.650635, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.534380 ], [ -128.353271, 50.771208 ] ] ], [ [ [ -92.406006, 81.258372 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.040526 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.944092, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.142090, 79.379856 ], [ -94.965820, 79.373780 ], [ -96.075439, 79.704870 ], [ -96.701660, 80.158078 ], [ -96.009521, 80.602293 ], [ -95.317383, 80.907616 ], [ -94.295654, 80.978522 ], [ -94.735107, 81.206460 ], [ -92.406006, 81.258372 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.798096, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.680176, 77.098423 ], [ -93.570557, 76.778142 ], [ -91.604004, 76.778142 ], [ -90.736084, 76.450056 ], [ -90.966797, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.781494, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.057373, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.221436, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.143311, 74.393298 ], [ -89.758301, 74.516956 ], [ -92.416992, 74.839183 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.889160, 76.320754 ], [ -95.954590, 76.442332 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.703857, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.044678, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.572266, 52.180669 ], [ -132.176514, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.168866 ] ] ], [ [ [ -121.530762, 74.449358 ], [ -120.102539, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.898111 ], [ -115.510254, 73.475361 ], [ -116.762695, 73.223529 ], [ -119.212646, 72.521532 ], [ -120.454102, 71.821986 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.925293, 71.869909 ], [ -125.496826, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.936768, 73.680352 ], [ -124.914551, 74.292489 ], [ -121.530762, 74.449358 ] ] ], [ [ [ -109.577637, 76.795721 ], [ -108.544922, 76.679785 ], [ -108.204346, 76.203347 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.875244, 75.970890 ], [ -105.699463, 75.480640 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.707520, 75.222263 ], [ -116.345215, 76.200727 ], [ -115.400391, 76.478342 ], [ -112.587891, 76.142958 ], [ -110.808105, 75.549340 ], [ -109.061279, 75.475131 ], [ -110.489502, 76.429449 ], [ -109.577637, 76.795721 ] ] ], [ [ [ -100.349121, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.371826, 73.760425 ], [ -97.119141, 73.472235 ], [ -98.052979, 72.990483 ], [ -96.536865, 72.561085 ], [ -96.712646, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.008545, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.437012, 72.705372 ], [ -101.535645, 73.359348 ], [ -100.349121, 73.843173 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.968262, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.540283, 63.651136 ], [ -83.100586, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.334229, 76.878281 ], [ -117.103271, 76.529621 ], [ -118.037109, 76.480910 ], [ -119.893799, 76.053213 ], [ -121.497803, 75.901478 ], [ -122.849121, 76.116622 ], [ -121.157227, 76.865804 ], [ -119.102783, 77.513624 ], [ -117.564697, 77.499364 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -98.492432, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.701416, 75.745421 ], [ -98.151855, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.876465, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.557373, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.975586, 76.646840 ], [ -98.569336, 76.588356 ], [ -98.492432, 76.720223 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.416992, 74.101006 ], [ -90.505371, 73.858452 ], [ -91.999512, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.262695, 72.026510 ], [ -95.405273, 72.063764 ], [ -96.031494, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.524170, 79.165141 ], [ -100.821533, 78.801980 ], [ -100.052490, 78.324981 ], [ -99.667969, 77.908767 ], [ -101.304932, 78.018734 ], [ -102.941895, 78.342753 ], [ -105.172119, 78.380430 ], [ -104.205322, 78.677557 ], [ -105.413818, 78.918720 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.624268, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.822754, 78.057443 ], [ -97.305908, 77.851100 ], [ -98.118896, 78.082425 ], [ -98.547363, 78.457624 ], [ -98.624268, 78.872169 ] ] ], [ [ [ -75.893555, 68.289716 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.981201, 67.101656 ], [ -77.233887, 67.588287 ], [ -76.805420, 68.151121 ], [ -75.893555, 68.289716 ] ] ], [ [ [ -94.844971, 75.647708 ], [ -93.977051, 75.297735 ], [ -93.614502, 74.979336 ], [ -94.152832, 74.593027 ], [ -95.603027, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.284180, 75.378379 ], [ -94.844971, 75.647708 ] ] ], [ [ [ -111.258545, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.181885, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.719727, 78.050621 ], [ -111.258545, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.874023, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.521973, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.416504, 77.821006 ], [ -93.713379, 77.634189 ], [ -93.834229, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.163330, 77.556308 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.928955, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.016846, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.071777, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.697998, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.247314, 21.217701 ], [ -156.752930, 21.176729 ], [ -156.785889, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.247314, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.247070, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.796143, 22.065278 ], [ -159.741211, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.148745 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.891482 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.826640 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.928955, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.016846, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.071777, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.697998, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.247314, 21.217701 ], [ -156.752930, 21.176729 ], [ -156.785889, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.247314, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.247070, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.796143, 22.065278 ], [ -159.741211, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.148745 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.891482 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.826640 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.966279 ], [ 182.449951, 68.200133 ], [ 185.075684, 67.208289 ], [ 184.987793, 66.587583 ], [ 185.657959, 66.333095 ], [ 185.427246, 67.063152 ], [ 187.031250, 66.977370 ], [ 187.031250, 64.249368 ], [ 186.108398, 64.282760 ], [ 185.350342, 64.628585 ], [ 184.020996, 64.923542 ], [ 183.790283, 65.357677 ], [ 182.779541, 65.517516 ], [ 181.647949, 65.389723 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.111619 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.714600, 64.534272 ], [ 177.418213, 64.605038 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.248467 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.946442 ], [ 170.705566, 60.332386 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.125244, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.796875, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.226074, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.966064, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.812256, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.234528 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 136.867676, 45.143305 ], [ 135.516357, 43.984910 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.924252 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.890869, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.111326 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.032959, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.783635 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.947021, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.455349 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.749594 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.638476 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.685791, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.588135, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.289306 ], [ 108.479004, 49.282140 ], [ 107.874756, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.085344 ], [ 102.260742, 50.506440 ], [ 102.062988, 51.255040 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.833252, 51.006842 ], [ 98.239746, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.972422 ], [ 94.822998, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.241211, 50.798991 ], [ 90.714111, 50.331436 ], [ 88.813477, 49.468124 ], [ 87.758789, 49.296472 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.432617, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.872803, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.985107, 53.664171 ], [ 61.699219, 52.975108 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.442618 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.370361, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.065186, 47.739323 ], [ 48.702393, 47.070122 ], [ 48.592529, 46.558860 ], [ 49.108887, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.592529, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.823486, 41.145570 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 44.538574, 42.706660 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.683350, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.820532 ], [ 39.737549, 47.894248 ], [ 39.902344, 48.231991 ], [ 39.682617, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.596470 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.739502, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.124756, 60.026441 ], [ 28.070068, 60.500525 ], [ 30.212402, 61.778319 ], [ 31.146240, 62.354707 ], [ 31.519775, 62.865169 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.201596 ], [ 29.542236, 64.946813 ], [ 30.223389, 65.802776 ], [ 29.058838, 66.947274 ], [ 29.981689, 67.701110 ], [ 28.443604, 68.366801 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.158650 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.907667 ], [ 33.782959, 69.302794 ], [ 36.518555, 69.064638 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.023193, 66.266856 ], [ 38.386230, 66.000150 ], [ 33.925781, 66.761585 ], [ 33.189697, 66.635556 ], [ 34.815674, 65.897167 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.411177 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.572428 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.692771 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.351318, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.859555 ], [ 54.470215, 68.807986 ], [ 53.492432, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.447998, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.809814, 68.883316 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.850978 ], [ 63.511963, 69.549877 ], [ 64.896240, 69.236684 ], [ 68.510742, 68.093808 ], [ 69.180908, 68.616534 ], [ 68.170166, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.710842 ], [ 66.697998, 71.031249 ], [ 68.543701, 71.934751 ], [ 69.202881, 72.845262 ], [ 69.938965, 73.041829 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.409675 ], [ 72.476807, 71.091865 ], [ 72.795410, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.245850, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.828369, 66.535143 ], [ 73.927002, 66.791909 ], [ 74.190674, 67.284773 ], [ 75.058594, 67.763556 ], [ 74.476318, 68.330320 ], [ 74.937744, 68.989925 ], [ 73.850098, 69.072488 ], [ 73.608398, 69.630335 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.448163 ], [ 74.893799, 72.121192 ], [ 74.663086, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.302431 ], [ 75.289307, 71.335983 ], [ 76.365967, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.507568, 71.749873 ], [ 80.617676, 72.584117 ], [ 80.518799, 73.649452 ], [ 82.254639, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.824951, 73.937674 ], [ 86.011963, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.319092, 75.143595 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.775147 ], [ 93.240967, 76.047916 ], [ 95.866699, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.766602, 76.432026 ], [ 101.041260, 76.863308 ], [ 101.997070, 77.288368 ], [ 104.359131, 77.697553 ], [ 106.072998, 77.375105 ], [ 104.710693, 77.127825 ], [ 106.973877, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.160400, 76.722747 ], [ 111.082764, 76.710125 ], [ 113.334961, 76.221675 ], [ 114.136963, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.785645, 75.033339 ], [ 110.148926, 74.478784 ], [ 109.401855, 74.182063 ], [ 110.643311, 74.040702 ], [ 112.126465, 73.788054 ], [ 113.027344, 73.977144 ], [ 113.532715, 73.337311 ], [ 113.972168, 73.596792 ], [ 115.565186, 73.754279 ], [ 118.784180, 73.587482 ], [ 119.025879, 73.121756 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.735828 ], [ 125.386963, 73.559522 ], [ 126.979980, 73.565739 ], [ 128.594971, 73.038624 ], [ 129.056396, 72.399028 ], [ 128.463135, 71.982386 ], [ 129.715576, 71.194838 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.388649 ], [ 135.560303, 71.656749 ], [ 137.504883, 71.350041 ], [ 138.240967, 71.629069 ], [ 139.877930, 71.490063 ], [ 139.152832, 72.415631 ], [ 140.471191, 72.851742 ], [ 149.501953, 72.201963 ], [ 150.358887, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.005615, 71.031249 ], [ 159.005127, 70.866291 ], [ 159.829102, 70.455184 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.641804 ], [ 164.058838, 69.668541 ], [ 165.948486, 69.472969 ], [ 167.838135, 69.584396 ], [ 169.584961, 68.696505 ], [ 170.815430, 69.013546 ], [ 170.013428, 69.653267 ], [ 170.452881, 70.099269 ], [ 173.649902, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.604736, 69.399649 ], [ 180.000000, 68.966279 ] ] ], [ [ [ -180.000000, 68.966279 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.208289 ], [ -175.012207, 66.587583 ], [ -174.342041, 66.333095 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.534272 ], [ -182.592773, 64.605038 ], [ -181.691895, 64.077003 ], [ -181.098633, 63.248467 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -182.636719, 62.522458 ], [ -185.438232, 61.767926 ], [ -186.317139, 61.653379 ], [ -187.031250, 61.328269 ], [ -187.031250, 69.877452 ], [ -186.361084, 69.816891 ], [ -184.273682, 69.877452 ], [ -181.406250, 69.399649 ], [ -180.000000, 68.966279 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.234752 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.261444 ], [ 58.480225, 74.310325 ], [ 56.986084, 73.334161 ], [ 55.426025, 72.372432 ], [ 55.623779, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.602783, 71.476106 ], [ 51.459961, 72.016337 ], [ 52.481689, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.514404, 73.751205 ], [ 55.909424, 74.628014 ], [ 55.634766, 75.081497 ], [ 57.875977, 75.609532 ], [ 61.171875, 76.253039 ], [ 64.500732, 76.439756 ], [ 66.214600, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.888184, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.942627, 78.880647 ], [ 97.756348, 78.757087 ], [ 94.976807, 79.044703 ], [ 93.317871, 79.426325 ], [ 92.548828, 80.144924 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ], [ [ [ 138.834229, 76.137695 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.305420, 74.821934 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.261444 ], [ 137.515869, 75.949568 ], [ 138.834229, 76.137695 ] ] ], [ [ [ 142.657471, 54.361358 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.930718 ], [ 141.690674, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.361358 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.843018, 79.282227 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.922567 ], [ 101.271973, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 50.042725, 80.919761 ], [ 51.525879, 80.700447 ], [ 51.141357, 80.548322 ], [ 49.801025, 80.415707 ], [ 48.900146, 80.340419 ], [ 48.757324, 80.176839 ], [ 47.592773, 80.010518 ], [ 46.505127, 80.247810 ], [ 47.076416, 80.559141 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.526611, 80.515792 ], [ 49.097900, 80.753556 ], [ 50.042725, 80.919761 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.227539, 75.347841 ], [ 150.732422, 75.084326 ], [ 149.578857, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.174549 ], [ 146.359863, 75.497157 ] ] ], [ [ [ -180.000000, 71.517945 ], [ -179.868164, 71.559692 ], [ -179.022217, 71.556217 ], [ -177.572021, 71.269067 ], [ -177.659912, 71.134540 ], [ -178.692627, 70.895078 ], [ -180.000000, 70.833855 ], [ -181.098633, 70.783294 ], [ -181.274414, 71.098984 ], [ -180.000000, 71.517945 ] ] ], [ [ [ 180.000000, 71.517945 ], [ 180.131836, 71.559692 ], [ 180.977783, 71.556217 ], [ 182.427979, 71.269067 ], [ 182.340088, 71.134540 ], [ 181.307373, 70.895078 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.783294 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.517945 ] ] ], [ [ [ 142.064209, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.207666 ], [ 140.042725, 73.318400 ], [ 139.866943, 73.371928 ], [ 140.811768, 73.766569 ], [ 142.064209, 73.858452 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.578430 ], [ 22.730713, 54.322931 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.896240, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } @@ -1409,7 +1409,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.516113, 70.188827 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -89.208984, 69.256149 ], [ -88.011475, 68.612528 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.557007 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.153076, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.625244, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.757568, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.889893, 57.284981 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.353271, 55.241552 ], [ -82.265625, 55.147488 ], [ -82.430420, 54.278055 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.529251 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.279785, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.642822, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.866883 ], [ -64.577637, 60.332386 ], [ -63.797607, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.151123, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.987747 ], [ -64.467773, 46.233053 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.002734 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.115723, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.442950 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.653076, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.311279, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.460894 ], [ -79.002686, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.891846, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.989329 ], [ -83.616943, 46.111326 ], [ -83.891602, 46.111326 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.004625 ], [ -90.823975, 48.268569 ], [ -91.636963, 48.136767 ], [ -92.603760, 48.451066 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.152588, 48.994636 ], [ -122.969971, 49.001844 ], [ -124.903564, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.430420, 50.826758 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.122314, 52.756243 ], [ -129.298096, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.528564, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.912273 ], [ -131.704102, 56.553428 ], [ -132.725830, 57.692406 ], [ -133.352051, 58.407468 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.710489 ], [ -139.119873, 69.469116 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.895187 ], [ -135.626221, 69.314440 ], [ -134.406738, 69.626510 ], [ -132.923584, 69.503765 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.192550 ], [ -129.100342, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.133545, 70.484566 ], [ -127.441406, 70.377854 ], [ -125.749512, 69.480672 ], [ -124.420166, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.057861, 69.561390 ], [ -122.684326, 69.854762 ], [ -121.464844, 69.797930 ], [ -119.937744, 69.376443 ], [ -117.597656, 69.009611 ], [ -116.224365, 68.839735 ], [ -115.246582, 68.903097 ], [ -113.895264, 68.399180 ], [ -115.301514, 67.900354 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.940186, 67.978754 ], [ -108.874512, 67.382150 ], [ -107.786865, 67.887951 ], [ -108.808594, 68.310027 ], [ -108.160400, 68.652556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.337158, 68.015798 ], [ -103.216553, 68.097907 ], [ -101.447754, 67.646855 ], [ -99.898682, 67.805095 ], [ -98.437500, 67.780180 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.576441 ], [ -96.119385, 68.236823 ], [ -96.119385, 67.293256 ], [ -95.482178, 68.089709 ], [ -94.680176, 68.060994 ], [ -94.229736, 69.068563 ], [ -95.306396, 69.683804 ], [ -96.470947, 70.088047 ], [ -96.383057, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.155241 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.354004, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.437857 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.243408, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.243408, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.583897 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.788330, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.778076, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.514404, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.953857, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.393066, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.283203, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.894248 ], [ -58.798828, 48.246626 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.282535 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.152100, 69.858546 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.262207, 68.756296 ], [ -97.613525, 69.060712 ], [ -98.426514, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.909912, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.158936, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.434082, 72.955095 ], [ -111.049805, 72.448792 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.182373, 71.649833 ], [ -107.687988, 72.063764 ], [ -108.391113, 73.089829 ], [ -107.512207, 73.236209 ], [ -106.523438, 73.073844 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.458008, 70.991928 ], [ -102.788086, 70.495574 ], [ -100.975342, 70.024341 ], [ -101.085205, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.425537, 68.752315 ], [ -104.238281, 68.907051 ], [ -105.952148, 69.178184 ], [ -107.116699, 69.119527 ], [ -108.995361, 68.780168 ], [ -111.533203, 68.628548 ], [ -113.312988, 68.536276 ], [ -113.851318, 69.005675 ], [ -115.213623, 69.279484 ], [ -116.103516, 69.166466 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.125732, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.412109, 70.366783 ], [ -114.345703, 70.598021 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.307836 ], [ -117.652588, 71.293747 ], [ -119.399414, 71.556217 ], [ -118.564453, 72.305771 ], [ -117.861328, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.057861, 73.652545 ], [ -76.333008, 73.102607 ], [ -76.245117, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.874402 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.870361, 73.331010 ], [ -80.826416, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.842041, 82.628514 ], [ -61.885986, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.234863, 79.633945 ], [ -73.872070, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.882080, 77.899558 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.208344 ], [ -79.617920, 76.982624 ], [ -77.904053, 77.022159 ], [ -77.882080, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.166504, 76.452630 ], [ -86.110840, 76.297351 ], [ -87.593994, 76.419134 ], [ -89.483643, 76.470633 ], [ -89.615479, 76.950415 ], [ -87.769775, 77.176684 ], [ -88.253174, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.757087 ], [ -85.374756, 78.996578 ], [ -85.089111, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.923828, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.254150, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.130809 ], [ -76.245117, 83.172729 ], [ -75.717773, 83.064796 ], [ -72.828369, 83.233838 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.747781 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.235107, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.961670, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.925755 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.082520, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.006104, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.015625, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.675619 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.552351 ], [ -76.871338, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.288818, 69.767557 ], [ -78.167725, 69.824471 ], [ -78.958740, 70.166473 ], [ -79.486084, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.964204 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.505615, 70.761586 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.197754, 72.235514 ], [ -89.428711, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.353271, 50.771208 ], [ -127.309570, 50.548344 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.296358 ], [ -124.914551, 49.475263 ], [ -123.914795, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.650635, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.534380 ], [ -128.353271, 50.771208 ] ] ], [ [ [ -92.406006, 81.258372 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.342753 ], [ -93.944092, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.142090, 79.379856 ], [ -94.965820, 79.373780 ], [ -96.075439, 79.704870 ], [ -96.701660, 80.158078 ], [ -96.009521, 80.602293 ], [ -95.317383, 80.907616 ], [ -94.295654, 80.978522 ], [ -94.735107, 81.206460 ], [ -92.406006, 81.258372 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.798096, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.159604 ], [ -94.680176, 77.098423 ], [ -93.570557, 76.775629 ], [ -91.604004, 76.778142 ], [ -90.736084, 76.450056 ], [ -90.966797, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.480640 ], [ -84.781494, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.826660, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.440519 ], [ -83.221436, 74.563812 ], [ -86.099854, 74.408070 ], [ -88.143311, 74.390342 ], [ -89.758301, 74.514023 ], [ -92.416992, 74.836310 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.889160, 76.318156 ], [ -95.954590, 76.439756 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.159604 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.703857, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.044678, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.572266, 52.180669 ], [ -132.176514, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.168866 ] ] ], [ [ [ -121.530762, 74.449358 ], [ -120.102539, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.895063 ], [ -115.510254, 73.475361 ], [ -116.762695, 73.223529 ], [ -119.212646, 72.518231 ], [ -120.454102, 71.818558 ], [ -120.454102, 71.381635 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.925293, 71.866490 ], [ -125.496826, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.936768, 73.680352 ], [ -124.914551, 74.292489 ], [ -121.530762, 74.449358 ] ] ], [ [ [ -109.577637, 76.793211 ], [ -108.544922, 76.677253 ], [ -108.204346, 76.200727 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.875244, 75.968226 ], [ -105.699463, 75.477886 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.393298 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.160487 ], [ -116.312256, 75.041849 ], [ -117.707520, 75.222263 ], [ -116.345215, 76.198106 ], [ -115.400391, 76.478342 ], [ -112.587891, 76.140327 ], [ -110.808105, 75.549340 ], [ -109.061279, 75.472375 ], [ -110.489502, 76.429449 ], [ -109.577637, 76.793211 ] ] ], [ [ [ -100.349121, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.371826, 73.760425 ], [ -97.119141, 73.469110 ], [ -98.052979, 72.990483 ], [ -96.536865, 72.557792 ], [ -96.712646, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.008545, 71.736105 ], [ -102.502441, 72.508328 ], [ -102.480469, 72.829052 ], [ -100.437012, 72.705372 ], [ -101.535645, 73.359348 ], [ -100.349121, 73.843173 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.968262, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.540283, 63.651136 ], [ -83.100586, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -116.191406, 77.643597 ], [ -116.334229, 76.875786 ], [ -117.103271, 76.529621 ], [ -118.037109, 76.480910 ], [ -119.893799, 76.053213 ], [ -121.497803, 75.898801 ], [ -122.849121, 76.116622 ], [ -121.157227, 76.863308 ], [ -119.102783, 77.511248 ], [ -117.564697, 77.496986 ], [ -116.191406, 77.643597 ] ] ], [ [ [ -98.492432, 76.720223 ], [ -97.734375, 76.255650 ], [ -97.701416, 75.742715 ], [ -98.151855, 74.999254 ], [ -99.810791, 74.896542 ], [ -100.876465, 75.056021 ], [ -100.865479, 75.639536 ], [ -102.502441, 75.563041 ], [ -102.557373, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.975586, 76.646840 ], [ -98.569336, 76.588356 ], [ -98.492432, 76.720223 ] ] ], [ [ [ -94.504395, 74.134078 ], [ -92.416992, 74.097996 ], [ -90.505371, 73.855397 ], [ -91.999512, 72.964753 ], [ -93.197021, 72.770574 ], [ -94.262695, 72.023120 ], [ -95.405273, 72.060381 ], [ -96.031494, 72.938986 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.861506 ], [ -94.504395, 74.134078 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.524170, 79.165141 ], [ -100.821533, 78.799846 ], [ -100.052490, 78.324981 ], [ -99.667969, 77.906466 ], [ -101.304932, 78.018734 ], [ -102.941895, 78.342753 ], [ -105.172119, 78.380430 ], [ -104.205322, 78.677557 ], [ -105.413818, 78.918720 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.624268, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.822754, 78.057443 ], [ -97.305908, 77.851100 ], [ -98.118896, 78.082425 ], [ -98.547363, 78.457624 ], [ -98.624268, 78.872169 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.007571 ], [ -75.102539, 67.579908 ], [ -75.212402, 67.441229 ], [ -75.860596, 67.148632 ], [ -76.981201, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.805420, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -94.844971, 75.647708 ], [ -93.977051, 75.294947 ], [ -93.614502, 74.979336 ], [ -94.152832, 74.593027 ], [ -95.603027, 74.665828 ], [ -96.822510, 74.927999 ], [ -96.284180, 75.378379 ], [ -94.844971, 75.647708 ] ] ], [ [ [ -111.258545, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.181885, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.719727, 78.050621 ], [ -111.258545, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.419021 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.848821 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.874023, 78.406954 ], [ -112.543945, 78.406954 ], [ -112.521973, 78.549588 ], [ -111.500244, 78.848821 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.416504, 77.818688 ], [ -93.713379, 77.634189 ], [ -93.834229, 77.518374 ], [ -94.295654, 77.489849 ], [ -96.163330, 77.553940 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.928955, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.016846, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.071777, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.697998, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.247314, 21.217701 ], [ -156.752930, 21.176729 ], [ -156.785889, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.247314, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.247070, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.796143, 22.065278 ], [ -159.741211, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.613405 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.928955, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.016846, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.071777, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.697998, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.247314, 21.217701 ], [ -156.752930, 21.176729 ], [ -156.785889, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.247314, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.247070, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.796143, 22.065278 ], [ -159.741211, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.032959, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.613405 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.962335 ], [ 182.449951, 68.200133 ], [ 185.075684, 67.204032 ], [ 184.987793, 66.583217 ], [ 185.657959, 66.333095 ], [ 185.427246, 67.063152 ], [ 187.031250, 66.973073 ], [ 187.031250, 64.249368 ], [ 186.108398, 64.282760 ], [ 185.350342, 64.628585 ], [ 184.020996, 64.923542 ], [ 183.790283, 65.357677 ], [ 182.779541, 65.517516 ], [ 181.647949, 65.389723 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.111619 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.714600, 64.534272 ], [ 177.418213, 64.605038 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.248467 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.946442 ], [ 170.705566, 60.332386 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.125244, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.796875, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.226074, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.966064, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.812256, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.234528 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 136.867676, 45.143305 ], [ 135.516357, 43.984910 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.924252 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.890869, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.111326 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.032959, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.783635 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.947021, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.455349 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.749594 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.638476 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.685791, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.588135, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.289306 ], [ 108.479004, 49.282140 ], [ 107.874756, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.085344 ], [ 102.260742, 50.506440 ], [ 102.062988, 51.255040 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.833252, 51.006842 ], [ 98.239746, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.972422 ], [ 94.822998, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.241211, 50.798991 ], [ 90.714111, 50.331436 ], [ 88.813477, 49.468124 ], [ 87.758789, 49.296472 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.432617, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.872803, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.985107, 53.664171 ], [ 61.699219, 52.975108 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.442618 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.370361, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.065186, 47.739323 ], [ 48.702393, 47.070122 ], [ 48.592529, 46.558860 ], [ 49.108887, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.592529, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.823486, 41.145570 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 44.538574, 42.706660 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.683350, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.820532 ], [ 39.737549, 47.894248 ], [ 39.902344, 48.231991 ], [ 39.682617, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.596470 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.739502, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.124756, 60.026441 ], [ 28.070068, 60.500525 ], [ 30.212402, 61.778319 ], [ 31.146240, 62.354707 ], [ 31.519775, 62.865169 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.201596 ], [ 29.542236, 64.946813 ], [ 30.223389, 65.802776 ], [ 29.058838, 66.942972 ], [ 29.981689, 67.696941 ], [ 28.443604, 68.362750 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.154740 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.903893 ], [ 33.782959, 69.298911 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.023193, 66.266856 ], [ 38.386230, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.189697, 66.631198 ], [ 34.815674, 65.897167 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.411177 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.568414 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.688600 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.007428 ], [ 46.351318, 66.666036 ], [ 47.900391, 66.882659 ], [ 48.142090, 67.521173 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.492432, 68.200133 ], [ 54.733887, 68.097907 ], [ 55.447998, 68.439589 ], [ 57.315674, 68.463800 ], [ 58.809814, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.938659 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.511963, 69.546038 ], [ 64.896240, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.180908, 68.616534 ], [ 68.170166, 69.143009 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.926530 ], [ 66.730957, 70.707212 ], [ 66.697998, 71.027678 ], [ 68.543701, 71.934751 ], [ 69.202881, 72.842021 ], [ 69.938965, 73.038624 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.218746 ], [ 71.850586, 71.409675 ], [ 72.476807, 71.088305 ], [ 72.795410, 70.388919 ], [ 72.564697, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.245850, 67.738597 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.828369, 66.530768 ], [ 73.927002, 66.787580 ], [ 74.190674, 67.284773 ], [ 75.058594, 67.759398 ], [ 74.476318, 68.326262 ], [ 74.937744, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.444667 ], [ 74.893799, 72.121192 ], [ 74.663086, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.299091 ], [ 75.289307, 71.335983 ], [ 76.365967, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.265657 ], [ 79.650879, 72.319122 ], [ 81.507568, 71.749873 ], [ 80.617676, 72.580829 ], [ 80.518799, 73.646359 ], [ 82.254639, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.824951, 73.934634 ], [ 86.011963, 74.458191 ], [ 87.165527, 75.115400 ], [ 88.319092, 75.143595 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.772447 ], [ 93.240967, 76.045267 ], [ 95.866699, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.766602, 76.429449 ], [ 101.041260, 76.860810 ], [ 101.997070, 77.285950 ], [ 104.359131, 77.697553 ], [ 106.072998, 77.372703 ], [ 104.710693, 77.127825 ], [ 106.973877, 76.972722 ], [ 107.237549, 76.478342 ], [ 108.160400, 76.722747 ], [ 111.082764, 76.710125 ], [ 113.334961, 76.221675 ], [ 114.136963, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.785645, 75.030502 ], [ 110.148926, 74.475843 ], [ 109.401855, 74.179068 ], [ 110.643311, 74.040702 ], [ 112.126465, 73.788054 ], [ 113.027344, 73.977144 ], [ 113.532715, 73.334161 ], [ 113.972168, 73.593690 ], [ 115.565186, 73.751205 ], [ 118.784180, 73.587482 ], [ 119.025879, 73.118566 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.732751 ], [ 125.386963, 73.559522 ], [ 126.979980, 73.565739 ], [ 128.594971, 73.038624 ], [ 129.056396, 72.399028 ], [ 128.463135, 71.978988 ], [ 129.715576, 71.191296 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.385142 ], [ 135.560303, 71.653291 ], [ 137.504883, 71.346528 ], [ 138.240967, 71.625606 ], [ 139.877930, 71.486574 ], [ 139.152832, 72.415631 ], [ 140.471191, 72.848502 ], [ 149.501953, 72.198605 ], [ 150.358887, 71.604816 ], [ 152.973633, 70.841067 ], [ 157.005615, 71.031249 ], [ 159.005127, 70.866291 ], [ 159.829102, 70.451508 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.434410 ], [ 162.279053, 69.641804 ], [ 164.058838, 69.668541 ], [ 165.948486, 69.469116 ], [ 167.838135, 69.580563 ], [ 169.584961, 68.692513 ], [ 170.815430, 69.013546 ], [ 170.013428, 69.653267 ], [ 170.452881, 70.095529 ], [ 173.649902, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.604736, 69.399649 ], [ 180.000000, 68.962335 ] ] ], [ [ [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.342041, 66.333095 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.534272 ], [ -182.592773, 64.605038 ], [ -181.691895, 64.077003 ], [ -181.098633, 63.248467 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -182.636719, 62.522458 ], [ -185.438232, 61.767926 ], [ -186.317139, 61.653379 ], [ -187.031250, 61.328269 ], [ -187.031250, 69.877452 ], [ -186.361084, 69.816891 ], [ -184.273682, 69.877452 ], [ -181.406250, 69.399649 ], [ -180.000000, 68.962335 ] ] ], [ [ [ 68.159180, 76.938006 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.261444 ], [ 58.480225, 74.307353 ], [ 56.986084, 73.331010 ], [ 55.426025, 72.369105 ], [ 55.623779, 71.538830 ], [ 57.535400, 70.718099 ], [ 56.953125, 70.630841 ], [ 53.679199, 70.761586 ], [ 53.415527, 71.205460 ], [ 51.602783, 71.472615 ], [ 51.459961, 72.012945 ], [ 52.481689, 72.228809 ], [ 52.448730, 72.773828 ], [ 54.426270, 73.627789 ], [ 53.514404, 73.748131 ], [ 55.909424, 74.628014 ], [ 55.634766, 75.081497 ], [ 57.875977, 75.609532 ], [ 61.171875, 76.250428 ], [ 64.500732, 76.437180 ], [ 66.214600, 76.808262 ], [ 68.159180, 76.938006 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.888184, 80.748259 ], [ 100.184326, 79.781164 ], [ 99.942627, 78.880647 ], [ 97.756348, 78.754945 ], [ 94.976807, 79.044703 ], [ 93.317871, 79.426325 ], [ 92.548828, 80.144924 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ], [ [ [ 138.834229, 76.135063 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.305420, 74.819057 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.610530 ], [ 136.977539, 75.261444 ], [ 137.515869, 75.949568 ], [ 138.834229, 76.135063 ] ] ], [ [ [ 142.657471, 54.361358 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.930718 ], [ 141.690674, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.361358 ] ] ], [ [ [ 102.084961, 79.347411 ], [ 102.843018, 79.282227 ], [ 105.369873, 78.712016 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.920268 ], [ 101.271973, 79.235133 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 50.042725, 80.919761 ], [ 51.525879, 80.700447 ], [ 51.141357, 80.548322 ], [ 49.801025, 80.415707 ], [ 48.900146, 80.340419 ], [ 48.757324, 80.176839 ], [ 47.592773, 80.010518 ], [ 46.505127, 80.247810 ], [ 47.076416, 80.559141 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.772954 ], [ 48.317871, 80.785277 ], [ 48.526611, 80.515792 ], [ 49.097900, 80.753556 ], [ 50.042725, 80.919761 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.227539, 75.345062 ], [ 150.732422, 75.084326 ], [ 149.578857, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.171738 ], [ 146.359863, 75.497157 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.556217 ], [ -179.022217, 71.556217 ], [ -177.572021, 71.269067 ], [ -177.659912, 71.130988 ], [ -178.692627, 70.891482 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.779678 ], [ -181.274414, 71.098984 ], [ -180.000000, 71.514462 ] ] ], [ [ [ 180.000000, 71.514462 ], [ 180.131836, 71.556217 ], [ 180.977783, 71.556217 ], [ 182.427979, 71.269067 ], [ 182.340088, 71.130988 ], [ 181.307373, 70.891482 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.779678 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.514462 ] ] ], [ [ [ 142.064209, 73.855397 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.210840 ], [ 142.086182, 73.204492 ], [ 140.042725, 73.315246 ], [ 139.866943, 73.368784 ], [ 140.811768, 73.763497 ], [ 142.064209, 73.855397 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.578430 ], [ 22.730713, 54.322931 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.896240, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } @@ -1447,7 +1447,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.516113, 70.192550 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.499918 ], [ -90.549316, 68.475895 ], [ -89.208984, 69.260040 ], [ -88.011475, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.660905 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.958008, 68.134760 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.153076, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.625244, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.757568, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.889893, 57.284981 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.353271, 55.241552 ], [ -82.265625, 55.147488 ], [ -82.430420, 54.278055 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.529251 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.279785, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.642822, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.866883 ], [ -64.577637, 60.332386 ], [ -63.797607, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.151123, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.987747 ], [ -64.467773, 46.233053 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.002734 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.115723, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.442950 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.653076, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.311279, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.460894 ], [ -79.002686, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.891846, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.989329 ], [ -83.616943, 46.111326 ], [ -83.891602, 46.111326 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.004625 ], [ -90.823975, 48.268569 ], [ -91.636963, 48.136767 ], [ -92.603760, 48.451066 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.152588, 48.994636 ], [ -122.969971, 49.001844 ], [ -124.903564, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.430420, 50.826758 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.122314, 52.756243 ], [ -129.298096, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.528564, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.912273 ], [ -131.704102, 56.553428 ], [ -132.725830, 57.692406 ], [ -133.352051, 58.407468 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.784051 ], [ -136.483154, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.042969, 59.998986 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.714298 ], [ -139.119873, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.314440 ], [ -134.406738, 69.626510 ], [ -132.923584, 69.507612 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.196272 ], [ -129.100342, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.133545, 70.484566 ], [ -127.441406, 70.377854 ], [ -125.749512, 69.480672 ], [ -124.420166, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.057861, 69.565226 ], [ -122.684326, 69.854762 ], [ -121.464844, 69.797930 ], [ -119.937744, 69.380313 ], [ -117.597656, 69.013546 ], [ -116.224365, 68.843700 ], [ -115.246582, 68.907051 ], [ -113.895264, 68.399180 ], [ -115.301514, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.940186, 67.982873 ], [ -108.874512, 67.382150 ], [ -107.786865, 67.887951 ], [ -108.808594, 68.314087 ], [ -108.160400, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.337158, 68.019910 ], [ -103.216553, 68.097907 ], [ -101.447754, 67.646855 ], [ -99.898682, 67.805095 ], [ -98.437500, 67.784335 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.580453 ], [ -96.119385, 68.240896 ], [ -96.119385, 67.293256 ], [ -95.482178, 68.089709 ], [ -94.680176, 68.065098 ], [ -94.229736, 69.068563 ], [ -95.306396, 69.687618 ], [ -96.470947, 70.091788 ], [ -96.383057, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.155241 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.354004, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.437857 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.243408, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.243408, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.583897 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.788330, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.778076, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.514404, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.953857, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.393066, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.283203, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.894248 ], [ -58.798828, 48.246626 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.282535 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.152100, 69.862328 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.262207, 68.756296 ], [ -97.613525, 69.060712 ], [ -98.426514, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.909912, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.158936, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.434082, 72.955095 ], [ -111.049805, 72.452104 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.182373, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.391113, 73.089829 ], [ -107.512207, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.458008, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.975342, 70.024341 ], [ -101.085205, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.425537, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.182089 ], [ -107.116699, 69.119527 ], [ -108.995361, 68.780168 ], [ -111.533203, 68.632551 ], [ -113.312988, 68.536276 ], [ -113.851318, 69.009611 ], [ -115.213623, 69.279484 ], [ -116.103516, 69.170373 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.125732, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.412109, 70.366783 ], [ -114.345703, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.652588, 71.297270 ], [ -119.399414, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.861328, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.057861, 73.652545 ], [ -76.333008, 73.102607 ], [ -76.245117, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.744522 ], [ -79.771729, 72.803086 ], [ -80.870361, 73.334161 ], [ -80.826416, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.842041, 82.628514 ], [ -61.885986, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.234863, 79.633945 ], [ -73.872070, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.184088 ], [ -77.882080, 77.899558 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.985098 ], [ -77.904053, 77.022159 ], [ -77.882080, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.593994, 76.421713 ], [ -89.483643, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.253174, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.089111, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.923828, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.254150, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.130809 ], [ -76.245117, 83.172729 ], [ -75.717773, 83.064796 ], [ -72.828369, 83.233838 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.332467 ], [ -72.235107, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.961670, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.082520, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.006104, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.015625, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.675619 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.486084, 69.873672 ], [ -81.298828, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.505615, 70.761586 ], [ -88.461914, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.197754, 72.235514 ], [ -89.428711, 73.131322 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.353271, 50.771208 ], [ -127.309570, 50.548344 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.296358 ], [ -124.914551, 49.475263 ], [ -123.914795, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.650635, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.534380 ], [ -128.353271, 50.771208 ] ] ], [ [ [ -92.406006, 81.258372 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.040526 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.944092, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.142090, 79.379856 ], [ -94.965820, 79.373780 ], [ -96.075439, 79.704870 ], [ -96.701660, 80.158078 ], [ -96.009521, 80.602293 ], [ -95.317383, 80.907616 ], [ -94.295654, 80.978522 ], [ -94.735107, 81.206460 ], [ -92.406006, 81.258372 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.798096, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.680176, 77.098423 ], [ -93.570557, 76.778142 ], [ -91.604004, 76.778142 ], [ -90.736084, 76.450056 ], [ -90.966797, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.781494, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.057373, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.221436, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.143311, 74.393298 ], [ -89.758301, 74.516956 ], [ -92.416992, 74.839183 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.889160, 76.320754 ], [ -95.954590, 76.442332 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.703857, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.044678, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.572266, 52.180669 ], [ -132.176514, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.168866 ] ] ], [ [ [ -121.530762, 74.449358 ], [ -120.102539, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.898111 ], [ -115.510254, 73.475361 ], [ -116.762695, 73.223529 ], [ -119.212646, 72.521532 ], [ -120.454102, 71.821986 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.925293, 71.869909 ], [ -125.496826, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.936768, 73.680352 ], [ -124.914551, 74.292489 ], [ -121.530762, 74.449358 ] ] ], [ [ [ -109.577637, 76.795721 ], [ -108.544922, 76.679785 ], [ -108.204346, 76.203347 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.875244, 75.970890 ], [ -105.699463, 75.480640 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.707520, 75.222263 ], [ -116.345215, 76.200727 ], [ -115.400391, 76.478342 ], [ -112.587891, 76.142958 ], [ -110.808105, 75.549340 ], [ -109.061279, 75.475131 ], [ -110.489502, 76.429449 ], [ -109.577637, 76.795721 ] ] ], [ [ [ -100.349121, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.371826, 73.760425 ], [ -97.119141, 73.472235 ], [ -98.052979, 72.990483 ], [ -96.536865, 72.561085 ], [ -96.712646, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.008545, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.437012, 72.705372 ], [ -101.535645, 73.359348 ], [ -100.349121, 73.843173 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.968262, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.540283, 63.651136 ], [ -83.100586, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.334229, 76.878281 ], [ -117.103271, 76.529621 ], [ -118.037109, 76.480910 ], [ -119.893799, 76.053213 ], [ -121.497803, 75.901478 ], [ -122.849121, 76.116622 ], [ -121.157227, 76.865804 ], [ -119.102783, 77.513624 ], [ -117.564697, 77.499364 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -98.492432, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.701416, 75.745421 ], [ -98.151855, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.876465, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.557373, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.975586, 76.646840 ], [ -98.569336, 76.588356 ], [ -98.492432, 76.720223 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.416992, 74.101006 ], [ -90.505371, 73.858452 ], [ -91.999512, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.262695, 72.026510 ], [ -95.405273, 72.063764 ], [ -96.031494, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.524170, 79.165141 ], [ -100.821533, 78.801980 ], [ -100.052490, 78.324981 ], [ -99.667969, 77.908767 ], [ -101.304932, 78.018734 ], [ -102.941895, 78.342753 ], [ -105.172119, 78.380430 ], [ -104.205322, 78.677557 ], [ -105.413818, 78.918720 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.624268, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.822754, 78.057443 ], [ -97.305908, 77.851100 ], [ -98.118896, 78.082425 ], [ -98.547363, 78.457624 ], [ -98.624268, 78.872169 ] ] ], [ [ [ -75.893555, 68.289716 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.981201, 67.101656 ], [ -77.233887, 67.588287 ], [ -76.805420, 68.151121 ], [ -75.893555, 68.289716 ] ] ], [ [ [ -94.844971, 75.647708 ], [ -93.977051, 75.297735 ], [ -93.614502, 74.979336 ], [ -94.152832, 74.593027 ], [ -95.603027, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.284180, 75.378379 ], [ -94.844971, 75.647708 ] ] ], [ [ [ -111.258545, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.181885, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.719727, 78.050621 ], [ -111.258545, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.874023, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.521973, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.416504, 77.821006 ], [ -93.713379, 77.634189 ], [ -93.834229, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.163330, 77.556308 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.603858 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.134521, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.112793, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.332764, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.152588, 48.994636 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.528564, 54.800685 ], [ -131.077881, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.242432, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } ] } ] } , @@ -1567,7 +1567,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.527100, 70.192550 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.499918 ], [ -90.549316, 68.475895 ], [ -89.208984, 69.260040 ], [ -88.011475, 68.616534 ], [ -88.319092, 67.875541 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.660905 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.668547 ], [ -81.958008, 68.134760 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.561377 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.691162, 58.950008 ], [ -93.218994, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.900879, 57.284981 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.353271, 55.241552 ], [ -82.265625, 55.147488 ], [ -82.430420, 54.278055 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.529251 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.279785, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.642822, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.866883 ], [ -64.577637, 60.332386 ], [ -63.797607, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.151123, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.987747 ], [ -64.467773, 46.233053 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.002734 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.115723, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.442950 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.653076, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.311279, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.460894 ], [ -79.002686, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.891846, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.989329 ], [ -83.616943, 46.111326 ], [ -83.891602, 46.111326 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.004625 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.451066 ], [ -93.636475, 48.603858 ], [ -94.328613, 48.669199 ], [ -94.647217, 48.835797 ], [ -94.822998, 49.389524 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.001844 ], [ -124.914551, 49.979488 ], [ -125.628662, 50.415519 ], [ -127.441406, 50.826758 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.539551, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.012207, 55.912273 ], [ -131.715088, 56.553428 ], [ -132.736816, 57.692406 ], [ -133.363037, 58.407468 ], [ -134.274902, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.483398, 59.784051 ], [ -136.483154, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.042969, 59.998986 ], [ -140.020752, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.714298 ], [ -139.119873, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.314440 ], [ -134.417725, 69.626510 ], [ -132.934570, 69.507612 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.196272 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.431152, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.068848, 69.565226 ], [ -122.684326, 69.854762 ], [ -121.475830, 69.797930 ], [ -119.948730, 69.380313 ], [ -117.608643, 69.013546 ], [ -116.224365, 68.843700 ], [ -115.246582, 68.907051 ], [ -113.895264, 68.399180 ], [ -115.312500, 67.904487 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.819580, 68.314087 ], [ -108.171387, 68.656555 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.347900, 68.560384 ], [ -104.337158, 68.019910 ], [ -103.227539, 68.097907 ], [ -101.458740, 67.646855 ], [ -99.909668, 67.805095 ], [ -98.448486, 67.784335 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.580453 ], [ -96.119385, 68.240896 ], [ -96.130371, 67.293256 ], [ -95.493164, 68.089709 ], [ -94.691162, 68.065098 ], [ -94.240723, 69.068563 ], [ -95.306396, 69.687618 ], [ -96.470947, 70.091788 ], [ -96.394043, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.155241 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.354004, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.437857 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.243408, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.243408, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.583897 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.788330, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.778076, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.514404, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.953857, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.393066, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.283203, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.894248 ], [ -58.798828, 48.246626 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.282535 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.163086, 69.862328 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.273193, 68.756296 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.920898, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.445068, 72.955095 ], [ -111.049805, 72.452104 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.193359, 71.653291 ], [ -107.687988, 72.067147 ], [ -108.402100, 73.089829 ], [ -107.523193, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.468994, 70.995506 ], [ -102.788086, 70.499241 ], [ -100.986328, 70.024341 ], [ -101.096191, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.963135, 69.182089 ], [ -107.127686, 69.119527 ], [ -109.006348, 68.780168 ], [ -111.533203, 68.632551 ], [ -113.312988, 68.536276 ], [ -113.862305, 69.009611 ], [ -115.224609, 69.279484 ], [ -116.114502, 69.170373 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.069330 ], [ -115.136719, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.423096, 70.366783 ], [ -114.356689, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.543203 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.311357 ], [ -117.663574, 71.297270 ], [ -119.399414, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.872314, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.057861, 73.652545 ], [ -76.333008, 73.102607 ], [ -76.245117, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.744522 ], [ -79.771729, 72.803086 ], [ -80.870361, 73.334161 ], [ -80.826416, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.828369, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.842041, 82.628514 ], [ -61.885986, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.900669 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.234863, 79.633945 ], [ -73.872070, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.184088 ], [ -77.882080, 77.899558 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.617920, 76.985098 ], [ -77.904053, 77.022159 ], [ -77.882080, 76.778142 ], [ -80.562744, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.593994, 76.421713 ], [ -89.483643, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.253174, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.539726 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.089111, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.923828, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.593994, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.593018, 81.895354 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.254150, 82.600269 ], [ -83.177490, 82.320646 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.130809 ], [ -76.245117, 83.172729 ], [ -75.717773, 83.064796 ], [ -72.828369, 83.233838 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.063764 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.245567 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.332467 ], [ -72.235107, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.961670, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.069202 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.082520, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.006104, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.015625, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.675619 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.288818, 69.771356 ], [ -78.167725, 69.828260 ], [ -78.958740, 70.166473 ], [ -79.486084, 69.873672 ], [ -81.298828, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.505615, 70.761586 ], [ -88.461914, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.208740, 72.235514 ], [ -89.428711, 73.131322 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.364258, 50.771208 ], [ -127.309570, 50.548344 ], [ -126.694336, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.475263 ], [ -123.925781, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.958252, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.034912, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.534380 ], [ -128.364258, 50.771208 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.040526 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.153076, 79.379856 ], [ -94.976807, 79.373780 ], [ -96.075439, 79.704870 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.602293 ], [ -95.328369, 80.907616 ], [ -94.306641, 80.978522 ], [ -94.735107, 81.206460 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.798096, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.691162, 77.098423 ], [ -93.581543, 76.778142 ], [ -91.604004, 76.778142 ], [ -90.747070, 76.450056 ], [ -90.977783, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.781494, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.057373, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.221436, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.143311, 74.393298 ], [ -89.758301, 74.516956 ], [ -92.427979, 74.839183 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.900146, 76.320754 ], [ -95.965576, 76.442332 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -133.187256, 54.168866 ], [ -132.714844, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.055664, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.583252, 52.180669 ], [ -132.187500, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.187256, 54.168866 ] ] ], [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.898111 ], [ -115.510254, 73.475361 ], [ -116.773682, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.821986 ], [ -120.465088, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.936279, 71.869909 ], [ -125.507812, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.947754, 73.680352 ], [ -124.925537, 74.292489 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -109.588623, 76.795721 ], [ -108.555908, 76.679785 ], [ -108.215332, 76.203347 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.970890 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.396253 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.163300 ], [ -116.312256, 75.044684 ], [ -117.718506, 75.222263 ], [ -116.345215, 76.200727 ], [ -115.411377, 76.478342 ], [ -112.587891, 76.142958 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.429449 ], [ -109.588623, 76.795721 ] ] ], [ [ [ -100.360107, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.119141, 73.472235 ], [ -98.052979, 72.990483 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.832295 ], [ -100.437012, 72.705372 ], [ -101.546631, 73.359348 ], [ -100.360107, 73.843173 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.968262, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.540283, 63.651136 ], [ -83.100586, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.334229, 76.878281 ], [ -117.114258, 76.529621 ], [ -118.048096, 76.480910 ], [ -119.904785, 76.053213 ], [ -121.497803, 75.901478 ], [ -122.860107, 76.116622 ], [ -121.157227, 76.865804 ], [ -119.102783, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.712402, 75.745421 ], [ -98.162842, 75.002097 ], [ -99.810791, 74.899404 ], [ -100.887451, 75.058854 ], [ -100.865479, 75.642260 ], [ -102.502441, 75.565780 ], [ -102.568359, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.588356 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -94.504395, 74.137081 ], [ -92.427979, 74.101006 ], [ -90.516357, 73.858452 ], [ -92.010498, 72.967971 ], [ -93.197021, 72.773828 ], [ -94.273682, 72.026510 ], [ -95.416260, 72.063764 ], [ -96.031494, 72.942209 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.864559 ], [ -94.504395, 74.137081 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.535156, 79.165141 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.324981 ], [ -99.678955, 77.908767 ], [ -101.304932, 78.018734 ], [ -102.952881, 78.342753 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.833740, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.082425 ], [ -98.558350, 78.457624 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -75.893555, 68.289716 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.981201, 67.101656 ], [ -77.233887, 67.588287 ], [ -76.805420, 68.151121 ], [ -75.893555, 68.289716 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.977051, 75.297735 ], [ -93.614502, 74.979336 ], [ -94.163818, 74.593027 ], [ -95.614014, 74.668733 ], [ -96.822510, 74.927999 ], [ -96.295166, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.192871, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.730713, 78.050621 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.885010, 78.406954 ], [ -112.543945, 78.409162 ], [ -112.532959, 78.551769 ], [ -111.500244, 78.850946 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.634189 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.636475, 48.603858 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.856201, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.603027, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.305420, 26.833875 ], [ -99.525146, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.117676, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.116622 ], [ -105.040283, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.036020 ], [ -114.818115, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.301025, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.629883, 34.606085 ], [ -120.750732, 35.155846 ], [ -121.717529, 36.155618 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.779399 ], [ -122.958984, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.870850, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.694824, 48.180739 ], [ -124.573975, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.363037, 58.407468 ], [ -132.736816, 57.692406 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.262197 ], [ -155.786133, 20.241583 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.445874 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.939941, 19.051734 ], [ -155.906982, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.169411 ], [ -155.863037, 20.262197 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.910134 ], [ -155.994873, 20.766387 ], [ -156.082764, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.258301, 21.217701 ], [ -156.763916, 21.176729 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.094751 ], [ -157.258301, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.647217 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.258661 ], [ -158.126221, 21.309846 ], [ -158.258057, 21.534847 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.466553, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.752197, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.822998, 49.389524 ], [ -94.647217, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.636475, 48.603858 ], [ -92.614746, 48.451066 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -89.593506, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.111326 ], [ -83.616943, 46.111326 ], [ -83.463135, 45.989329 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.891846, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.002686, 43.269206 ], [ -79.167480, 43.460894 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.311279, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.653076, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.084937 ], [ -70.806885, 42.859860 ], [ -70.817871, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.138968 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.631867 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.235107, 41.120746 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.856201, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.603027, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.305420, 26.833875 ], [ -99.525146, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.117676, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.116622 ], [ -105.040283, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.149902, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.248291, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.312988, 32.036020 ], [ -114.818115, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.301025, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.629883, 34.606085 ], [ -120.750732, 35.155846 ], [ -121.717529, 36.155618 ], [ -122.552490, 37.553288 ], [ -122.519531, 37.779399 ], [ -122.958984, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.870850, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.694824, 48.180739 ], [ -124.573975, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -156.588135, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.907471, 70.891482 ], [ -152.215576, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.987549, 69.714298 ], [ -140.998535, 60.305185 ], [ -140.020752, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.483398, 59.784051 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.363037, 58.407468 ], [ -132.736816, 57.692406 ], [ -131.715088, 56.553428 ], [ -130.012207, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.580566, 60.081284 ], [ -143.964844, 59.998986 ], [ -145.931396, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.313721, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.213660 ], [ -157.730713, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.049561, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.496492 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.268066, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.784912, 64.788168 ], [ -161.400146, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.335150 ], [ -163.553467, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.431885, 64.685016 ], [ -166.849365, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.795166, 66.076002 ], [ -161.685791, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.118748 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.772461, 68.358699 ], [ -166.212158, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.938232, 69.858546 ], [ -161.916504, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.126221, 70.826640 ], [ -156.588135, 71.357067 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.522705, 56.992883 ], [ -154.676514, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.496826, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.695068, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.475830, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.475830, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.841064, 82.726530 ], [ -22.686768, 82.342636 ], [ -26.510010, 82.298593 ], [ -31.893311, 82.200811 ], [ -31.398926, 82.021378 ], [ -27.850342, 82.131931 ], [ -24.840088, 81.787779 ], [ -22.895508, 82.094243 ], [ -22.071533, 81.734251 ], [ -23.170166, 81.152551 ], [ -20.621338, 81.524751 ], [ -15.765381, 81.912374 ], [ -12.766113, 81.720024 ], [ -12.205811, 81.291703 ], [ -16.281738, 80.580741 ], [ -16.842041, 80.349631 ], [ -20.039062, 80.176839 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.698486, 78.752802 ], [ -19.665527, 77.638894 ], [ -18.468018, 76.985098 ], [ -20.028076, 76.945452 ], [ -21.676025, 76.629067 ], [ -19.830322, 76.098157 ], [ -19.599609, 75.250260 ], [ -20.665283, 75.157673 ], [ -19.368896, 74.295463 ], [ -21.588135, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.565674, 73.308936 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -24.279785, 72.597266 ], [ -24.785156, 72.332464 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -24.301758, 70.859087 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.754345 ], [ -26.356201, 70.226028 ], [ -23.719482, 70.185103 ], [ -22.346191, 70.129165 ], [ -25.026855, 69.260040 ], [ -27.740479, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.200439, 66.679087 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.689953 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.479957 ], [ -42.813721, 62.679186 ], [ -42.418213, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.037417 ], [ -46.263428, 60.850262 ], [ -48.262939, 60.855613 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.294678, 66.839487 ], [ -53.964844, 67.191259 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.732399 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.448486, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.426514, 70.837461 ], [ -51.383057, 70.572458 ], [ -53.107910, 71.205460 ], [ -53.997803, 71.549264 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.315674, 74.712244 ], [ -58.590088, 75.098458 ], [ -58.579102, 75.519151 ], [ -61.270752, 76.103435 ], [ -63.391113, 76.177123 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.009817 ], [ -68.774414, 77.324579 ], [ -66.763916, 77.377506 ], [ -71.037598, 77.636542 ], [ -73.289795, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.367676, 78.914496 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.016357, 80.118564 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.438651 ], [ -47.999268, 82.065480 ], [ -46.593018, 81.986228 ], [ -44.516602, 81.661279 ], [ -46.900635, 82.200811 ], [ -46.757812, 82.628514 ], [ -43.406982, 83.226067 ], [ -39.891357, 83.180561 ], [ -38.616943, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } ] } @@ -2253,25 +2253,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.964307 ], [ 182.449951, 68.200133 ], [ 185.070190, 67.206161 ], [ 184.987793, 66.585400 ], [ 185.657959, 66.335300 ], [ 185.427246, 67.063152 ], [ 187.031250, 66.975221 ], [ 187.031250, 64.251755 ], [ 186.108398, 64.282760 ], [ 185.344849, 64.630939 ], [ 184.015503, 64.923542 ], [ 183.790283, 65.357677 ], [ 182.779541, 65.519792 ], [ 181.642456, 65.389723 ], [ 181.098633, 65.739656 ], [ 181.312866, 66.111619 ], [ 180.115356, 65.874725 ], [ 180.565796, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.709106, 64.534272 ], [ 177.412720, 64.607393 ], [ 178.313599, 64.077003 ], [ 178.906860, 63.250939 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.150269, 60.949110 ], [ 170.700073, 60.335105 ], [ 170.332031, 59.880668 ], [ 168.898315, 60.573476 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.877319, 59.731485 ], [ 163.536987, 59.869641 ], [ 163.218384, 59.209688 ], [ 162.015381, 58.243055 ], [ 162.053833, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.130737, 56.121060 ], [ 161.702271, 55.285372 ], [ 162.119751, 54.854478 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.532715, 52.958566 ], [ 158.230591, 51.944265 ], [ 156.791382, 51.010299 ], [ 156.417847, 51.699800 ], [ 155.989380, 53.159947 ], [ 155.434570, 55.382231 ], [ 155.912476, 56.767778 ], [ 156.758423, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.054632 ], [ 160.153198, 59.313571 ], [ 161.872559, 60.343260 ], [ 163.668823, 61.140584 ], [ 164.470825, 62.550325 ], [ 163.256836, 62.466646 ], [ 162.658081, 61.642945 ], [ 160.120239, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.220581, 59.759162 ], [ 155.044556, 59.144952 ], [ 152.814331, 58.884781 ], [ 151.265259, 58.779591 ], [ 151.336670, 59.503667 ], [ 149.782104, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.486450, 59.335991 ], [ 142.196045, 59.040555 ], [ 138.960571, 57.088515 ], [ 135.126343, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.255598 ], [ 139.899902, 54.188155 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.237892 ], [ 140.597534, 51.241286 ], [ 140.515137, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.027466, 48.476563 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.855835, 56.758746 ], [ 27.767944, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.725451 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.029186 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.780916 ], [ 31.140747, 62.357256 ], [ 31.514282, 62.867674 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.203987 ], [ 29.542236, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.017700, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 34.815674, 65.899410 ], [ 34.876099, 65.435435 ], [ 34.942017, 64.413549 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.143806 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.009574 ], [ 46.351318, 66.668211 ], [ 47.894897, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.229492, 67.999341 ], [ 53.717651, 68.857574 ], [ 54.470215, 68.807986 ], [ 53.486938, 68.202172 ], [ 54.728394, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.465816 ], [ 58.804321, 68.881337 ], [ 59.941406, 68.277521 ], [ 61.078491, 68.940633 ], [ 60.029297, 69.519147 ], [ 60.551147, 69.849086 ], [ 63.506470, 69.547958 ], [ 64.890747, 69.234737 ], [ 68.510742, 68.091759 ], [ 69.180908, 68.616534 ], [ 68.164673, 69.144965 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.928415 ], [ 66.725464, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.197388, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.850586, 71.409675 ], [ 72.471313, 71.090085 ], [ 72.789917, 70.390763 ], [ 72.564697, 69.021414 ], [ 73.668823, 68.407268 ], [ 73.240356, 67.740678 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.171609 ], [ 72.822876, 66.532956 ], [ 73.921509, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.053101, 67.761477 ], [ 74.470825, 68.328291 ], [ 74.937744, 68.989925 ], [ 73.844604, 69.070526 ], [ 73.602905, 69.628422 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.446415 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.300761 ], [ 75.289307, 71.335983 ], [ 76.360474, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.502075, 71.749873 ], [ 80.612183, 72.582473 ], [ 80.513306, 73.647906 ], [ 82.249146, 73.849286 ], [ 84.655151, 73.806447 ], [ 86.824951, 73.936155 ], [ 86.011963, 74.459663 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.143595 ], [ 90.258179, 75.639536 ], [ 92.900391, 75.773797 ], [ 93.235474, 76.046592 ], [ 95.861206, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.761108, 76.430738 ], [ 101.035767, 76.862059 ], [ 101.991577, 77.287159 ], [ 104.353638, 77.697553 ], [ 106.067505, 77.373904 ], [ 104.705200, 77.127825 ], [ 106.968384, 76.973960 ], [ 107.237549, 76.479626 ], [ 108.154907, 76.722747 ], [ 111.077271, 76.710125 ], [ 113.329468, 76.221675 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.780151, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.401855, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.120972, 73.788054 ], [ 113.021851, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.752742 ], [ 118.778687, 73.587482 ], [ 119.020386, 73.120161 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.734289 ], [ 125.381470, 73.559522 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.038624 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.655020 ], [ 137.499390, 71.348285 ], [ 138.235474, 71.627338 ], [ 139.872437, 71.488319 ], [ 139.147339, 72.415631 ], [ 140.465698, 72.850122 ], [ 149.501953, 72.200284 ], [ 150.353394, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.031249 ], [ 158.999634, 70.866291 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.436340 ], [ 162.279053, 69.641804 ], [ 164.053345, 69.668541 ], [ 165.942993, 69.471042 ], [ 167.838135, 69.582480 ], [ 169.579468, 68.694509 ], [ 170.815430, 69.013546 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.644409, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.599243, 69.399649 ], [ 180.000000, 68.964307 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.012207, 66.585400 ], [ -174.342041, 66.335300 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.290894, 64.534272 ], [ -182.587280, 64.607393 ], [ -181.686401, 64.077003 ], [ -181.093140, 63.250939 ], [ -180.631714, 62.982684 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -182.636719, 62.522458 ], [ -185.432739, 61.767926 ], [ -186.317139, 61.653379 ], [ -187.031250, 61.328269 ], [ -187.031250, 69.877452 ], [ -186.355591, 69.816891 ], [ -184.273682, 69.877452 ], [ -181.400757, 69.399649 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.159180, 76.939247 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.233445 ], [ 64.638062, 75.737303 ], [ 61.583862, 75.261444 ], [ 58.474731, 74.308839 ], [ 56.986084, 73.332585 ], [ 55.420532, 72.370768 ], [ 55.623779, 71.540569 ], [ 57.535400, 70.719913 ], [ 56.947632, 70.632662 ], [ 53.679199, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.602783, 71.474361 ], [ 51.454468, 72.014641 ], [ 52.476196, 72.228809 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.508911, 73.749668 ], [ 55.903931, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.870483, 75.609532 ], [ 61.171875, 76.251734 ], [ 64.500732, 76.438468 ], [ 66.209106, 76.809516 ], [ 68.159180, 76.939247 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.880647 ], [ 97.756348, 78.756016 ], [ 94.971313, 79.044703 ], [ 93.312378, 79.426325 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341340 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ], [ [ [ 138.828735, 76.136379 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.261444 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.136379 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.746884 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.904907, 46.807580 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.591797, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 102.084961, 79.346396 ], [ 102.837524, 79.281206 ], [ 105.369873, 78.713091 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.266479, 79.234107 ], [ 102.084961, 79.346396 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.699559 ], [ 51.135864, 80.547420 ], [ 49.795532, 80.415707 ], [ 48.894653, 80.339497 ], [ 48.757324, 80.175902 ], [ 47.587280, 80.010518 ], [ 46.505127, 80.246879 ], [ 47.070923, 80.559141 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.097900, 80.753556 ], [ 50.037231, 80.918894 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.732422, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.359863, 75.497157 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.022217, 71.556217 ], [ -177.577515, 71.269067 ], [ -177.665405, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -181.098633, 70.781486 ], [ -181.274414, 71.098984 ], [ -180.000000, 71.516203 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.977783, 71.556217 ], [ 182.422485, 71.269067 ], [ 182.334595, 71.132764 ], [ 181.307373, 70.893280 ], [ 180.000000, 70.832051 ], [ 178.901367, 70.781486 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ 142.064209, 73.856925 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.212427 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.316823 ], [ 139.861450, 73.370356 ], [ 140.811768, 73.765033 ], [ 142.064209, 73.856925 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } @@ -2279,7 +2279,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.964307 ], [ 182.449951, 68.200133 ], [ 185.070190, 67.206161 ], [ 184.987793, 66.585400 ], [ 185.657959, 66.335300 ], [ 185.427246, 67.063152 ], [ 187.031250, 66.975221 ], [ 187.031250, 64.251755 ], [ 186.108398, 64.282760 ], [ 185.344849, 64.630939 ], [ 184.015503, 64.923542 ], [ 183.790283, 65.357677 ], [ 182.779541, 65.519792 ], [ 181.642456, 65.389723 ], [ 181.098633, 65.739656 ], [ 181.312866, 66.111619 ], [ 180.115356, 65.874725 ], [ 180.565796, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.709106, 64.534272 ], [ 177.412720, 64.607393 ], [ 178.313599, 64.077003 ], [ 178.906860, 63.250939 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.150269, 60.949110 ], [ 170.700073, 60.335105 ], [ 170.332031, 59.880668 ], [ 168.898315, 60.573476 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.877319, 59.731485 ], [ 163.536987, 59.869641 ], [ 163.218384, 59.209688 ], [ 162.015381, 58.243055 ], [ 162.053833, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.130737, 56.121060 ], [ 161.702271, 55.285372 ], [ 162.119751, 54.854478 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.532715, 52.958566 ], [ 158.230591, 51.944265 ], [ 156.791382, 51.010299 ], [ 156.417847, 51.699800 ], [ 155.989380, 53.159947 ], [ 155.434570, 55.382231 ], [ 155.912476, 56.767778 ], [ 156.758423, 57.365052 ], [ 156.807861, 57.833055 ], [ 158.362427, 58.054632 ], [ 160.153198, 59.313571 ], [ 161.872559, 60.343260 ], [ 163.668823, 61.140584 ], [ 164.470825, 62.550325 ], [ 163.256836, 62.466646 ], [ 162.658081, 61.642945 ], [ 160.120239, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.220581, 59.759162 ], [ 155.044556, 59.144952 ], [ 152.814331, 58.884781 ], [ 151.265259, 58.779591 ], [ 151.336670, 59.503667 ], [ 149.782104, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.486450, 59.335991 ], [ 142.196045, 59.040555 ], [ 138.960571, 57.088515 ], [ 135.126343, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.255598 ], [ 139.899902, 54.188155 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.237892 ], [ 140.597534, 51.241286 ], [ 140.515137, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.027466, 48.476563 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.855835, 56.758746 ], [ 27.767944, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.725451 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.029186 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.780916 ], [ 31.140747, 62.357256 ], [ 31.514282, 62.867674 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.203987 ], [ 29.542236, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.017700, 66.266856 ], [ 38.380737, 66.000150 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 34.815674, 65.899410 ], [ 34.876099, 65.435435 ], [ 34.942017, 64.413549 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.143806 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.009574 ], [ 46.351318, 66.668211 ], [ 47.894897, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.229492, 67.999341 ], [ 53.717651, 68.857574 ], [ 54.470215, 68.807986 ], [ 53.486938, 68.202172 ], [ 54.728394, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.465816 ], [ 58.804321, 68.881337 ], [ 59.941406, 68.277521 ], [ 61.078491, 68.940633 ], [ 60.029297, 69.519147 ], [ 60.551147, 69.849086 ], [ 63.506470, 69.547958 ], [ 64.890747, 69.234737 ], [ 68.510742, 68.091759 ], [ 69.180908, 68.616534 ], [ 68.164673, 69.144965 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.928415 ], [ 66.725464, 70.709027 ], [ 66.692505, 71.029464 ], [ 68.538208, 71.934751 ], [ 69.197388, 72.843642 ], [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.850586, 71.409675 ], [ 72.471313, 71.090085 ], [ 72.789917, 70.390763 ], [ 72.564697, 69.021414 ], [ 73.668823, 68.407268 ], [ 73.240356, 67.740678 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.171609 ], [ 72.822876, 66.532956 ], [ 73.921509, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.053101, 67.761477 ], [ 74.470825, 68.328291 ], [ 74.937744, 68.989925 ], [ 73.844604, 69.070526 ], [ 73.602905, 69.628422 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.446415 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.300761 ], [ 75.289307, 71.335983 ], [ 76.360474, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.502075, 71.749873 ], [ 80.612183, 72.582473 ], [ 80.513306, 73.647906 ], [ 82.249146, 73.849286 ], [ 84.655151, 73.806447 ], [ 86.824951, 73.936155 ], [ 86.011963, 74.459663 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.143595 ], [ 90.258179, 75.639536 ], [ 92.900391, 75.773797 ], [ 93.235474, 76.046592 ], [ 95.861206, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.761108, 76.430738 ], [ 101.035767, 76.862059 ], [ 101.991577, 77.287159 ], [ 104.353638, 77.697553 ], [ 106.067505, 77.373904 ], [ 104.705200, 77.127825 ], [ 106.968384, 76.973960 ], [ 107.237549, 76.479626 ], [ 108.154907, 76.722747 ], [ 111.077271, 76.710125 ], [ 113.329468, 76.221675 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.780151, 75.031921 ], [ 110.148926, 74.477314 ], [ 109.401855, 74.180566 ], [ 110.637817, 74.040702 ], [ 112.120972, 73.788054 ], [ 113.021851, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.752742 ], [ 118.778687, 73.587482 ], [ 119.020386, 73.120161 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.734289 ], [ 125.381470, 73.559522 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.038624 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.386895 ], [ 135.560303, 71.655020 ], [ 137.499390, 71.348285 ], [ 138.235474, 71.627338 ], [ 139.872437, 71.488319 ], [ 139.147339, 72.415631 ], [ 140.465698, 72.850122 ], [ 149.501953, 72.200284 ], [ 150.353394, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.031249 ], [ 158.999634, 70.866291 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.436340 ], [ 162.279053, 69.641804 ], [ 164.053345, 69.668541 ], [ 165.942993, 69.471042 ], [ 167.838135, 69.582480 ], [ 169.579468, 68.694509 ], [ 170.815430, 69.013546 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.644409, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.599243, 69.399649 ], [ 180.000000, 68.964307 ] ] ], [ [ [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.012207, 66.585400 ], [ -174.342041, 66.335300 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.290894, 64.534272 ], [ -182.587280, 64.607393 ], [ -181.686401, 64.077003 ], [ -181.093140, 63.250939 ], [ -180.631714, 62.982684 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -182.636719, 62.522458 ], [ -185.432739, 61.767926 ], [ -186.317139, 61.653379 ], [ -187.031250, 61.328269 ], [ -187.031250, 69.877452 ], [ -186.355591, 69.816891 ], [ -184.273682, 69.877452 ], [ -181.400757, 69.399649 ], [ -180.000000, 68.964307 ] ] ], [ [ [ 68.159180, 76.939247 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.233445 ], [ 64.638062, 75.737303 ], [ 61.583862, 75.261444 ], [ 58.474731, 74.308839 ], [ 56.986084, 73.332585 ], [ 55.420532, 72.370768 ], [ 55.623779, 71.540569 ], [ 57.535400, 70.719913 ], [ 56.947632, 70.632662 ], [ 53.679199, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.602783, 71.474361 ], [ 51.454468, 72.014641 ], [ 52.476196, 72.228809 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.508911, 73.749668 ], [ 55.903931, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.870483, 75.609532 ], [ 61.171875, 76.251734 ], [ 64.500732, 76.438468 ], [ 66.209106, 76.809516 ], [ 68.159180, 76.939247 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 99.937134, 78.880647 ], [ 97.756348, 78.756016 ], [ 94.971313, 79.044703 ], [ 93.312378, 79.426325 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341340 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ], [ [ [ 138.828735, 76.136379 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.261444 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.136379 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.746884 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.904907, 46.807580 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.591797, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 102.084961, 79.346396 ], [ 102.837524, 79.281206 ], [ 105.369873, 78.713091 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.266479, 79.234107 ], [ 102.084961, 79.346396 ] ] ], [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.699559 ], [ 51.135864, 80.547420 ], [ 49.795532, 80.415707 ], [ 48.894653, 80.339497 ], [ 48.757324, 80.175902 ], [ 47.587280, 80.010518 ], [ 46.505127, 80.246879 ], [ 47.070923, 80.559141 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.097900, 80.753556 ], [ 50.037231, 80.918894 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.732422, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.359863, 75.497157 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.022217, 71.556217 ], [ -177.577515, 71.269067 ], [ -177.665405, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -181.098633, 70.781486 ], [ -181.274414, 71.098984 ], [ -180.000000, 71.516203 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.977783, 71.556217 ], [ 182.422485, 71.269067 ], [ 182.334595, 71.132764 ], [ 181.307373, 70.893280 ], [ 180.000000, 70.832051 ], [ 178.901367, 70.781486 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.516203 ] ] ], [ [ [ 142.064209, 73.856925 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.212427 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.316823 ], [ 139.861450, 73.370356 ], [ 140.811768, 73.765033 ], [ 142.064209, 73.856925 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } @@ -2305,19 +2305,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2325,7 +2325,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2333,7 +2333,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2363,7 +2363,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.812622, 32.523658 ], [ -113.307495, 32.040677 ], [ -111.022339, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.506958, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.034790, 30.642638 ], [ -104.705200, 30.121373 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.969701 ], [ -102.480469, 29.759609 ], [ -101.661987, 29.778682 ], [ -100.958862, 29.382175 ], [ -100.453491, 28.695406 ], [ -100.107422, 28.110749 ], [ -99.519653, 27.542371 ], [ -99.299927, 26.838776 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.061718 ], [ -97.531128, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.991037 ], [ -97.701416, 24.272005 ], [ -97.778320, 22.933101 ], [ -97.871704, 22.446572 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.065918, 17.821916 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.693970, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.770264 ], [ -107.913208, 24.547123 ], [ -108.402100, 25.170145 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.824617 ], [ -109.291992, 26.441066 ], [ -109.802856, 26.676913 ], [ -110.390625, 27.161808 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.941034 ], [ -111.758423, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.148193, 31.170510 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.522361 ], [ -114.774170, 31.798224 ], [ -114.938965, 31.391158 ], [ -114.768677, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.329224, 29.750071 ], [ -113.587646, 29.060971 ], [ -113.422852, 28.825425 ], [ -113.274536, 28.753213 ], [ -113.142700, 28.410728 ], [ -112.961426, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -111.615601, 26.662187 ], [ -111.286011, 25.730633 ], [ -110.989380, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.769897, 23.810475 ], [ -109.407349, 23.362429 ], [ -109.434814, 23.185813 ], [ -109.852295, 22.816694 ], [ -110.033569, 22.821757 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.670532, 24.482149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.054321, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.197388, 28.115594 ], [ -114.164429, 28.565225 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.554345 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } ] } @@ -2373,7 +2373,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2381,7 +2381,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2433,7 +2433,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.812622, 32.523658 ], [ -113.307495, 32.040677 ], [ -111.022339, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.506958, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.034790, 30.642638 ], [ -104.705200, 30.121373 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.969701 ], [ -102.480469, 29.759609 ], [ -101.661987, 29.778682 ], [ -100.958862, 29.382175 ], [ -100.453491, 28.695406 ], [ -100.107422, 28.110749 ], [ -99.519653, 27.542371 ], [ -99.299927, 26.838776 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.061718 ], [ -97.531128, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.991037 ], [ -97.701416, 24.272005 ], [ -97.778320, 22.933101 ], [ -97.871704, 22.446572 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.065918, 17.821916 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.693970, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.770264 ], [ -107.913208, 24.547123 ], [ -108.402100, 25.170145 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.824617 ], [ -109.291992, 26.441066 ], [ -109.802856, 26.676913 ], [ -110.390625, 27.161808 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.941034 ], [ -111.758423, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.148193, 31.170510 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.522361 ], [ -114.774170, 31.798224 ], [ -114.938965, 31.391158 ], [ -114.768677, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.329224, 29.750071 ], [ -113.587646, 29.060971 ], [ -113.422852, 28.825425 ], [ -113.274536, 28.753213 ], [ -113.142700, 28.410728 ], [ -112.961426, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -111.615601, 26.662187 ], [ -111.286011, 25.730633 ], [ -110.989380, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.769897, 23.810475 ], [ -109.407349, 23.362429 ], [ -109.434814, 23.185813 ], [ -109.852295, 22.816694 ], [ -110.033569, 22.821757 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.670532, 24.482149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.054321, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.197388, 28.115594 ], [ -114.164429, 28.565225 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.554345 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } ] } @@ -2443,7 +2443,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2577,7 +2577,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.812622, 32.523658 ], [ -113.307495, 32.040677 ], [ -111.022339, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.506958, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.034790, 30.642638 ], [ -104.705200, 30.121373 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.969701 ], [ -102.480469, 29.759609 ], [ -101.661987, 29.778682 ], [ -100.958862, 29.382175 ], [ -100.453491, 28.695406 ], [ -100.107422, 28.110749 ], [ -99.519653, 27.542371 ], [ -99.299927, 26.838776 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.061718 ], [ -97.531128, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.991037 ], [ -97.701416, 24.272005 ], [ -97.778320, 22.933101 ], [ -97.871704, 22.446572 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.065918, 17.821916 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.693970, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.770264 ], [ -107.913208, 24.547123 ], [ -108.402100, 25.170145 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.824617 ], [ -109.291992, 26.441066 ], [ -109.802856, 26.676913 ], [ -110.390625, 27.161808 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.941034 ], [ -111.758423, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.148193, 31.170510 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.522361 ], [ -114.774170, 31.798224 ], [ -114.938965, 31.391158 ], [ -114.768677, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.329224, 29.750071 ], [ -113.587646, 29.060971 ], [ -113.422852, 28.825425 ], [ -113.274536, 28.753213 ], [ -113.142700, 28.410728 ], [ -112.961426, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -111.615601, 26.662187 ], [ -111.286011, 25.730633 ], [ -110.989380, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.769897, 23.810475 ], [ -109.407349, 23.362429 ], [ -109.434814, 23.185813 ], [ -109.852295, 22.816694 ], [ -110.033569, 22.821757 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.670532, 24.482149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.054321, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.197388, 28.115594 ], [ -114.164429, 28.565225 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.554345 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } , @@ -2591,7 +2591,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , @@ -2723,7 +2723,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.770264, 66.559192 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.417603, 70.366783 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -72.833862, 83.233191 ], [ -70.664062, 83.169463 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.659302, 81.501241 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.967163, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -68.785400, 63.746061 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.203247, 72.235514 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ], [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -111.796875, 75.161894 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -105.490723, 79.301620 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -111.500244, 78.849883 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.461060, 21.881890 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ], [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.707275, 40.930115 ], [ -72.240601, 41.120746 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ], [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.038452, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.044067, 58.918828 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.571117 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -156.582642, 71.357067 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json index 6345de80e..3786a8b23 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tile_size_desired\":39220},{\"coalesced_as_needed\":212,\"tile_size_desired\":25157},{\"coalesced_as_needed\":192,\"tiny_polygons\":3,\"tile_size_desired\":21207},{\"coalesced_as_needed\":156,\"tiny_polygons\":11,\"tile_size_desired\":10753},{\"coalesced_as_needed\":65,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", +"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tile_size_desired\":39222},{\"coalesced_as_needed\":212,\"tile_size_desired\":25157},{\"coalesced_as_needed\":192,\"tiny_polygons\":3,\"tile_size_desired\":21207},{\"coalesced_as_needed\":156,\"tiny_polygons\":11,\"tile_size_desired\":10753},{\"coalesced_as_needed\":65,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", "type": "overlay", "version": "2" }, "features": [ @@ -1365,7 +1365,7 @@ , { "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.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ -15.545654, 12.624258 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.144409, 12.543840 ], [ -15.814819, 12.511665 ], [ -15.545654, 12.624258 ] ] ], [ [ [ -15.078735, 13.875413 ], [ -14.683228, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.790071 ], [ -13.842773, 13.501814 ], [ -14.276733, 13.277373 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.266680 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.078735, 13.875413 ] ] ] ] } } , @@ -4097,9 +4097,9 @@ , { "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.035278, 22.146708 ], [ -13.007812, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -17.004089, 21.419833 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , { "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , @@ -4235,10 +4235,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } +, { "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json index ddb660c90..bdf0ff170 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tile_size_desired\":39220},{\"coalesced_as_needed\":217,\"tile_size_desired\":25157},{\"coalesced_as_needed\":218,\"tiny_polygons\":2,\"tile_size_desired\":21207},{\"coalesced_as_needed\":227,\"tiny_polygons\":4,\"tile_size_desired\":10753},{\"coalesced_as_needed\":192,\"tiny_polygons\":13,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", +"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tile_size_desired\":39222},{\"coalesced_as_needed\":217,\"tile_size_desired\":25157},{\"coalesced_as_needed\":218,\"tiny_polygons\":2,\"tile_size_desired\":21207},{\"coalesced_as_needed\":227,\"tiny_polygons\":4,\"tile_size_desired\":10753},{\"coalesced_as_needed\":192,\"tiny_polygons\":13,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", "type": "overlay", "version": "2" }, "features": [ @@ -1095,9 +1095,9 @@ , { "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": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ], [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -13.062744, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.826538, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.832031, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } , { "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": "MultiPolygon", "coordinates": [ [ [ [ -15.545654, 12.624258 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.144409, 12.543840 ], [ -15.814819, 12.511665 ], [ -15.545654, 12.624258 ] ] ], [ [ [ -15.078735, 13.875413 ], [ -14.683228, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.790071 ], [ -13.842773, 13.501814 ], [ -14.276733, 13.277373 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.266680 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.078735, 13.875413 ] ] ] ] } } , @@ -3669,9 +3669,9 @@ , { "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.035278, 22.146708 ], [ -13.007812, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -17.004089, 21.419833 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , { "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , @@ -3807,10 +3807,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } +, { "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json index 22402eb4e..9d1ec2a6f 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":1272,\"tile_size_desired\":39220},{\"coalesced_as_needed\":1191,\"tiny_polygons\":1,\"tile_size_desired\":25157},{\"coalesced_as_needed\":731,\"tiny_polygons\":3,\"tile_size_desired\":21207},{\"coalesced_as_needed\":178,\"tiny_polygons\":8,\"tile_size_desired\":10753},{\"coalesced_as_needed\":74,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", +"strategies": "[{\"coalesced_as_needed\":1271,\"tile_size_desired\":39222},{\"coalesced_as_needed\":1191,\"tiny_polygons\":1,\"tile_size_desired\":25157},{\"coalesced_as_needed\":731,\"tiny_polygons\":3,\"tile_size_desired\":21207},{\"coalesced_as_needed\":178,\"tiny_polygons\":8,\"tile_size_desired\":10753},{\"coalesced_as_needed\":74,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", "type": "overlay", "version": "2" }, "features": [ @@ -395,11 +395,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "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": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.436577 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.272026 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.271240, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.040527, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.688721, 13.624633 ], [ -15.084229, 13.870080 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ], [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.718822 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.496018 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.668213, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.928407 ], [ -11.931152, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.766051 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ] ] ], [ [ [ -6.536865, 41.640078 ], [ -6.383057, 41.385052 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.020264, 40.187267 ], [ -7.064209, 39.707187 ], [ -7.492676, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ -6.536865, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.718822 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.496018 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.668213, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.928407 ], [ -11.931152, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.766051 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ] ] ], [ [ [ -6.536865, 41.640078 ], [ -6.383057, 41.385052 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.020264, 40.187267 ], [ -7.064209, 39.707187 ], [ -7.492676, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ -6.536865, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.092166 ], [ -0.758057, 10.930405 ], [ -1.197510, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.844482, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.437500, 7.689217 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.915521 ], [ -8.602295, 6.468151 ], [ -8.305664, 6.195168 ], [ -7.987061, 6.129631 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.195068, 7.100893 ], [ -11.140137, 7.395153 ], [ -10.689697, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.820312, 12.511665 ], [ -15.545654, 12.629618 ], [ -13.216553, 12.576010 ], [ -12.502441, 12.329269 ], [ -12.282715, 12.350734 ], [ -12.205811, 12.468760 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.758232 ], [ -11.546631, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.766051 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.372514 ], [ -11.964111, 25.928407 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ], [ [ [ -15.084229, 13.870080 ], [ -14.688721, 13.624633 ], [ -14.370117, 13.624633 ], [ -14.040527, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.271240, 13.282719 ], [ -14.710693, 13.293411 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.272026 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.402832, 13.859414 ], [ -15.084229, 13.870080 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.976627 ], [ -1.999512, 14.562318 ], [ -2.186279, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.526611, 13.336175 ], [ -4.010010, 13.475106 ], [ -4.273682, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.716788 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.844482, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.206787, 8.450639 ], [ -8.294678, 8.320212 ], [ -8.217773, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.307985 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.019531, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.352823 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.920166, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.838979 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.766051 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.372514 ], [ -11.964111, 25.928407 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.987061, 6.129631 ], [ -8.305664, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.915521 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.570158 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.844482, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.817329 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.515625, 9.903921 ], [ -2.823486, 9.644077 ], [ -2.966309, 10.390572 ], [ -2.944336, 10.962764 ], [ -1.197510, 11.005904 ], [ -0.758057, 10.930405 ], [ -0.439453, 11.092166 ] ] ], [ [ [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.689697, 7.939556 ], [ -11.140137, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.044585 ], [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.352823 ], [ -10.228271, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.307985 ], [ -8.920898, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.283691, 7.689217 ], [ -8.217773, 8.124491 ], [ -8.294678, 8.320212 ], [ -8.206787, 8.450639 ], [ -7.833252, 8.570158 ], [ -8.074951, 9.373193 ], [ -8.305664, 9.784851 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.293301 ], [ -7.624512, 10.141932 ], [ -6.844482, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.520219 ], [ -6.053467, 10.098670 ], [ -5.811768, 10.217625 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.273682, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.098145, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.186279, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ], [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 0.878906, 14.955399 ] ] ], [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] ] } } , @@ -1321,9 +1321,9 @@ , { "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": "MultiPolygon", "coordinates": [ [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.618286, 9.264779 ], [ -10.651245, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.189707 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.970581, 4.351889 ], [ -9.003296, 4.833733 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.258945 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.616998 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.855216 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ], [ [ [ 0.027466, 11.016689 ], [ 0.439453, 11.011297 ], [ 0.439453, 8.857934 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.914224 ], [ 0.027466, 11.016689 ] ] ], [ [ [ -15.545654, 12.624258 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.144409, 12.543840 ], [ -15.814819, 12.511665 ], [ -15.545654, 12.624258 ] ] ], [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ], [ [ [ -15.078735, 13.875413 ], [ -14.683228, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.790071 ], [ -13.842773, 13.501814 ], [ -14.276733, 13.277373 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.266680 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.078735, 13.875413 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.826538, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.832031, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } , { "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.125709 ], [ -8.305664, 9.790264 ], [ -8.080444, 9.373193 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.217773, 8.124491 ], [ -8.278198, 7.683773 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , @@ -4043,9 +4043,9 @@ , { "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.035278, 22.146708 ], [ -13.007812, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -17.004089, 21.419833 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , { "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , @@ -4181,10 +4181,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } +, { "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json index cbf2380a5..ea5210179 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39220},{\"dropped_as_needed\":202,\"tile_size_desired\":25157},{\"dropped_as_needed\":190,\"tiny_polygons\":2,\"tile_size_desired\":21207},{\"dropped_as_needed\":156,\"tiny_polygons\":12,\"tile_size_desired\":10753},{\"dropped_as_needed\":78,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", +"strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39222},{\"dropped_as_needed\":202,\"tile_size_desired\":25157},{\"dropped_as_needed\":190,\"tiny_polygons\":2,\"tile_size_desired\":21207},{\"dropped_as_needed\":156,\"tiny_polygons\":12,\"tile_size_desired\":10753},{\"dropped_as_needed\":78,\"tiny_polygons\":20,\"tile_size_desired\":6588},{\"tiny_polygons\":46}]", "type": "overlay", "version": "2" }, "features": [ @@ -1377,9 +1377,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.826538, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.832031, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.624258 ], [ -15.814819, 12.511665 ], [ -16.144409, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.266680 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.277373 ], [ -13.842773, 13.501814 ], [ -14.046021, 13.790071 ], [ -14.375610, 13.624633 ], [ -14.683228, 13.629972 ], [ -15.078735, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } , { "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": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.125709 ], [ -8.305664, 9.790264 ], [ -8.080444, 9.373193 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.217773, 8.124491 ], [ -8.278198, 7.683773 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , @@ -4099,9 +4099,9 @@ , { "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.035278, 22.146708 ], [ -13.007812, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -17.004089, 21.419833 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.832031, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , { "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": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , @@ -4237,10 +4237,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "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": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } +, { "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": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } diff --git a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json index c7c0350ae..229cf33b4 100644 --- a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json @@ -16,18 +16,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -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.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.910888 ], [ -93.867188, 71.746432 ], [ -92.900391, 71.328950 ], [ -91.494141, 70.199994 ], [ -92.373047, 69.687618 ], [ -90.527344, 69.503765 ], [ -90.527344, 68.463800 ], [ -89.208984, 69.256149 ], [ -87.978516, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.908619 ], [ -85.605469, 68.784144 ], [ -85.517578, 69.869892 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.656555 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.101656 ], [ -83.320312, 66.407955 ], [ -84.726562, 66.266856 ], [ -85.781250, 66.548263 ], [ -86.044922, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.363281, 64.774125 ], [ -88.505859, 64.091408 ], [ -89.912109, 64.014496 ], [ -90.703125, 63.626745 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.658203, 60.108670 ], [ -94.658203, 58.950008 ], [ -93.251953, 58.768200 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.066406, 56.462490 ], [ -87.363281, 56.022948 ], [ -86.044922, 55.727110 ], [ -84.990234, 55.279115 ], [ -82.265625, 55.128649 ], [ -82.441406, 54.265224 ], [ -82.089844, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.234407 ], [ -79.101562, 51.508742 ], [ -78.574219, 52.536273 ], [ -79.101562, 54.162434 ], [ -79.804688, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.511018 ], [ -76.640625, 57.183902 ], [ -77.343750, 58.031372 ], [ -78.486328, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.308794 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.828125, 62.431074 ], [ -71.718750, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.239811 ], [ -69.257812, 58.950008 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.214844, 59.888937 ], [ -64.599609, 60.326948 ], [ -61.435547, 56.944974 ], [ -61.787109, 56.316537 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.927142 ], [ -57.304688, 54.622978 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.644638 ], [ -55.722656, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.399206 ], [ -58.798828, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.699219, 50.064192 ], [ -63.896484, 50.289339 ], [ -66.357422, 50.233152 ], [ -67.236328, 49.496675 ], [ -68.554688, 49.095452 ], [ -71.103516, 46.800059 ], [ -70.224609, 46.980252 ], [ -68.642578, 48.283193 ], [ -66.533203, 49.152970 ], [ -65.039062, 49.210420 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.048710 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 46.980252 ], [ -60.468750, 46.255847 ], [ -59.765625, 45.890008 ], [ -60.996094, 45.274886 ], [ -63.281250, 44.653024 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.516689 ], [ -66.093750, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.763672, 45.706179 ], [ -67.763672, 47.040182 ], [ -68.203125, 47.338823 ], [ -68.906250, 47.159840 ], [ -69.257812, 47.457809 ], [ -69.960938, 46.679594 ], [ -70.312500, 45.890008 ], [ -70.664062, 45.460131 ], [ -71.367188, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.464844, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.452919 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -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.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.583984, 46.134170 ], [ -83.847656, 46.134170 ], [ -84.111328, 46.255847 ], [ -84.111328, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.619261 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.283193 ], [ -89.296875, 48.048710 ], [ -89.560547, 47.989922 ], [ -90.791016, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.306641, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.382373 ], [ -95.185547, 49.382373 ], [ -95.185547, 48.980217 ], [ -122.958984, 48.980217 ], [ -125.595703, 50.401515 ], [ -127.441406, 50.847573 ], [ -127.968750, 51.727028 ], [ -127.880859, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.540307 ], [ -130.517578, 54.265224 ], [ -130.517578, 54.826008 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.330078, 58.401712 ], [ -134.912109, 59.265881 ], [ -135.439453, 59.800634 ], [ -136.494141, 59.445075 ], [ -137.460938, 58.904646 ], [ -139.042969, 60.020952 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.326948 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.494141, 68.911005 ], [ -135.615234, 69.318320 ], [ -134.384766, 69.626510 ], [ -132.890625, 69.503765 ], [ -131.396484, 69.930300 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.320312, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.453125, 70.170201 ], [ -124.277344, 69.411242 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.464844, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.191406, 68.847665 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.466797, 67.676085 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.753906, 67.875541 ], [ -108.808594, 68.301905 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.688521 ], [ -106.171875, 68.784144 ], [ -105.380859, 68.560384 ], [ -104.326172, 68.007571 ], [ -103.183594, 68.106102 ], [ -101.425781, 67.642676 ], [ -99.931641, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.525391, 68.399180 ], [ -97.646484, 68.592487 ], [ -96.152344, 68.236823 ], [ -96.152344, 67.305976 ], [ -95.449219, 68.106102 ], [ -94.658203, 68.073305 ], [ -94.218750, 69.068563 ], [ -95.273438, 69.687618 ], [ -96.503906, 70.080562 ], [ -96.416016, 71.187754 ], [ -95.185547, 71.910888 ] ] ], [ [ [ -79.892578, 62.390369 ], [ -79.541016, 62.349609 ], [ -79.277344, 62.144976 ], [ -79.628906, 61.648162 ], [ -80.068359, 61.731526 ], [ -80.332031, 62.021528 ], [ -79.892578, 62.390369 ] ] ], [ [ [ -63.984375, 47.040182 ], [ -63.632812, 46.558860 ], [ -62.929688, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.490234, 46.012224 ], [ -62.841797, 45.951150 ], [ -64.160156, 46.377254 ], [ -64.423828, 46.739861 ], [ -63.984375, 47.040182 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.144976 ], [ -83.759766, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.232422, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -55.898438, 51.618017 ], [ -55.371094, 51.563412 ], [ -56.777344, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.458984, 49.951220 ], [ -55.810547, 49.610710 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.437500, 49.267805 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.646484, 47.517201 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.140625, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.371094, 46.860191 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -59.238281, 47.576526 ], [ -59.414062, 47.872144 ], [ -58.798828, 48.224673 ], [ -59.238281, 48.516604 ], [ -58.359375, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.618017 ] ] ], [ [ [ -98.261719, 70.140364 ], [ -96.591797, 69.687618 ], [ -95.625000, 69.099940 ], [ -96.240234, 68.752315 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.942607 ], [ -99.755859, 69.411242 ], [ -98.876953, 69.718107 ], [ -98.261719, 70.140364 ] ] ], [ [ [ -115.224609, 73.302624 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.412109, 72.945431 ], [ -111.093750, 72.448792 ], [ -109.951172, 72.971189 ], [ -108.984375, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.666016, 72.073911 ], [ -108.369141, 73.099413 ], [ -107.490234, 73.226700 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.659588 ], [ -104.501953, 70.988349 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.595890 ], [ -102.744141, 69.503765 ], [ -102.128906, 69.131271 ], [ -102.392578, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -108.984375, 68.784144 ], [ -113.291016, 68.528235 ], [ -113.818359, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -115.136719, 70.229744 ], [ -113.730469, 70.199994 ], [ -112.412109, 70.377854 ], [ -114.345703, 70.612614 ], [ -116.455078, 70.524897 ], [ -117.861328, 70.554179 ], [ -118.388672, 70.902268 ], [ -116.103516, 71.300793 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.552741 ], [ -118.564453, 72.315785 ], [ -117.861328, 72.711903 ], [ -115.224609, 73.302624 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -65.830078, 83.026219 ], [ -63.720703, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.367483 ], [ -64.335938, 81.923186 ], [ -66.796875, 81.723188 ], [ -67.675781, 81.505299 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.433594, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.212891, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.498047, 79.204309 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.376953, 78.188586 ], [ -77.871094, 77.897255 ], [ -78.398438, 77.504119 ], [ -79.716797, 77.215640 ], [ -79.628906, 76.980149 ], [ -77.871094, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.144531, 76.455203 ], [ -86.132812, 76.289542 ], [ -87.626953, 76.413973 ], [ -89.472656, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.308594, 78.188586 ], [ -87.978516, 78.367146 ], [ -87.187500, 78.750659 ], [ -85.341797, 79.004962 ], [ -85.078125, 79.351472 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.459509 ], [ -84.111328, 80.575346 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.175781, 81.255032 ], [ -91.406250, 81.557074 ], [ -91.582031, 81.898451 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.597439 ], [ -83.144531, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.015539 ], [ -79.277344, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -85.869141, 73.800318 ], [ -86.572266, 73.150440 ], [ -85.781250, 72.528130 ], [ -84.814453, 73.327858 ], [ -82.353516, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.771484, 72.073911 ], [ -78.750000, 72.342464 ], [ -77.783203, 72.738003 ], [ -75.585938, 72.235514 ], [ -74.267578, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.931004 ], [ -68.818359, 70.524897 ], [ -67.939453, 70.110485 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.861082 ], [ -62.138672, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.440002 ], [ -66.708984, 66.372755 ], [ -68.027344, 66.266856 ], [ -68.115234, 65.694476 ], [ -67.060547, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.302734, 64.396938 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.674143 ], [ -66.269531, 62.955223 ], [ -68.818359, 63.743631 ], [ -66.357422, 62.267923 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.665760 ], [ -74.794922, 64.661517 ], [ -74.794922, 64.396938 ], [ -77.695312, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.871094, 65.293468 ], [ -76.025391, 65.330178 ], [ -73.916016, 65.440002 ], [ -74.267578, 65.802776 ], [ -73.916016, 66.302205 ], [ -72.685547, 67.272043 ], [ -72.949219, 67.742759 ], [ -73.300781, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.879358 ], [ -76.201172, 69.162558 ], [ -77.255859, 69.778952 ], [ -78.134766, 69.839622 ], [ -78.925781, 70.170201 ], [ -79.453125, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.902344, 69.960439 ], [ -87.099609, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.472656, 70.757966 ], [ -88.505859, 71.216075 ], [ -89.912109, 71.216075 ], [ -90.175781, 72.235514 ], [ -89.472656, 73.124945 ], [ -88.417969, 73.528399 ], [ -85.869141, 73.800318 ] ] ], [ [ [ -92.373047, 81.255032 ], [ -91.142578, 80.718183 ], [ -87.802734, 80.312728 ], [ -87.011719, 79.655668 ], [ -85.781250, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.296044 ], [ -90.791016, 78.206563 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.367701 ], [ -96.064453, 79.702907 ], [ -96.679688, 80.163710 ], [ -95.976562, 80.604086 ], [ -95.361328, 80.900669 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.201420 ], [ -92.373047, 81.255032 ] ] ], [ [ [ -128.320312, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.892578, 49.496675 ], [ -123.925781, 49.037868 ], [ -123.486328, 48.516604 ], [ -124.013672, 48.341646 ], [ -125.683594, 48.806863 ], [ -125.947266, 49.152970 ], [ -126.826172, 49.553726 ], [ -127.001953, 49.837982 ], [ -128.056641, 50.007739 ], [ -128.408203, 50.513427 ], [ -128.320312, 50.792047 ] ] ], [ [ [ -96.767578, 77.157163 ], [ -94.658203, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.703125, 76.455203 ], [ -90.966797, 76.079668 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -86.396484, 75.475131 ], [ -84.814453, 75.693931 ], [ -82.792969, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.804688, 74.913708 ], [ -80.419922, 74.660016 ], [ -81.914062, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.402163 ], [ -88.154297, 74.402163 ], [ -89.736328, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.724609, 75.386696 ], [ -92.900391, 75.888091 ], [ -93.867188, 76.310358 ], [ -95.976562, 76.434604 ], [ -97.119141, 76.760541 ], [ -96.767578, 77.157163 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.724479 ], [ -61.875000, 49.267805 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.382373 ], [ -64.511719, 49.894634 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.235878 ], [ -117.597656, 74.188052 ], [ -116.542969, 73.898111 ], [ -115.488281, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.179688, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.328950 ], [ -125.947266, 71.856229 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.892578, 74.283563 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -133.154297, 54.162434 ], [ -132.714844, 54.059388 ], [ -131.748047, 54.110943 ], [ -132.011719, 52.961875 ], [ -131.220703, 52.160455 ], [ -131.572266, 52.160455 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.154297, 54.162434 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.544922, 76.679785 ], [ -107.841797, 75.845169 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.475131 ], [ -106.347656, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.425777 ], [ -113.730469, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.279297, 75.050354 ], [ -117.685547, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.541113 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.751205 ], [ -97.119141, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.503906, 72.554498 ], [ -96.679688, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.480469, 72.501722 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.513672, 73.353055 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -116.191406, 77.636542 ], [ -116.367188, 76.880775 ], [ -117.070312, 76.537296 ], [ -118.037109, 76.475773 ], [ -119.882812, 76.058508 ], [ -121.464844, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.860810 ], [ -119.091797, 77.504119 ], [ -117.597656, 77.504119 ], [ -116.191406, 77.636542 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.847656, 65.109148 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.975961 ], [ -80.859375, 64.052978 ], [ -80.068359, 63.743631 ], [ -80.947266, 63.430860 ], [ -82.529297, 63.665760 ], [ -83.144531, 64.091408 ], [ -84.111328, 63.587675 ], [ -85.517578, 63.035039 ], [ -85.869141, 63.626745 ], [ -87.187500, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.734375, 76.247817 ], [ -97.734375, 75.737303 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.890816 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.650431 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.639226 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.460938, 74.091974 ], [ -90.527344, 73.849286 ], [ -92.021484, 72.971189 ], [ -93.164062, 72.764065 ], [ -94.306641, 72.019729 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -95.976562, 73.428424 ], [ -95.537109, 73.873717 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.810547, 78.801980 ], [ -100.019531, 78.331648 ], [ -99.667969, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.919922, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.380859, 78.920832 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -80.332031, 73.751205 ], [ -78.046875, 73.652545 ], [ -76.376953, 73.099413 ], [ -76.289062, 72.816074 ], [ -78.398438, 72.867930 ], [ -79.453125, 72.738003 ], [ -79.804688, 72.790088 ], [ -80.859375, 73.327858 ], [ -80.859375, 73.701948 ], [ -80.332031, 73.751205 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.294922, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.537109, 78.420193 ], [ -95.800781, 78.061989 ], [ -97.294922, 77.841848 ], [ -98.085938, 78.080156 ], [ -98.525391, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.007571 ], [ -75.146484, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.135829 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.575717 ], [ -76.816406, 68.138852 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.955078, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.130859, 74.590108 ], [ -95.625000, 74.660016 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.989049 ], [ -110.214844, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.763672, 78.043795 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.453473 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.627789 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.801980 ], [ -109.687500, 78.595299 ], [ -110.917969, 78.402537 ], [ -112.500000, 78.402537 ], [ -112.500000, 78.543044 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -96.416016, 77.841848 ], [ -94.394531, 77.823323 ], [ -93.691406, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.485088 ], [ -96.152344, 77.561042 ], [ -96.416016, 77.841848 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.697266, 32.694866 ], [ -114.785156, 32.546813 ], [ -111.005859, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.728167 ], [ -106.523438, 31.728167 ], [ -105.029297, 30.675715 ], [ -104.414062, 29.535230 ], [ -103.974609, 29.305561 ], [ -103.095703, 28.998532 ], [ -102.480469, 29.764377 ], [ -101.689453, 29.764377 ], [ -100.986328, 29.382175 ], [ -100.107422, 28.071980 ], [ -99.492188, 27.527758 ], [ -99.052734, 26.352498 ], [ -97.558594, 25.878994 ], [ -97.119141, 25.878994 ], [ -97.734375, 24.287027 ], [ -97.910156, 22.431340 ], [ -97.207031, 20.632784 ], [ -96.503906, 19.890723 ], [ -96.328125, 19.311143 ], [ -95.888672, 18.812718 ], [ -94.833984, 18.562947 ], [ -94.394531, 18.145852 ], [ -91.406250, 18.895893 ], [ -90.791016, 19.311143 ], [ -90.263672, 20.961440 ], [ -88.505859, 21.453069 ], [ -87.011719, 21.534847 ], [ -86.835938, 21.371244 ], [ -86.835938, 20.879343 ], [ -87.363281, 20.220966 ], [ -87.626953, 19.642588 ], [ -87.451172, 19.476950 ], [ -87.802734, 18.229351 ], [ -88.066406, 18.479609 ], [ -88.505859, 18.479609 ], [ -88.857422, 17.895114 ], [ -89.033203, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.966797, 17.811456 ], [ -90.966797, 17.224758 ], [ -91.494141, 17.224758 ], [ -90.439453, 16.383391 ], [ -90.439453, 16.045813 ], [ -91.757812, 16.045813 ], [ -92.197266, 15.284185 ], [ -92.109375, 15.029686 ], [ -92.197266, 14.519780 ], [ -93.339844, 15.623037 ], [ -93.867188, 15.961329 ], [ -94.658203, 16.214675 ], [ -95.273438, 16.130262 ], [ -96.591797, 15.623037 ], [ -100.810547, 17.140790 ], [ -101.953125, 17.895114 ], [ -103.535156, 18.312811 ], [ -103.886719, 18.729502 ], [ -105.029297, 19.311143 ], [ -105.468750, 19.973349 ], [ -105.732422, 20.468189 ], [ -105.380859, 20.550509 ], [ -105.468750, 20.797201 ], [ -105.292969, 21.043491 ], [ -105.292969, 21.453069 ], [ -105.996094, 22.755921 ], [ -106.875000, 23.805450 ], [ -107.929688, 24.527135 ], [ -108.369141, 25.165173 ], [ -109.248047, 25.562265 ], [ -109.423828, 25.799891 ], [ -109.248047, 26.431228 ], [ -109.775391, 26.667096 ], [ -110.390625, 27.137368 ], [ -110.654297, 27.839076 ], [ -111.181641, 27.916767 ], [ -112.236328, 28.921631 ], [ -112.236328, 29.228890 ], [ -113.203125, 30.751278 ], [ -113.115234, 31.203405 ], [ -113.906250, 31.578535 ], [ -114.169922, 31.503629 ], [ -114.785156, 31.802893 ], [ -114.960938, 31.428663 ], [ -114.697266, 30.145127 ], [ -113.291016, 28.767659 ], [ -113.115234, 28.381735 ], [ -112.939453, 28.459033 ], [ -112.763672, 27.761330 ], [ -112.236328, 27.137368 ], [ -111.621094, 26.667096 ], [ -111.269531, 25.720735 ], [ -110.742188, 24.846565 ], [ -110.654297, 24.287027 ], [ -110.214844, 24.287027 ], [ -109.423828, 23.402765 ], [ -109.423828, 23.160563 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.402765 ], [ -110.917969, 23.966176 ], [ -112.148438, 24.766785 ], [ -112.148438, 25.482951 ], [ -112.324219, 26.037042 ], [ -113.466797, 26.745610 ], [ -113.554688, 26.667096 ], [ -113.818359, 26.902477 ], [ -114.433594, 27.137368 ], [ -115.048828, 27.761330 ], [ -114.609375, 27.761330 ], [ -114.169922, 28.149503 ], [ -114.169922, 28.536275 ], [ -114.960938, 29.305561 ], [ -115.488281, 29.535230 ], [ -117.158203, 32.546813 ], [ -114.697266, 32.694866 ] ] ] } } , { "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.208984, 15.876809 ], [ -88.242188, 15.707663 ], [ -89.121094, 15.029686 ], [ -89.121094, 14.689881 ], [ -89.560547, 14.349548 ], [ -89.560547, 14.264383 ], [ -90.087891, 13.923404 ], [ -90.087891, 13.752725 ], [ -91.669922, 14.093957 ], [ -92.197266, 14.519780 ], [ -92.109375, 15.029686 ], [ -92.197266, 15.284185 ], [ -91.757812, 16.045813 ], [ -90.439453, 16.045813 ], [ -90.439453, 16.383391 ], [ -91.494141, 17.224758 ], [ -90.966797, 17.224758 ], [ -90.966797, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } , { "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.647837 ], [ -27.070312, 83.520162 ], [ -20.830078, 82.732092 ], [ -22.675781, 82.344100 ], [ -26.542969, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.873047, 81.786210 ], [ -22.939453, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.203125, 81.147481 ], [ -20.654297, 81.518272 ], [ -15.732422, 81.910828 ], [ -12.744141, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.259766, 80.575346 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.980149 ], [ -20.039062, 76.940488 ], [ -21.708984, 76.618901 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.163300 ], [ -19.335938, 74.307353 ], [ -21.621094, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.453473 ], [ -22.148438, 73.302624 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.785156, 72.342464 ], [ -23.466797, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.324219, 70.140364 ], [ -25.048828, 69.256149 ], [ -27.773438, 68.463800 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.106102 ], [ -32.783203, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.001953, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.220703, 63.470145 ], [ -42.802734, 62.674143 ], [ -42.451172, 61.897578 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.020952 ], [ -46.230469, 60.844911 ], [ -48.251953, 60.844911 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.591797, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.089364 ], [ -53.261719, 66.826520 ], [ -53.964844, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.720441 ], [ -51.064453, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.595890 ], [ -54.755859, 70.289117 ], [ -54.316406, 70.815812 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -53.964844, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.810547, 71.663663 ], [ -54.755859, 72.580829 ], [ -55.283203, 72.971189 ], [ -57.304688, 74.706450 ], [ -58.623047, 75.095633 ], [ -58.623047, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.184995 ], [ -68.466797, 76.058508 ], [ -69.697266, 76.372619 ], [ -71.367188, 76.999935 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.370301 ], [ -71.015625, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.125000, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.302734, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.886056 ], [ -50.361328, 82.437205 ], [ -47.988281, 82.070028 ], [ -46.582031, 81.984696 ], [ -44.560547, 81.659685 ], [ -46.933594, 82.202302 ], [ -46.757812, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.583984, 83.549851 ], [ -35.068359, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.910888 ], [ -93.867188, 71.746432 ], [ -92.900391, 71.328950 ], [ -91.494141, 70.199994 ], [ -92.373047, 69.687618 ], [ -90.527344, 69.503765 ], [ -90.527344, 68.463800 ], [ -89.208984, 69.256149 ], [ -87.978516, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.908619 ], [ -85.605469, 68.784144 ], [ -85.517578, 69.869892 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.656555 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.101656 ], [ -83.320312, 66.407955 ], [ -84.726562, 66.266856 ], [ -85.781250, 66.548263 ], [ -86.044922, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.363281, 64.774125 ], [ -88.505859, 64.091408 ], [ -89.912109, 64.014496 ], [ -90.703125, 63.626745 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.658203, 60.108670 ], [ -94.658203, 58.950008 ], [ -93.251953, 58.768200 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.066406, 56.462490 ], [ -87.363281, 56.022948 ], [ -86.044922, 55.727110 ], [ -84.990234, 55.279115 ], [ -82.265625, 55.128649 ], [ -82.441406, 54.265224 ], [ -82.089844, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.234407 ], [ -79.101562, 51.508742 ], [ -78.574219, 52.536273 ], [ -79.101562, 54.162434 ], [ -79.804688, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.511018 ], [ -76.640625, 57.183902 ], [ -77.343750, 58.031372 ], [ -78.486328, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.308794 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.828125, 62.431074 ], [ -71.718750, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.239811 ], [ -69.257812, 58.950008 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.214844, 59.888937 ], [ -64.599609, 60.326948 ], [ -61.435547, 56.944974 ], [ -61.787109, 56.316537 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.927142 ], [ -57.304688, 54.622978 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.644638 ], [ -55.722656, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.399206 ], [ -58.798828, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.699219, 50.064192 ], [ -63.896484, 50.289339 ], [ -66.357422, 50.233152 ], [ -67.236328, 49.496675 ], [ -68.554688, 49.095452 ], [ -71.103516, 46.800059 ], [ -70.224609, 46.980252 ], [ -68.642578, 48.283193 ], [ -66.533203, 49.152970 ], [ -65.039062, 49.210420 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.048710 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 46.980252 ], [ -60.468750, 46.255847 ], [ -59.765625, 45.890008 ], [ -60.996094, 45.274886 ], [ -63.281250, 44.653024 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.516689 ], [ -66.093750, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.763672, 45.706179 ], [ -67.763672, 47.040182 ], [ -68.203125, 47.338823 ], [ -68.906250, 47.159840 ], [ -69.257812, 47.457809 ], [ -69.960938, 46.679594 ], [ -70.312500, 45.890008 ], [ -70.664062, 45.460131 ], [ -71.367188, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.464844, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.452919 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -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.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.583984, 46.134170 ], [ -83.847656, 46.134170 ], [ -84.111328, 46.255847 ], [ -84.111328, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.619261 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.283193 ], [ -89.296875, 48.048710 ], [ -89.560547, 47.989922 ], [ -90.791016, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.306641, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.382373 ], [ -95.185547, 49.382373 ], [ -95.185547, 48.980217 ], [ -122.958984, 48.980217 ], [ -125.595703, 50.401515 ], [ -127.441406, 50.847573 ], [ -127.968750, 51.727028 ], [ -127.880859, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.540307 ], [ -130.517578, 54.265224 ], [ -130.517578, 54.826008 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.330078, 58.401712 ], [ -134.912109, 59.265881 ], [ -135.439453, 59.800634 ], [ -136.494141, 59.445075 ], [ -137.460938, 58.904646 ], [ -139.042969, 60.020952 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.326948 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.494141, 68.911005 ], [ -135.615234, 69.318320 ], [ -134.384766, 69.626510 ], [ -132.890625, 69.503765 ], [ -131.396484, 69.930300 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.320312, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.453125, 70.170201 ], [ -124.277344, 69.411242 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.464844, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.191406, 68.847665 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.466797, 67.676085 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.753906, 67.875541 ], [ -108.808594, 68.301905 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.688521 ], [ -106.171875, 68.784144 ], [ -105.380859, 68.560384 ], [ -104.326172, 68.007571 ], [ -103.183594, 68.106102 ], [ -101.425781, 67.642676 ], [ -99.931641, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.525391, 68.399180 ], [ -97.646484, 68.592487 ], [ -96.152344, 68.236823 ], [ -96.152344, 67.305976 ], [ -95.449219, 68.106102 ], [ -94.658203, 68.073305 ], [ -94.218750, 69.068563 ], [ -95.273438, 69.687618 ], [ -96.503906, 70.080562 ], [ -96.416016, 71.187754 ], [ -95.185547, 71.910888 ] ] ], [ [ [ -79.892578, 62.390369 ], [ -79.541016, 62.349609 ], [ -79.277344, 62.144976 ], [ -79.628906, 61.648162 ], [ -80.068359, 61.731526 ], [ -80.332031, 62.021528 ], [ -79.892578, 62.390369 ] ] ], [ [ [ -63.984375, 47.040182 ], [ -63.632812, 46.558860 ], [ -62.929688, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.490234, 46.012224 ], [ -62.841797, 45.951150 ], [ -64.160156, 46.377254 ], [ -64.423828, 46.739861 ], [ -63.984375, 47.040182 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.144976 ], [ -83.759766, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.232422, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -55.898438, 51.618017 ], [ -55.371094, 51.563412 ], [ -56.777344, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.458984, 49.951220 ], [ -55.810547, 49.610710 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.437500, 49.267805 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.646484, 47.517201 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.140625, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.371094, 46.860191 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -59.238281, 47.576526 ], [ -59.414062, 47.872144 ], [ -58.798828, 48.224673 ], [ -59.238281, 48.516604 ], [ -58.359375, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.618017 ] ] ], [ [ [ -98.261719, 70.140364 ], [ -96.591797, 69.687618 ], [ -95.625000, 69.099940 ], [ -96.240234, 68.752315 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.942607 ], [ -99.755859, 69.411242 ], [ -98.876953, 69.718107 ], [ -98.261719, 70.140364 ] ] ], [ [ [ -115.224609, 73.302624 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.412109, 72.945431 ], [ -111.093750, 72.448792 ], [ -109.951172, 72.971189 ], [ -108.984375, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.666016, 72.073911 ], [ -108.369141, 73.099413 ], [ -107.490234, 73.226700 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.659588 ], [ -104.501953, 70.988349 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.595890 ], [ -102.744141, 69.503765 ], [ -102.128906, 69.131271 ], [ -102.392578, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -108.984375, 68.784144 ], [ -113.291016, 68.528235 ], [ -113.818359, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -115.136719, 70.229744 ], [ -113.730469, 70.199994 ], [ -112.412109, 70.377854 ], [ -114.345703, 70.612614 ], [ -116.455078, 70.524897 ], [ -117.861328, 70.554179 ], [ -118.388672, 70.902268 ], [ -116.103516, 71.300793 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.552741 ], [ -118.564453, 72.315785 ], [ -117.861328, 72.711903 ], [ -115.224609, 73.302624 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -65.830078, 83.026219 ], [ -63.720703, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.367483 ], [ -64.335938, 81.923186 ], [ -66.796875, 81.723188 ], [ -67.675781, 81.505299 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.433594, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.212891, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.498047, 79.204309 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.376953, 78.188586 ], [ -77.871094, 77.897255 ], [ -78.398438, 77.504119 ], [ -79.716797, 77.215640 ], [ -79.628906, 76.980149 ], [ -77.871094, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.144531, 76.455203 ], [ -86.132812, 76.289542 ], [ -87.626953, 76.413973 ], [ -89.472656, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.308594, 78.188586 ], [ -87.978516, 78.367146 ], [ -87.187500, 78.750659 ], [ -85.341797, 79.004962 ], [ -85.078125, 79.351472 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.459509 ], [ -84.111328, 80.575346 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.175781, 81.255032 ], [ -91.406250, 81.557074 ], [ -91.582031, 81.898451 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.597439 ], [ -83.144531, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.015539 ], [ -79.277344, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -85.869141, 73.800318 ], [ -86.572266, 73.150440 ], [ -85.781250, 72.528130 ], [ -84.814453, 73.327858 ], [ -82.353516, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.771484, 72.073911 ], [ -78.750000, 72.342464 ], [ -77.783203, 72.738003 ], [ -75.585938, 72.235514 ], [ -74.267578, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.931004 ], [ -68.818359, 70.524897 ], [ -67.939453, 70.110485 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.861082 ], [ -62.138672, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.440002 ], [ -66.708984, 66.372755 ], [ -68.027344, 66.266856 ], [ -68.115234, 65.694476 ], [ -67.060547, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.302734, 64.396938 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.674143 ], [ -66.269531, 62.955223 ], [ -68.818359, 63.743631 ], [ -66.357422, 62.267923 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.665760 ], [ -74.794922, 64.661517 ], [ -74.794922, 64.396938 ], [ -77.695312, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.871094, 65.293468 ], [ -76.025391, 65.330178 ], [ -73.916016, 65.440002 ], [ -74.267578, 65.802776 ], [ -73.916016, 66.302205 ], [ -72.685547, 67.272043 ], [ -72.949219, 67.742759 ], [ -73.300781, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.879358 ], [ -76.201172, 69.162558 ], [ -77.255859, 69.778952 ], [ -78.134766, 69.839622 ], [ -78.925781, 70.170201 ], [ -79.453125, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.902344, 69.960439 ], [ -87.099609, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.472656, 70.757966 ], [ -88.505859, 71.216075 ], [ -89.912109, 71.216075 ], [ -90.175781, 72.235514 ], [ -89.472656, 73.124945 ], [ -88.417969, 73.528399 ], [ -85.869141, 73.800318 ] ] ], [ [ [ -92.373047, 81.255032 ], [ -91.142578, 80.718183 ], [ -87.802734, 80.312728 ], [ -87.011719, 79.655668 ], [ -85.781250, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.296044 ], [ -90.791016, 78.206563 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.367701 ], [ -96.064453, 79.702907 ], [ -96.679688, 80.163710 ], [ -95.976562, 80.604086 ], [ -95.361328, 80.900669 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.201420 ], [ -92.373047, 81.255032 ] ] ], [ [ [ -128.320312, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.892578, 49.496675 ], [ -123.925781, 49.037868 ], [ -123.486328, 48.516604 ], [ -124.013672, 48.341646 ], [ -125.683594, 48.806863 ], [ -125.947266, 49.152970 ], [ -126.826172, 49.553726 ], [ -127.001953, 49.837982 ], [ -128.056641, 50.007739 ], [ -128.408203, 50.513427 ], [ -128.320312, 50.792047 ] ] ], [ [ [ -96.767578, 77.157163 ], [ -94.658203, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.703125, 76.455203 ], [ -90.966797, 76.079668 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -86.396484, 75.475131 ], [ -84.814453, 75.693931 ], [ -82.792969, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.804688, 74.913708 ], [ -80.419922, 74.660016 ], [ -81.914062, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.402163 ], [ -88.154297, 74.402163 ], [ -89.736328, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.724609, 75.386696 ], [ -92.900391, 75.888091 ], [ -93.867188, 76.310358 ], [ -95.976562, 76.434604 ], [ -97.119141, 76.760541 ], [ -96.767578, 77.157163 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.724479 ], [ -61.875000, 49.267805 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.382373 ], [ -64.511719, 49.894634 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.235878 ], [ -117.597656, 74.188052 ], [ -116.542969, 73.898111 ], [ -115.488281, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.179688, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.328950 ], [ -125.947266, 71.856229 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.892578, 74.283563 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -133.154297, 54.162434 ], [ -132.714844, 54.059388 ], [ -131.748047, 54.110943 ], [ -132.011719, 52.961875 ], [ -131.220703, 52.160455 ], [ -131.572266, 52.160455 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.154297, 54.162434 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.544922, 76.679785 ], [ -107.841797, 75.845169 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.475131 ], [ -106.347656, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.425777 ], [ -113.730469, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.279297, 75.050354 ], [ -117.685547, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.541113 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.751205 ], [ -97.119141, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.503906, 72.554498 ], [ -96.679688, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.480469, 72.501722 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.513672, 73.353055 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -116.191406, 77.636542 ], [ -116.367188, 76.880775 ], [ -117.070312, 76.537296 ], [ -118.037109, 76.475773 ], [ -119.882812, 76.058508 ], [ -121.464844, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.860810 ], [ -119.091797, 77.504119 ], [ -117.597656, 77.504119 ], [ -116.191406, 77.636542 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.847656, 65.109148 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.975961 ], [ -80.859375, 64.052978 ], [ -80.068359, 63.743631 ], [ -80.947266, 63.430860 ], [ -82.529297, 63.665760 ], [ -83.144531, 64.091408 ], [ -84.111328, 63.587675 ], [ -85.517578, 63.035039 ], [ -85.869141, 63.626745 ], [ -87.187500, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.734375, 76.247817 ], [ -97.734375, 75.737303 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.890816 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.650431 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.639226 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.460938, 74.091974 ], [ -90.527344, 73.849286 ], [ -92.021484, 72.971189 ], [ -93.164062, 72.764065 ], [ -94.306641, 72.019729 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -95.976562, 73.428424 ], [ -95.537109, 73.873717 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.810547, 78.801980 ], [ -100.019531, 78.331648 ], [ -99.667969, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.919922, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.380859, 78.920832 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -80.332031, 73.751205 ], [ -78.046875, 73.652545 ], [ -76.376953, 73.099413 ], [ -76.289062, 72.816074 ], [ -78.398438, 72.867930 ], [ -79.453125, 72.738003 ], [ -79.804688, 72.790088 ], [ -80.859375, 73.327858 ], [ -80.859375, 73.701948 ], [ -80.332031, 73.751205 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.294922, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.537109, 78.420193 ], [ -95.800781, 78.061989 ], [ -97.294922, 77.841848 ], [ -98.085938, 78.080156 ], [ -98.525391, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.007571 ], [ -75.146484, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.135829 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.575717 ], [ -76.816406, 68.138852 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.955078, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.130859, 74.590108 ], [ -95.625000, 74.660016 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.989049 ], [ -110.214844, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.763672, 78.043795 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.453473 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.627789 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.801980 ], [ -109.687500, 78.595299 ], [ -110.917969, 78.402537 ], [ -112.500000, 78.402537 ], [ -112.500000, 78.543044 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -96.416016, 77.841848 ], [ -94.394531, 77.823323 ], [ -93.691406, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.485088 ], [ -96.152344, 77.561042 ], [ -96.416016, 77.841848 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.222656, 25.244696 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.367114 ], [ -77.519531, 23.725012 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.607069 ], [ -78.222656, 25.244696 ] ] ], [ [ [ -77.783203, 27.059126 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 26.037042 ], [ -77.343750, 26.509905 ], [ -77.783203, 27.059126 ] ] ], [ [ [ -77.871094, 26.824071 ], [ -77.783203, 26.588527 ], [ -78.925781, 26.431228 ], [ -79.013672, 26.824071 ], [ -77.871094, 26.824071 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.160563 ], [ -80.595703, 23.079732 ], [ -79.716797, 22.755921 ], [ -79.277344, 22.431340 ], [ -78.310547, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.585938, 21.043491 ], [ -75.673828, 20.715015 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.267578, 20.055931 ], [ -74.970703, 19.890723 ], [ -77.783203, 19.890723 ], [ -77.080078, 20.385825 ], [ -77.519531, 20.632784 ], [ -78.134766, 20.715015 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.277344, 21.534847 ], [ -80.244141, 21.861499 ], [ -80.507812, 22.024546 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.350076 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.674847 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.023438, 21.943046 ], [ -84.550781, 21.779905 ], [ -84.990234, 21.861499 ], [ -84.462891, 22.187405 ], [ -84.199219, 22.593726 ], [ -83.232422, 22.998852 ], [ -82.265625, 23.160563 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.330078, 18.479609 ], [ -88.330078, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.330078, 16.551962 ], [ -88.945312, 15.876809 ], [ -89.208984, 15.876809 ], [ -89.121094, 17.978733 ], [ -88.857422, 17.895114 ], [ -88.505859, 18.479609 ], [ -88.330078, 18.479609 ] ] ] } } , { "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.044922, 16.045813 ], [ -85.429688, 15.876809 ], [ -84.990234, 15.961329 ], [ -84.375000, 15.876809 ], [ -83.144531, 15.029686 ], [ -83.496094, 15.029686 ], [ -84.462891, 14.604847 ], [ -84.902344, 14.774883 ], [ -85.166016, 14.349548 ], [ -85.781250, 13.838080 ], [ -86.132812, 14.008696 ], [ -86.308594, 13.752725 ], [ -86.748047, 13.752725 ], [ -86.748047, 13.239945 ], [ -86.923828, 13.239945 ], [ -87.011719, 12.983148 ], [ -87.275391, 12.983148 ], [ -87.451172, 13.325485 ], [ -87.802734, 13.410994 ], [ -87.714844, 13.752725 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.923404 ], [ -88.505859, 13.838080 ], [ -89.033203, 14.349548 ], [ -89.384766, 14.434680 ], [ -89.121094, 14.689881 ], [ -89.121094, 15.029686 ], [ -87.890625, 15.876809 ], [ -86.923828, 15.792254 ], [ -86.484375, 15.792254 ], [ -86.044922, 16.045813 ] ] ] } } @@ -38,14 +36,16 @@ , { "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.605469, 11.178402 ], [ -84.902344, 10.919618 ], [ -84.638672, 11.092166 ], [ -84.375000, 11.005904 ], [ -84.199219, 10.833306 ], [ -83.935547, 10.746969 ], [ -83.671875, 10.919618 ], [ -83.408203, 10.401378 ], [ -82.529297, 9.535749 ], [ -82.968750, 9.449062 ], [ -82.968750, 9.102097 ], [ -82.705078, 8.928487 ], [ -82.880859, 8.841651 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.407168 ], [ -83.671875, 8.667918 ], [ -83.671875, 9.015302 ], [ -84.638672, 9.622414 ], [ -84.726562, 9.882275 ], [ -84.990234, 10.055403 ], [ -84.902344, 9.795678 ], [ -85.078125, 9.535749 ], [ -85.341797, 9.795678 ], [ -85.693359, 9.968851 ], [ -85.781250, 10.141932 ], [ -85.693359, 10.746969 ], [ -85.957031, 10.919618 ], [ -85.605469, 11.178402 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.541016, 9.622414 ], [ -78.486328, 9.449062 ], [ -78.046875, 9.275622 ], [ -77.343750, 8.667918 ], [ -77.431641, 8.494105 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.623887 ], [ -77.783203, 7.710992 ], [ -77.871094, 7.188101 ], [ -78.222656, 7.536764 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.398438, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.716797, 8.581021 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.059230 ], [ -79.980469, 7.536764 ], [ -80.419922, 7.275292 ], [ -80.859375, 7.188101 ], [ -81.035156, 7.798079 ], [ -81.210938, 7.623887 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.792969, 8.320212 ], [ -82.880859, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.705078, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.449062 ], [ -82.529297, 9.535749 ], [ -82.177734, 9.188870 ], [ -82.177734, 9.015302 ], [ -81.738281, 9.015302 ], [ -81.474609, 8.754795 ], [ -80.947266, 8.841651 ], [ -79.892578, 9.275622 ], [ -79.541016, 9.622414 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.160563 ], [ -80.595703, 23.079732 ], [ -79.716797, 22.755921 ], [ -79.277344, 22.431340 ], [ -78.310547, 22.512557 ], [ -76.552734, 21.207459 ], [ -75.585938, 21.043491 ], [ -75.673828, 20.715015 ], [ -74.970703, 20.715015 ], [ -74.179688, 20.303418 ], [ -74.267578, 20.055931 ], [ -74.970703, 19.890723 ], [ -77.783203, 19.890723 ], [ -77.080078, 20.385825 ], [ -77.519531, 20.632784 ], [ -78.134766, 20.715015 ], [ -78.486328, 21.043491 ], [ -78.750000, 21.616579 ], [ -79.277344, 21.534847 ], [ -80.244141, 21.861499 ], [ -80.507812, 22.024546 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.350076 ], [ -81.826172, 22.674847 ], [ -82.792969, 22.674847 ], [ -83.496094, 22.187405 ], [ -83.935547, 22.187405 ], [ -84.023438, 21.943046 ], [ -84.550781, 21.779905 ], [ -84.990234, 21.861499 ], [ -84.462891, 22.187405 ], [ -84.199219, 22.593726 ], [ -83.232422, 22.998852 ], [ -82.265625, 23.160563 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.783203, 18.562947 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.895114 ], [ -77.167969, 17.727759 ], [ -77.783203, 17.895114 ], [ -78.310547, 18.229351 ], [ -78.222656, 18.479609 ], [ -77.783203, 18.562947 ] ] ] } } , { "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.212891, 19.890723 ], [ -71.718750, 19.725342 ], [ -71.718750, 18.812718 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.312811 ], [ -71.718750, 18.062312 ], [ -72.333984, 18.229351 ], [ -73.476562, 18.229351 ], [ -73.916016, 18.062312 ], [ -74.443359, 18.312811 ], [ -74.355469, 18.646245 ], [ -72.685547, 18.479609 ], [ -72.333984, 18.646245 ], [ -72.773438, 19.062118 ], [ -72.773438, 19.476950 ], [ -73.388672, 19.642588 ], [ -73.212891, 19.890723 ] ] ] } } , { "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.890723 ], [ -70.224609, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.818359, 18.979026 ], [ -68.291016, 18.646245 ], [ -68.730469, 18.229351 ], [ -69.169922, 18.396230 ], [ -69.960938, 18.396230 ], [ -70.136719, 18.229351 ], [ -70.488281, 18.145852 ], [ -70.664062, 18.396230 ], [ -71.015625, 18.312811 ], [ -71.367188, 17.560247 ], [ -71.630859, 17.727759 ], [ -71.718750, 18.312811 ], [ -71.982422, 18.646245 ], [ -71.718750, 18.812718 ], [ -71.718750, 19.725342 ], [ -71.630859, 19.890723 ], [ -70.839844, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.541016, 9.622414 ], [ -78.486328, 9.449062 ], [ -78.046875, 9.275622 ], [ -77.343750, 8.667918 ], [ -77.431641, 8.494105 ], [ -77.255859, 7.972198 ], [ -77.431641, 7.623887 ], [ -77.783203, 7.710992 ], [ -77.871094, 7.188101 ], [ -78.222656, 7.536764 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.320212 ], [ -78.398438, 8.407168 ], [ -78.662109, 8.754795 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.716797, 8.581021 ], [ -80.419922, 8.320212 ], [ -80.507812, 8.059230 ], [ -79.980469, 7.536764 ], [ -80.419922, 7.275292 ], [ -80.859375, 7.188101 ], [ -81.035156, 7.798079 ], [ -81.210938, 7.623887 ], [ -81.562500, 7.710992 ], [ -81.738281, 8.146243 ], [ -82.792969, 8.320212 ], [ -82.880859, 8.059230 ], [ -82.968750, 8.233237 ], [ -82.880859, 8.841651 ], [ -82.705078, 8.928487 ], [ -82.968750, 9.102097 ], [ -82.968750, 9.449062 ], [ -82.529297, 9.535749 ], [ -82.177734, 9.188870 ], [ -82.177734, 9.015302 ], [ -81.738281, 9.015302 ], [ -81.474609, 8.754795 ], [ -80.947266, 8.841651 ], [ -79.892578, 9.275622 ], [ -79.541016, 9.622414 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, 18.479609 ], [ -65.742188, 18.396230 ], [ -65.566406, 18.229351 ], [ -65.830078, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.236328, 18.396230 ], [ -67.060547, 18.479609 ], [ -66.269531, 18.479609 ] ] ] } } , { "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.908203, 10.833306 ], [ -60.908203, 10.141932 ], [ -61.787109, 9.968851 ], [ -61.962891, 10.055403 ], [ -61.699219, 10.401378 ], [ -61.699219, 10.746969 ], [ -60.908203, 10.833306 ] ] ] } } @@ -60,42 +60,38 @@ , { "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.513260 ], [ -14.501953, 66.443107 ], [ -14.765625, 65.802776 ], [ -13.623047, 65.109148 ], [ -14.941406, 64.358931 ], [ -18.632812, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.396938 ], [ -23.994141, 64.886265 ], [ -22.148438, 65.072130 ], [ -22.236328, 65.366837 ], [ -24.345703, 65.622023 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.266856 ], [ -17.841797, 65.982270 ], [ -16.171875, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -4.042969, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.933594, 57.704147 ], [ -2.197266, 56.848972 ], [ -3.076172, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.908902 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.781436 ], [ 1.406250, 51.289406 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.460938, 50.513427 ], [ -2.988281, 50.680797 ], [ -3.603516, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.951220 ], [ -5.800781, 50.176898 ], [ -4.306641, 51.234407 ], [ -3.427734, 51.399206 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.321911 ], [ -4.746094, 52.855864 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.383328 ], [ -2.988281, 54.007769 ], [ -3.603516, 54.622978 ], [ -4.833984, 54.775346 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.009766, 55.776573 ], [ -5.625000, 55.329144 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.797944 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.625000, 54.572062 ], [ -6.240234, 53.852527 ], [ -6.943359, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.382812, 54.572062 ], [ -7.558594, 55.128649 ], [ -6.767578, 55.178868 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.128649 ], [ -7.382812, 54.572062 ], [ -7.558594, 54.059388 ], [ -6.943359, 54.059388 ], [ -6.240234, 53.852527 ], [ -6.064453, 53.173119 ], [ -6.767578, 52.268157 ], [ -8.525391, 51.672555 ], [ -10.019531, 51.835778 ], [ -9.140625, 52.855864 ], [ -9.667969, 53.904338 ], [ -7.558594, 55.128649 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -4.042969, 57.562995 ], [ -3.076172, 57.704147 ], [ -1.933594, 57.704147 ], [ -2.197266, 56.848972 ], [ -3.076172, 55.973798 ], [ -2.109375, 55.924586 ], [ -1.142578, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.439453, 52.908902 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.781436 ], [ 1.406250, 51.289406 ], [ 0.527344, 50.792047 ], [ -0.791016, 50.792047 ], [ -2.460938, 50.513427 ], [ -2.988281, 50.680797 ], [ -3.603516, 50.233152 ], [ -4.570312, 50.345460 ], [ -5.273438, 49.951220 ], [ -5.800781, 50.176898 ], [ -4.306641, 51.234407 ], [ -3.427734, 51.399206 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.321911 ], [ -4.746094, 52.855864 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.383328 ], [ -2.988281, 54.007769 ], [ -3.603516, 54.622978 ], [ -4.833984, 54.775346 ], [ -5.097656, 55.078367 ], [ -4.746094, 55.528631 ], [ -5.009766, 55.776573 ], [ -5.625000, 55.329144 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.800878 ], [ -5.800781, 57.797944 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.767578, 55.178868 ], [ -5.625000, 54.572062 ], [ -6.240234, 53.852527 ], [ -6.943359, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.382812, 54.572062 ], [ -7.558594, 55.128649 ], [ -6.767578, 55.178868 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -6.767578, 43.580391 ], [ -5.449219, 43.580391 ], [ -4.306641, 43.389082 ], [ -1.933594, 43.452919 ], [ -1.494141, 43.004647 ], [ 0.351562, 42.553080 ], [ 0.703125, 42.811522 ], [ 1.845703, 42.358544 ], [ 2.988281, 42.488302 ], [ 3.076172, 41.902277 ], [ 2.109375, 41.244772 ], [ 0.791016, 41.046217 ], [ 0.703125, 40.647304 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.087891, 38.754083 ], [ -0.439453, 38.272689 ], [ -0.703125, 37.649034 ], [ -1.406250, 37.439974 ], [ -2.109375, 36.668419 ], [ -4.394531, 36.668419 ], [ -5.009766, 36.315125 ], [ -5.361328, 35.960223 ], [ -5.888672, 36.031332 ], [ -6.240234, 36.385913 ], [ -6.503906, 36.949892 ], [ -7.470703, 37.090240 ], [ -7.558594, 37.439974 ], [ -7.031250, 38.065392 ], [ -7.382812, 38.341656 ], [ -7.119141, 39.027719 ], [ -7.470703, 39.639538 ], [ -7.031250, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.313043 ], [ -6.855469, 41.112469 ], [ -6.416016, 41.376809 ], [ -6.679688, 41.902277 ], [ -7.294922, 41.902277 ], [ -7.382812, 41.771312 ], [ -7.998047, 41.771312 ], [ -8.261719, 42.293564 ], [ -9.052734, 41.902277 ], [ -8.964844, 42.617791 ], [ -9.404297, 43.004647 ], [ -7.998047, 43.771094 ] ] ] } } , { "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.771312 ], [ -7.382812, 41.771312 ], [ -7.294922, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.416016, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.707187 ], [ -7.470703, 39.639538 ], [ -7.119141, 39.027719 ], [ -7.382812, 38.341656 ], [ -7.031250, 38.065392 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.822266, 36.809285 ], [ -8.349609, 36.949892 ], [ -8.876953, 36.879621 ], [ -8.789062, 37.649034 ], [ -8.876953, 38.272689 ], [ -9.316406, 38.341656 ], [ -9.492188, 38.754083 ], [ -9.404297, 39.368279 ], [ -9.052734, 39.774769 ], [ -8.789062, 40.780541 ], [ -9.052734, 41.902277 ], [ -8.261719, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.603516, 35.389050 ], [ -2.197266, 35.173808 ], [ -1.757812, 34.524661 ], [ -1.406250, 32.842674 ], [ -1.142578, 32.620870 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.833984, 30.524413 ], [ -5.273438, 29.993002 ], [ -6.064453, 29.764377 ], [ -7.031250, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.137368 ], [ -9.404297, 27.059126 ], [ -9.755859, 26.824071 ], [ -10.546875, 26.980829 ], [ -11.425781, 26.902477 ], [ -11.689453, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.480469, 24.766785 ], [ -13.886719, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.589844, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -16.962891, 21.861499 ], [ -16.611328, 22.187405 ], [ -16.259766, 22.674847 ], [ -16.347656, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.085599 ], [ -14.765625, 25.641526 ], [ -14.414062, 26.273714 ], [ -13.798828, 26.588527 ], [ -13.183594, 27.605671 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.371094, 29.075375 ], [ -9.580078, 29.916852 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.546813 ], [ -8.701172, 33.211116 ], [ -6.943359, 34.089061 ], [ -5.888672, 35.746512 ], [ -5.185547, 35.746512 ] ] ] } } -, { "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.683528 ], [ -8.701172, 25.878994 ], [ -11.953125, 25.958045 ], [ -11.953125, 23.402765 ], [ -12.832031, 23.322080 ], [ -13.095703, 22.755921 ], [ -12.919922, 21.289374 ], [ -16.875000, 21.371244 ], [ -17.050781, 20.961440 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.534847 ], [ -14.589844, 21.861499 ], [ -14.238281, 22.350076 ], [ -13.886719, 23.725012 ], [ -12.480469, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.689453, 26.115986 ], [ -11.425781, 26.902477 ], [ -10.546875, 26.980829 ], [ -9.755859, 26.824071 ], [ -9.404297, 27.059126 ], [ -8.789062, 27.137368 ], [ -8.789062, 27.683528 ], [ -8.701172, 27.683528 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.128906, 14.604847 ], [ -11.953125, 13.410994 ], [ -11.513672, 13.154376 ], [ -11.513672, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.480469, 12.297068 ], [ -13.183594, 12.554564 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.382928 ], [ -16.875000, 13.154376 ], [ -15.908203, 13.154376 ], [ -15.117188, 13.496473 ], [ -14.677734, 13.325485 ], [ -14.238281, 13.239945 ], [ -13.886719, 13.496473 ], [ -14.062500, 13.752725 ], [ -14.677734, 13.667338 ], [ -15.117188, 13.838080 ], [ -15.380859, 13.838080 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.349548 ], [ -17.666016, 14.689881 ], [ -17.226562, 14.944785 ], [ -16.435547, 16.130262 ], [ -16.083984, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.551962 ], [ -14.589844, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.603516, 35.389050 ], [ -2.197266, 35.173808 ], [ -1.757812, 34.524661 ], [ -1.406250, 32.842674 ], [ -1.142578, 32.620870 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.833984, 30.524413 ], [ -5.273438, 29.993002 ], [ -6.064453, 29.764377 ], [ -7.031250, 29.611670 ], [ -8.701172, 28.844674 ], [ -8.701172, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.137368 ], [ -9.404297, 27.059126 ], [ -9.755859, 26.824071 ], [ -10.546875, 26.980829 ], [ -11.425781, 26.902477 ], [ -11.689453, 26.115986 ], [ -12.041016, 26.037042 ], [ -12.480469, 24.766785 ], [ -13.886719, 23.725012 ], [ -14.238281, 22.350076 ], [ -14.589844, 21.861499 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -16.962891, 21.861499 ], [ -16.611328, 22.187405 ], [ -16.259766, 22.674847 ], [ -16.347656, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.527135 ], [ -14.853516, 25.085599 ], [ -14.765625, 25.641526 ], [ -14.414062, 26.273714 ], [ -13.798828, 26.588527 ], [ -13.183594, 27.605671 ], [ -12.656250, 28.071980 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.371094, 29.075375 ], [ -9.580078, 29.916852 ], [ -9.843750, 31.203405 ], [ -9.316406, 32.546813 ], [ -8.701172, 33.211116 ], [ -6.943359, 34.089061 ], [ -5.888672, 35.746512 ], [ -5.185547, 35.746512 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.554564 ], [ -13.798828, 12.125264 ], [ -13.710938, 11.781325 ], [ -14.414062, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.005904 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.699219, 12.382928 ], [ -15.556641, 12.640338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ 1.845703, 20.632784 ], [ 2.021484, 20.138470 ], [ 3.164062, 19.725342 ], [ 3.164062, 19.062118 ], [ 4.306641, 19.145168 ], [ 4.306641, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.538376 ], [ 1.406250, 15.284185 ], [ 1.054688, 14.944785 ], [ -0.263672, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.054688, 14.944785 ], [ -2.021484, 14.519780 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.076172, 13.581921 ], [ -3.515625, 13.325485 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.394531, 12.554564 ], [ -5.185547, 11.695273 ], [ -5.185547, 11.350797 ], [ -5.449219, 10.919618 ], [ -5.361328, 10.401378 ], [ -6.064453, 10.055403 ], [ -6.240234, 10.487812 ], [ -6.679688, 10.401378 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.998047, 10.228437 ], [ -8.349609, 10.487812 ], [ -8.261719, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.349609, 11.350797 ], [ -9.140625, 12.297068 ], [ -9.316406, 12.297068 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.211180 ], [ -11.425781, 12.039321 ], [ -11.513672, 13.154376 ], [ -11.953125, 13.410994 ], [ -12.128906, 14.604847 ], [ -11.865234, 14.774883 ], [ -11.689453, 15.368950 ], [ -11.337891, 15.368950 ], [ -10.634766, 15.114553 ], [ -10.107422, 15.368950 ], [ -9.667969, 15.284185 ], [ -9.580078, 15.453680 ], [ -5.537109, 15.538376 ], [ -5.273438, 16.214675 ], [ -5.449219, 16.299051 ], [ -6.416016, 24.926295 ], [ -4.921875, 25.005973 ] ] ] } } , { "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.838080 ], [ -14.677734, 13.667338 ], [ -14.062500, 13.752725 ], [ -13.886719, 13.496473 ], [ -14.238281, 13.239945 ], [ -14.677734, 13.325485 ], [ -15.117188, 13.496473 ], [ -15.908203, 13.154376 ], [ -16.875000, 13.154376 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.581921 ], [ -15.380859, 13.838080 ], [ -15.117188, 13.838080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.183594, 12.554564 ], [ -12.480469, 12.297068 ], [ -12.216797, 12.468760 ], [ -11.513672, 12.468760 ], [ -11.425781, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.316406, 12.297068 ], [ -9.140625, 12.297068 ], [ -8.349609, 11.350797 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.261719, 10.833306 ], [ -8.349609, 10.487812 ], [ -7.998047, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.822266, 8.581021 ], [ -8.261719, 8.320212 ], [ -8.261719, 7.710992 ], [ -8.701172, 7.710992 ], [ -8.964844, 7.275292 ], [ -9.228516, 7.275292 ], [ -9.404297, 7.536764 ], [ -9.316406, 7.885147 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.320212 ], [ -10.634766, 9.275622 ], [ -11.074219, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.392578, 9.795678 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.853516, 10.919618 ], [ -15.117188, 11.005904 ], [ -14.677734, 11.523088 ], [ -14.414062, 11.523088 ], [ -13.710938, 11.781325 ], [ -13.798828, 12.125264 ], [ -13.710938, 12.554564 ], [ -13.183594, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -13.447266, 16.045813 ], [ -12.128906, 14.604847 ], [ -11.953125, 13.410994 ], [ -11.513672, 13.154376 ], [ -11.513672, 12.468760 ], [ -12.216797, 12.468760 ], [ -12.480469, 12.297068 ], [ -13.183594, 12.554564 ], [ -15.556641, 12.640338 ], [ -16.699219, 12.382928 ], [ -16.875000, 13.154376 ], [ -15.908203, 13.154376 ], [ -15.117188, 13.496473 ], [ -14.677734, 13.325485 ], [ -14.238281, 13.239945 ], [ -13.886719, 13.496473 ], [ -14.062500, 13.752725 ], [ -14.677734, 13.667338 ], [ -15.117188, 13.838080 ], [ -15.380859, 13.838080 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.349548 ], [ -17.666016, 14.689881 ], [ -17.226562, 14.944785 ], [ -16.435547, 16.130262 ], [ -16.083984, 16.467695 ], [ -15.644531, 16.383391 ], [ -15.117188, 16.551962 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.320212 ], [ -10.195312, 8.407168 ], [ -11.162109, 7.362467 ], [ -11.425781, 6.751896 ], [ -12.392578, 7.275292 ], [ -12.919922, 7.798079 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.392578, 9.795678 ], [ -11.953125, 10.055403 ], [ -11.074219, 10.055403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.554564 ], [ -13.798828, 12.125264 ], [ -13.710938, 11.781325 ], [ -14.414062, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.005904 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.699219, 12.382928 ], [ -15.556641, 12.640338 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.371767 ], [ -4.921875, 25.005973 ], [ -6.416016, 24.926295 ], [ -5.449219, 16.299051 ], [ -5.273438, 16.214675 ], [ -5.537109, 15.538376 ], [ -9.580078, 15.453680 ], [ -9.667969, 15.284185 ], [ -10.107422, 15.368950 ], [ -10.634766, 15.114553 ], [ -11.337891, 15.368950 ], [ -11.689453, 15.368950 ], [ -11.865234, 14.774883 ], [ -12.128906, 14.604847 ], [ -13.447266, 16.045813 ], [ -14.589844, 16.636192 ], [ -15.117188, 16.551962 ], [ -15.644531, 16.383391 ], [ -16.083984, 16.467695 ], [ -16.435547, 16.130262 ], [ -16.523438, 16.636192 ], [ -16.259766, 17.140790 ], [ -16.171875, 18.145852 ], [ -16.347656, 19.559790 ], [ -16.259766, 20.055931 ], [ -16.523438, 20.550509 ], [ -17.050781, 20.961440 ], [ -16.875000, 21.371244 ], [ -12.919922, 21.289374 ], [ -13.095703, 22.755921 ], [ -12.832031, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.701172, 25.878994 ], [ -8.701172, 27.371767 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ 1.845703, 20.632784 ], [ 2.021484, 20.138470 ], [ 3.164062, 19.725342 ], [ 3.164062, 19.062118 ], [ 4.306641, 19.145168 ], [ 4.306641, 16.888660 ], [ 3.691406, 16.214675 ], [ 3.603516, 15.538376 ], [ 1.406250, 15.284185 ], [ 1.054688, 14.944785 ], [ -0.263672, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.054688, 14.944785 ], [ -2.021484, 14.519780 ], [ -2.197266, 14.264383 ], [ -2.988281, 13.838080 ], [ -3.076172, 13.581921 ], [ -3.515625, 13.325485 ], [ -4.042969, 13.496473 ], [ -4.306641, 13.239945 ], [ -4.394531, 12.554564 ], [ -5.185547, 11.695273 ], [ -5.185547, 11.350797 ], [ -5.449219, 10.919618 ], [ -5.361328, 10.401378 ], [ -6.064453, 10.055403 ], [ -6.240234, 10.487812 ], [ -6.679688, 10.401378 ], [ -6.855469, 10.141932 ], [ -7.646484, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.998047, 10.228437 ], [ -8.349609, 10.487812 ], [ -8.261719, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.349609, 11.350797 ], [ -9.140625, 12.297068 ], [ -9.316406, 12.297068 ], [ -10.195312, 11.867351 ], [ -10.634766, 11.953349 ], [ -11.074219, 12.211180 ], [ -11.425781, 12.039321 ], [ -11.513672, 13.154376 ], [ -11.953125, 13.410994 ], [ -12.128906, 14.604847 ], [ -11.865234, 14.774883 ], [ -11.689453, 15.368950 ], [ -11.337891, 15.368950 ], [ -10.634766, 15.114553 ], [ -10.107422, 15.368950 ], [ -9.667969, 15.284185 ], [ -9.580078, 15.453680 ], [ -5.537109, 15.538376 ], [ -5.273438, 16.214675 ], [ -5.449219, 16.299051 ], [ -6.416016, 24.926295 ], [ -4.921875, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.183594, 12.554564 ], [ -12.480469, 12.297068 ], [ -12.216797, 12.468760 ], [ -11.513672, 12.468760 ], [ -11.425781, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.634766, 11.953349 ], [ -10.195312, 11.867351 ], [ -9.316406, 12.297068 ], [ -9.140625, 12.297068 ], [ -8.349609, 11.350797 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.437500, 10.919618 ], [ -8.261719, 10.833306 ], [ -8.349609, 10.487812 ], [ -7.998047, 10.228437 ], [ -8.261719, 10.141932 ], [ -8.349609, 9.795678 ], [ -7.822266, 8.581021 ], [ -8.261719, 8.320212 ], [ -8.261719, 7.710992 ], [ -8.701172, 7.710992 ], [ -8.964844, 7.275292 ], [ -9.228516, 7.275292 ], [ -9.404297, 7.536764 ], [ -9.316406, 7.885147 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.320212 ], [ -10.634766, 9.275622 ], [ -11.074219, 10.055403 ], [ -11.953125, 10.055403 ], [ -12.392578, 9.795678 ], [ -12.744141, 9.362353 ], [ -13.271484, 8.928487 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.853516, 10.919618 ], [ -15.117188, 11.005904 ], [ -14.677734, 11.523088 ], [ -14.414062, 11.523088 ], [ -13.710938, 11.781325 ], [ -13.798828, 12.125264 ], [ -13.710938, 12.554564 ], [ -13.183594, 12.554564 ] ] ] } } , { "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.263672, 14.434680 ], [ 0.439453, 14.008696 ], [ 0.966797, 13.325485 ], [ 1.054688, 12.811801 ], [ 2.197266, 12.640338 ], [ 2.197266, 11.953349 ], [ 1.933594, 11.609193 ], [ 1.406250, 11.523088 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.791016, 10.919618 ], [ -2.900391, 10.919618 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.955078, 9.882275 ], [ -4.306641, 9.622414 ], [ -4.746094, 9.795678 ], [ -4.921875, 10.141932 ], [ -5.361328, 10.401378 ], [ -5.449219, 10.919618 ], [ -5.185547, 11.350797 ], [ -5.185547, 11.695273 ], [ -4.394531, 12.554564 ], [ -4.306641, 13.239945 ], [ -4.042969, 13.496473 ], [ -3.515625, 13.325485 ], [ -3.076172, 13.581921 ], [ -2.988281, 13.838080 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.519780 ], [ -1.054688, 14.944785 ], [ -0.527344, 15.114553 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 10.055403 ], [ -10.634766, 9.275622 ], [ -10.546875, 8.320212 ], [ -10.195312, 8.407168 ], [ -11.162109, 7.362467 ], [ -11.425781, 6.751896 ], [ -12.392578, 7.275292 ], [ -12.919922, 7.798079 ], [ -13.271484, 8.928487 ], [ -12.744141, 9.362353 ], [ -12.392578, 9.795678 ], [ -11.953125, 10.055403 ], [ -11.074219, 10.055403 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.581021 ], [ -9.316406, 7.885147 ], [ -9.404297, 7.536764 ], [ -9.228516, 7.275292 ], [ -8.964844, 7.275292 ], [ -8.701172, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.349609, 6.926427 ], [ -8.613281, 6.489983 ], [ -7.558594, 5.703448 ], [ -7.734375, 4.390229 ], [ -7.998047, 4.390229 ], [ -8.964844, 4.828260 ], [ -11.425781, 6.751896 ], [ -11.162109, 7.362467 ], [ -10.195312, 8.407168 ], [ -9.755859, 8.581021 ] ] ] } } , { "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.487812 ], [ -6.064453, 10.055403 ], [ -5.361328, 10.401378 ], [ -4.921875, 10.141932 ], [ -4.746094, 9.795678 ], [ -4.306641, 9.622414 ], [ -3.955078, 9.882275 ], [ -3.515625, 9.882275 ], [ -2.812500, 9.622414 ], [ -2.548828, 8.233237 ], [ -2.988281, 7.362467 ], [ -3.251953, 6.227934 ], [ -2.812500, 5.353521 ], [ -2.812500, 5.003394 ], [ -4.658203, 5.178482 ], [ -5.800781, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.558594, 5.703448 ], [ -8.613281, 6.489983 ], [ -8.349609, 6.926427 ], [ -8.525391, 7.362467 ], [ -8.437500, 7.710992 ], [ -8.261719, 7.710992 ], [ -8.261719, 8.320212 ], [ -7.822266, 8.581021 ], [ -8.349609, 9.795678 ], [ -8.261719, 10.141932 ], [ -7.910156, 10.314919 ], [ -7.646484, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.679688, 10.401378 ], [ -6.240234, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ 180.000000, -85.051129 ], [ -148.183594, -85.574852 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.578125, -69.990535 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 178.242188, -84.474065 ], [ 180.000000, -84.714152 ] ] ], [ [ [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.798828, -85.574852 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.406109 ], [ -77.871094, 0.790990 ], [ -77.695312, 0.790990 ], [ -77.431641, 0.439449 ], [ -76.552734, 0.263671 ], [ -76.289062, 0.439449 ], [ -75.410156, -0.175781 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.581830 ], [ -76.640625, -2.635789 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -79.628906, -4.477856 ], [ -80.068359, -4.302591 ], [ -80.419922, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -3.864255 ], [ -80.332031, -3.425692 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.196727 ], [ -80.332031, -2.723583 ], [ -80.947266, -2.284551 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -79.980469, 0.351560 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } , { "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 12.468760 ], [ -71.367188, 12.382928 ], [ -71.103516, 12.125264 ], [ -71.367188, 11.781325 ], [ -71.982422, 11.609193 ], [ -72.246094, 11.092166 ], [ -72.949219, 10.487812 ], [ -73.037109, 9.709057 ], [ -73.300781, 9.188870 ], [ -72.773438, 9.102097 ], [ -72.685547, 8.667918 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.449624 ], [ -72.158203, 7.362467 ], [ -71.982422, 7.013668 ], [ -70.664062, 7.100893 ], [ -70.136719, 6.926427 ], [ -69.345703, 6.140555 ], [ -67.675781, 6.227934 ], [ -67.324219, 6.053161 ], [ -67.763672, 5.178482 ], [ -67.851562, 4.477856 ], [ -67.324219, 3.337954 ], [ -67.851562, 2.811371 ], [ -67.148438, 2.284551 ], [ -66.884766, 1.230374 ], [ -67.060547, 1.142502 ], [ -67.236328, 1.757537 ], [ -67.500000, 2.021065 ], [ -67.851562, 1.669686 ], [ -69.785156, 1.757537 ], [ -69.785156, 1.054628 ], [ -69.257812, 0.966751 ], [ -69.257812, 0.615223 ], [ -69.433594, 0.703107 ], [ -70.048828, 0.527336 ], [ -70.048828, -0.175781 ], [ -69.609375, -0.527336 ], [ -69.433594, -1.142502 ], [ -69.873047, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.664062, -3.776559 ], [ -70.048828, -2.723583 ], [ -70.839844, -2.284551 ], [ -71.455078, -2.372369 ], [ -71.806641, -2.196727 ], [ -72.333984, -2.460181 ], [ -73.037109, -2.284551 ], [ -73.652344, -1.230374 ], [ -74.091797, -0.966751 ], [ -74.443359, -0.527336 ], [ -75.146484, -0.087891 ], [ -75.410156, -0.175781 ], [ -76.289062, 0.439449 ], [ -76.552734, 0.263671 ], [ -77.431641, 0.439449 ], [ -77.695312, 0.790990 ], [ -77.871094, 0.790990 ], [ -78.837891, 1.406109 ], [ -79.013672, 1.669686 ], [ -78.574219, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.398438, 2.635789 ], [ -77.958984, 2.723583 ], [ -77.167969, 3.864255 ], [ -77.519531, 4.127285 ], [ -77.343750, 4.653080 ], [ -77.519531, 5.615986 ], [ -77.343750, 5.878332 ], [ -77.519531, 6.664608 ], [ -77.871094, 7.188101 ], [ -77.783203, 7.710992 ], [ -77.431641, 7.623887 ], [ -77.255859, 7.972198 ], [ -77.431641, 8.494105 ], [ -77.343750, 8.667918 ], [ -76.816406, 8.667918 ], [ -76.113281, 9.362353 ], [ -75.673828, 9.449062 ], [ -75.498047, 10.660608 ], [ -74.882812, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.179688, 11.350797 ], [ -73.388672, 11.264612 ], [ -72.246094, 11.953349 ], [ -71.718750, 12.468760 ] ] ] } } @@ -104,60 +100,64 @@ , { "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.302734, -9.795678 ], [ -65.390625, -11.609193 ], [ -64.335938, -12.468760 ], [ -63.193359, -12.640338 ], [ -62.841797, -12.983148 ], [ -62.138672, -13.239945 ], [ -61.699219, -13.496473 ], [ -61.083984, -13.496473 ], [ -60.468750, -13.752725 ], [ -60.292969, -15.114553 ], [ -60.556641, -15.114553 ], [ -60.117188, -16.299051 ], [ -58.271484, -16.299051 ], [ -58.359375, -16.888660 ], [ -58.271484, -17.308688 ], [ -57.744141, -17.560247 ], [ -57.480469, -18.145852 ], [ -57.656250, -18.979026 ], [ -57.919922, -19.394068 ], [ -57.832031, -19.973349 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.890723 ], [ -59.150391, -19.394068 ], [ -60.029297, -19.311143 ], [ -61.787109, -19.642588 ], [ -62.226562, -20.550509 ], [ -62.314453, -21.043491 ], [ -62.666016, -22.268764 ], [ -62.841797, -22.024546 ], [ -63.984375, -22.024546 ], [ -64.335938, -22.836946 ], [ -64.951172, -22.105999 ], [ -66.269531, -21.861499 ], [ -67.148438, -22.755921 ], [ -67.851562, -22.836946 ], [ -68.203125, -21.534847 ], [ -68.730469, -20.385825 ], [ -68.466797, -19.394068 ], [ -68.994141, -18.979026 ], [ -69.082031, -18.229351 ], [ -69.609375, -17.560247 ], [ -68.994141, -16.467695 ], [ -69.433594, -15.623037 ], [ -69.169922, -15.284185 ], [ -69.345703, -14.944785 ], [ -68.906250, -14.434680 ], [ -68.906250, -12.897489 ], [ -68.642578, -12.554564 ], [ -69.521484, -10.919618 ], [ -68.291016, -11.005904 ], [ -68.027344, -10.746969 ], [ -66.621094, -9.968851 ], [ -65.302734, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.643063 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.470038 ], [ -65.039062, -54.724620 ], [ -65.478516, -55.178868 ], [ -66.445312, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.861499 ], [ -64.951172, -22.105999 ], [ -64.335938, -22.836946 ], [ -63.984375, -22.024546 ], [ -62.841797, -22.024546 ], [ -60.820312, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.744141, -25.165173 ], [ -57.656250, -25.641526 ], [ -58.623047, -27.137368 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.755859, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.613281, -26.902477 ], [ -55.195312, -27.916767 ], [ -57.656250, -30.221102 ], [ -58.183594, -32.026706 ], [ -58.095703, -33.063924 ], [ -58.359375, -33.284620 ], [ -58.535156, -34.452218 ], [ -57.216797, -35.317366 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.777344, -36.879621 ], [ -57.744141, -38.203655 ], [ -59.238281, -38.754083 ], [ -61.259766, -38.959409 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.647304 ], [ -62.753906, -41.046217 ], [ -63.808594, -41.178654 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.951172, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.720703, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.335938, -42.875964 ], [ -65.214844, -43.516689 ], [ -65.302734, -44.527843 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.316584 ], [ -66.621094, -47.040182 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.148438, -48.690960 ], [ -67.851562, -49.894634 ], [ -68.730469, -50.289339 ], [ -69.169922, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.115234, -52.375599 ], [ -69.521484, -52.160455 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.680797 ], [ -72.949219, -50.736455 ], [ -73.300781, -50.401515 ], [ -73.388672, -49.325122 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.421875, -47.754098 ], [ -71.894531, -46.860191 ], [ -71.542969, -45.583290 ], [ -71.630859, -44.964798 ], [ -71.191406, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.771094 ], [ -71.894531, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.718750, -42.032974 ], [ -71.894531, -40.847060 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.400391, -36.031332 ], [ -70.400391, -35.173808 ], [ -69.785156, -34.161818 ], [ -69.785156, -33.284620 ], [ -70.048828, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.372875 ], [ -70.048828, -29.382175 ], [ -69.697266, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.554688, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.378906, -24.527135 ], [ -67.324219, -24.046464 ], [ -66.972656, -22.998852 ], [ -67.148438, -22.755921 ], [ -66.269531, -21.861499 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -55.986328, -30.902225 ], [ -55.634766, -30.826781 ], [ -53.789062, -32.026706 ], [ -53.173828, -32.694866 ], [ -53.613281, -33.211116 ], [ -53.349609, -33.797409 ], [ -53.789062, -34.379713 ], [ -54.931641, -34.957995 ], [ -55.634766, -34.741612 ], [ -56.250000, -34.885931 ], [ -57.128906, -34.452218 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.943360 ], [ -58.359375, -33.284620 ], [ -58.095703, -33.063924 ], [ -58.183594, -32.026706 ], [ -57.656250, -30.221102 ], [ -56.953125, -30.145127 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.643063 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.470038 ], [ -65.039062, -54.724620 ], [ -65.478516, -55.178868 ], [ -66.445312, -55.229023 ], [ -66.972656, -54.876607 ], [ -68.642578, -54.876607 ], [ -68.642578, -52.643063 ] ] ], [ [ [ -66.269531, -21.861499 ], [ -64.951172, -22.105999 ], [ -64.335938, -22.836946 ], [ -63.984375, -22.024546 ], [ -62.841797, -22.024546 ], [ -60.820312, -23.885838 ], [ -60.029297, -24.046464 ], [ -58.798828, -24.766785 ], [ -57.744141, -25.165173 ], [ -57.656250, -25.641526 ], [ -58.623047, -27.137368 ], [ -56.513672, -27.527758 ], [ -55.722656, -27.371767 ], [ -54.755859, -26.588527 ], [ -54.667969, -25.720735 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.115986 ], [ -53.613281, -26.902477 ], [ -55.195312, -27.916767 ], [ -57.656250, -30.221102 ], [ -58.183594, -32.026706 ], [ -58.095703, -33.063924 ], [ -58.359375, -33.284620 ], [ -58.535156, -34.452218 ], [ -57.216797, -35.317366 ], [ -57.392578, -35.960223 ], [ -56.777344, -36.385913 ], [ -56.777344, -36.879621 ], [ -57.744141, -38.203655 ], [ -59.238281, -38.754083 ], [ -61.259766, -38.959409 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.647304 ], [ -62.753906, -41.046217 ], [ -63.808594, -41.178654 ], [ -64.775391, -40.780541 ], [ -65.126953, -41.046217 ], [ -64.951172, -42.032974 ], [ -64.335938, -42.358544 ], [ -63.720703, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.335938, -42.875964 ], [ -65.214844, -43.516689 ], [ -65.302734, -44.527843 ], [ -65.566406, -45.026950 ], [ -66.533203, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.316584 ], [ -66.621094, -47.040182 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -67.148438, -48.690960 ], [ -67.851562, -49.894634 ], [ -68.730469, -50.289339 ], [ -69.169922, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.115234, -52.375599 ], [ -69.521484, -52.160455 ], [ -71.894531, -51.998410 ], [ -72.333984, -51.399206 ], [ -72.333984, -50.680797 ], [ -72.949219, -50.736455 ], [ -73.300781, -50.401515 ], [ -73.388672, -49.325122 ], [ -72.685547, -48.864715 ], [ -72.333984, -48.224673 ], [ -72.421875, -47.754098 ], [ -71.894531, -46.860191 ], [ -71.542969, -45.583290 ], [ -71.630859, -44.964798 ], [ -71.191406, -44.777936 ], [ -71.367188, -44.402392 ], [ -71.806641, -44.213710 ], [ -71.455078, -43.771094 ], [ -71.894531, -43.389082 ], [ -72.158203, -42.228517 ], [ -71.718750, -42.032974 ], [ -71.894531, -40.847060 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.103516, -37.579413 ], [ -71.103516, -36.668419 ], [ -70.400391, -36.031332 ], [ -70.400391, -35.173808 ], [ -69.785156, -34.161818 ], [ -69.785156, -33.284620 ], [ -70.048828, -33.063924 ], [ -70.576172, -31.353637 ], [ -69.960938, -30.372875 ], [ -70.048828, -29.382175 ], [ -69.697266, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.554688, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.378906, -24.527135 ], [ -67.324219, -24.046464 ], [ -66.972656, -22.998852 ], [ -67.148438, -22.755921 ], [ -66.269531, -21.861499 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.029297, -19.311143 ], [ -59.150391, -19.394068 ], [ -58.183594, -19.890723 ], [ -58.183594, -20.138470 ], [ -57.832031, -20.715015 ], [ -57.919922, -22.105999 ], [ -56.865234, -22.268764 ], [ -56.513672, -22.105999 ], [ -55.810547, -22.350076 ], [ -55.634766, -22.674847 ], [ -55.371094, -23.966176 ], [ -55.019531, -23.966176 ], [ -54.667969, -23.805450 ], [ -54.316406, -24.046464 ], [ -54.316406, -24.607069 ], [ -54.755859, -26.588527 ], [ -55.722656, -27.371767 ], [ -56.513672, -27.527758 ], [ -58.623047, -27.137368 ], [ -57.656250, -25.641526 ], [ -57.744141, -25.165173 ], [ -58.798828, -24.766785 ], [ -60.029297, -24.046464 ], [ -60.820312, -23.885838 ], [ -62.666016, -22.268764 ], [ -62.314453, -21.043491 ], [ -62.226562, -20.550509 ], [ -61.787109, -19.642588 ], [ -60.029297, -19.311143 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.536273 ], [ -68.642578, -52.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.876607 ], [ -67.324219, -55.279115 ], [ -68.115234, -55.627996 ], [ -68.642578, -55.578345 ], [ -69.257812, -55.478853 ], [ -69.960938, -55.178868 ], [ -71.015625, -55.078367 ], [ -73.300781, -53.956086 ], [ -74.619141, -52.855864 ], [ -73.828125, -53.067627 ], [ -72.421875, -53.696706 ], [ -71.103516, -54.059388 ], [ -70.576172, -53.592505 ], [ -70.224609, -52.908902 ], [ -69.345703, -52.536273 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.229351 ], [ -68.994141, -18.979026 ], [ -68.466797, -19.394068 ], [ -68.730469, -20.385825 ], [ -68.203125, -21.534847 ], [ -67.851562, -22.836946 ], [ -67.148438, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.046464 ], [ -68.378906, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.554688, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.697266, -28.459033 ], [ -70.048828, -29.382175 ], [ -69.960938, -30.372875 ], [ -70.576172, -31.353637 ], [ -70.048828, -33.063924 ], [ -69.785156, -33.284620 ], [ -69.785156, -34.161818 ], [ -70.400391, -35.173808 ], [ -70.400391, -36.031332 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -71.894531, -40.847060 ], [ -71.718750, -42.032974 ], [ -72.158203, -42.228517 ], [ -71.894531, -43.389082 ], [ -71.455078, -43.771094 ], [ -71.806641, -44.213710 ], [ -71.367188, -44.402392 ], [ -71.191406, -44.777936 ], [ -71.630859, -44.964798 ], [ -71.542969, -45.583290 ], [ -71.894531, -46.860191 ], [ -72.421875, -47.754098 ], [ -72.333984, -48.224673 ], [ -72.685547, -48.864715 ], [ -73.388672, -49.325122 ], [ -73.300781, -50.401515 ], [ -72.949219, -50.736455 ], [ -72.333984, -50.680797 ], [ -72.333984, -51.399206 ], [ -71.894531, -51.998410 ], [ -69.521484, -52.160455 ], [ -68.554688, -52.321911 ], [ -69.433594, -52.268157 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.852527 ], [ -71.455078, -53.852527 ], [ -72.597656, -53.540307 ], [ -73.740234, -52.855864 ], [ -74.970703, -52.268157 ], [ -75.234375, -51.618017 ], [ -74.970703, -51.069017 ], [ -75.498047, -50.401515 ], [ -75.585938, -48.690960 ], [ -75.146484, -47.694974 ], [ -74.091797, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.212891, -44.465151 ], [ -72.685547, -42.358544 ], [ -73.388672, -42.098222 ], [ -73.740234, -43.389082 ], [ -74.355469, -43.197167 ], [ -73.652344, -39.909736 ], [ -73.212891, -39.232253 ], [ -73.476562, -38.272689 ], [ -73.564453, -37.160317 ], [ -73.125000, -37.090240 ], [ -71.894531, -33.943360 ], [ -71.455078, -32.398516 ], [ -71.630859, -30.902225 ], [ -71.367188, -30.069094 ], [ -71.455078, -28.844674 ], [ -70.927734, -27.605671 ], [ -70.048828, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.873047, -18.062312 ], [ -69.609375, -17.560247 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.124213 ], [ -57.744141, -51.563412 ], [ -58.007812, -51.890054 ], [ -59.414062, -52.214339 ], [ -59.853516, -51.835778 ], [ -60.732422, -52.321911 ], [ -61.171875, -51.835778 ], [ -60.029297, -51.234407 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.124213 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ 180.000000, -85.051129 ], [ -148.183594, -85.574852 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.578125, -69.990535 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 178.242188, -84.474065 ], [ 180.000000, -84.714152 ] ] ], [ [ [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.798828, -85.574852 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ] ] ], [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.564453, 69.068563 ], [ 28.476562, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.091797, 66.930060 ], [ 30.234375, 65.802776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.058594, 63.548552 ], [ 31.552734, 62.875188 ], [ 31.113281, 62.349609 ], [ 28.037109, 60.500525 ], [ 26.279297, 60.413852 ], [ 24.521484, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.324219, 60.370429 ], [ 21.357422, 60.716198 ], [ 21.533203, 61.689872 ], [ 21.093750, 62.593341 ], [ 21.533203, 63.194018 ], [ 22.412109, 63.821288 ], [ 24.697266, 64.886265 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.549367 ], [ 23.906250, 66.018018 ], [ 23.554688, 66.407955 ], [ 23.554688, 67.941650 ], [ 20.654297, 69.099940 ], [ 21.269531, 69.380313 ], [ 22.324219, 68.847665 ], [ 23.642578, 68.879358 ], [ 24.697266, 68.656555 ], [ 25.664062, 69.099940 ], [ 26.191406, 69.839622 ], [ 27.773438, 70.170201 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.392578, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.128906, 54.775346 ], [ 11.074219, 55.379110 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.546875, 57.231503 ], [ 10.283203, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.072035 ], [ 10.371094, 56.170023 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.316406, 54.826008 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.261719, 56.800878 ], [ 8.525391, 57.088515 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.407955 ], [ 23.906250, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.396938 ], [ 19.775391, 63.626745 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.354614 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.064840 ], [ 17.841797, 58.950008 ], [ 16.787109, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.908203, 56.121060 ], [ 14.677734, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 12.656250, 56.316537 ], [ 11.777344, 57.421294 ], [ 10.986328, 58.859224 ], [ 11.425781, 59.445075 ], [ 12.304688, 60.108670 ], [ 12.656250, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.953125, 63.114638 ], [ 12.568359, 64.052978 ], [ 13.535156, 64.052978 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.774125 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.753906, 68.007571 ], [ 18.017578, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } , { "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.943359, 53.488046 ], [ 7.119141, 53.120405 ], [ 6.855469, 52.214339 ], [ 6.591797, 51.835778 ], [ 5.976562, 51.835778 ], [ 6.152344, 50.792047 ], [ 5.625000, 51.013755 ], [ 5.009766, 51.454007 ], [ 4.042969, 51.289406 ], [ 3.339844, 51.344339 ], [ 3.867188, 51.618017 ], [ 4.746094, 53.067627 ], [ 6.064453, 53.488046 ], [ 6.943359, 53.488046 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.009766, 51.454007 ], [ 5.625000, 51.013755 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.064192 ], [ 5.712891, 49.553726 ], [ 4.833984, 50.007739 ], [ 4.306641, 49.894634 ], [ 3.164062, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.548828, 51.124213 ], [ 3.339844, 51.344339 ], [ 4.042969, 51.289406 ], [ 5.009766, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.565474 ], [ -51.679688, 4.127285 ], [ -52.558594, 2.547988 ], [ -52.910156, 2.108899 ], [ -53.437500, 2.021065 ], [ -53.525391, 2.372369 ], [ -53.789062, 2.372369 ], [ -54.052734, 2.108899 ], [ -54.492188, 2.284551 ], [ -54.052734, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.548828, 51.124213 ], [ 2.636719, 50.792047 ], [ 3.164062, 50.792047 ], [ 4.306641, 49.894634 ], [ 4.833984, 50.007739 ], [ 5.712891, 49.553726 ], [ 6.152344, 49.439557 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.470703, 47.635784 ], [ 7.207031, 47.457809 ], [ 6.767578, 47.517201 ], [ 6.767578, 47.279229 ], [ 6.064453, 46.739861 ], [ 6.064453, 46.255847 ], [ 6.503906, 46.437857 ], [ 6.855469, 46.012224 ], [ 6.767578, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.276671 ], [ 7.558594, 44.150681 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.076172, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.553080 ], [ -1.494141, 43.004647 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.012224 ], [ -2.197266, 47.040182 ], [ -2.988281, 47.576526 ], [ -4.482422, 47.931066 ], [ -4.570312, 48.690960 ], [ -3.251953, 48.922499 ], [ -1.582031, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.325122 ], [ 1.318359, 50.120578 ], [ 1.669922, 50.958427 ], [ 2.548828, 51.124213 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.228517 ], [ 8.789062, 42.617791 ], [ 9.404297, 43.004647 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.009766, 51.454007 ], [ 5.625000, 51.013755 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.064192 ], [ 5.712891, 49.553726 ], [ 4.833984, 50.007739 ], [ 4.306641, 49.894634 ], [ 3.164062, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.548828, 51.124213 ], [ 3.339844, 51.344339 ], [ 4.042969, 51.289406 ], [ 5.009766, 51.454007 ] ] ] } } , { "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 50.120578 ], [ 6.240234, 49.894634 ], [ 6.152344, 49.439557 ], [ 5.888672, 49.439557 ], [ 5.712891, 49.553726 ], [ 5.800781, 50.064192 ], [ 6.064453, 50.120578 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.790897 ], [ -52.910156, 5.441022 ], [ -51.855469, 4.565474 ], [ -51.679688, 4.127285 ], [ -52.558594, 2.547988 ], [ -52.910156, 2.108899 ], [ -53.437500, 2.021065 ], [ -53.525391, 2.372369 ], [ -53.789062, 2.372369 ], [ -54.052734, 2.108899 ], [ -54.492188, 2.284551 ], [ -54.052734, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.790897 ] ] ], [ [ [ 2.548828, 51.124213 ], [ 2.636719, 50.792047 ], [ 3.164062, 50.792047 ], [ 4.306641, 49.894634 ], [ 4.833984, 50.007739 ], [ 5.712891, 49.553726 ], [ 6.152344, 49.439557 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.470703, 47.635784 ], [ 7.207031, 47.457809 ], [ 6.767578, 47.517201 ], [ 6.767578, 47.279229 ], [ 6.064453, 46.739861 ], [ 6.064453, 46.255847 ], [ 6.503906, 46.437857 ], [ 6.855469, 46.012224 ], [ 6.767578, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.276671 ], [ 7.558594, 44.150681 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.076172, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.553080 ], [ -1.494141, 43.004647 ], [ -1.933594, 43.452919 ], [ -1.406250, 44.024422 ], [ -1.230469, 46.012224 ], [ -2.197266, 47.040182 ], [ -2.988281, 47.576526 ], [ -4.482422, 47.931066 ], [ -4.570312, 48.690960 ], [ -3.251953, 48.922499 ], [ -1.582031, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.325122 ], [ 1.318359, 50.120578 ], [ 1.669922, 50.958427 ], [ 2.548828, 51.124213 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.228517 ], [ 8.789062, 42.617791 ], [ 9.404297, 43.004647 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.813155 ], [ 9.580078, 47.517201 ], [ 9.492188, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.458984, 46.920255 ], [ 10.371094, 46.498392 ], [ 9.931641, 46.316584 ], [ 9.140625, 46.437857 ], [ 8.964844, 46.012224 ], [ 8.525391, 46.012224 ], [ 8.349609, 46.134170 ], [ 7.734375, 45.828799 ], [ 7.294922, 45.767523 ], [ 6.855469, 46.012224 ], [ 6.503906, 46.437857 ], [ 6.064453, 46.255847 ], [ 6.064453, 46.739861 ], [ 6.767578, 47.279229 ], [ 6.767578, 47.517201 ], [ 7.207031, 47.457809 ], [ 7.470703, 47.635784 ], [ 8.349609, 47.635784 ], [ 8.525391, 47.813155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 9.931641, 54.572062 ], [ 10.986328, 54.367759 ], [ 10.898438, 54.007769 ], [ 11.953125, 54.213861 ], [ 12.480469, 54.470038 ], [ 13.623047, 54.059388 ], [ 14.150391, 53.748711 ], [ 14.326172, 53.225768 ], [ 14.062500, 52.961875 ], [ 14.414062, 52.643063 ], [ 14.677734, 52.106505 ], [ 14.589844, 51.727028 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.013755 ], [ 14.326172, 51.124213 ], [ 14.062500, 50.903033 ], [ 13.359375, 50.736455 ], [ 13.007812, 50.457504 ], [ 12.216797, 50.289339 ], [ 12.480469, 49.553726 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.064453, 50.120578 ], [ 6.152344, 50.792047 ], [ 5.976562, 51.835778 ], [ 6.591797, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.120405 ], [ 6.943359, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.910156, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.613281, 54.418930 ], [ 8.525391, 54.977614 ], [ 9.316406, 54.826008 ], [ 9.931641, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.392578, 56.121060 ], [ 12.656250, 55.627996 ], [ 12.128906, 54.775346 ], [ 11.074219, 55.379110 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 10.546875, 57.751076 ], [ 10.546875, 57.231503 ], [ 10.283203, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.634766, 56.072035 ], [ 10.371094, 56.170023 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.316406, 54.826008 ], [ 8.525391, 54.977614 ], [ 8.085938, 55.528631 ], [ 8.085938, 56.559482 ], [ 8.261719, 56.800878 ], [ 8.525391, 57.088515 ], [ 9.404297, 57.183902 ], [ 9.755859, 57.468589 ], [ 10.546875, 57.751076 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.666016, 54.876607 ], [ 18.632812, 54.673831 ], [ 18.720703, 54.418930 ], [ 20.917969, 54.316523 ], [ 22.763672, 54.316523 ], [ 23.203125, 54.213861 ], [ 23.818359, 53.067627 ], [ 23.818359, 52.696361 ], [ 23.203125, 52.482780 ], [ 23.466797, 51.998410 ], [ 23.554688, 51.563412 ], [ 23.994141, 50.680797 ], [ 23.906250, 50.401515 ], [ 23.466797, 50.289339 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.621094, 49.496675 ], [ 20.917969, 49.325122 ], [ 20.390625, 49.439557 ], [ 19.863281, 49.210420 ], [ 19.335938, 49.553726 ], [ 18.896484, 49.439557 ], [ 18.369141, 50.007739 ], [ 17.666016, 50.064192 ], [ 17.578125, 50.345460 ], [ 16.875000, 50.457504 ], [ 16.699219, 50.233152 ], [ 16.171875, 50.401515 ], [ 16.259766, 50.680797 ], [ 15.468750, 50.792047 ], [ 15.029297, 51.124213 ], [ 14.589844, 51.727028 ], [ 14.677734, 52.106505 ], [ 14.414062, 52.643063 ], [ 14.062500, 52.961875 ], [ 14.326172, 53.225768 ], [ 14.150391, 53.748711 ], [ 14.765625, 54.059388 ], [ 17.666016, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 49.037868 ], [ 15.996094, 48.748945 ], [ 16.523438, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.875000, 47.694974 ], [ 16.347656, 47.694974 ], [ 16.523438, 47.517201 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 12.392578, 46.739861 ], [ 12.128906, 47.100045 ], [ 11.162109, 46.920255 ], [ 11.074219, 46.739861 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.580078, 47.517201 ], [ 9.931641, 47.576526 ], [ 10.371094, 47.279229 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.656250, 47.694974 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.919922, 48.283193 ], [ 13.271484, 48.400032 ], [ 13.623047, 48.864715 ], [ 14.326172, 48.574790 ], [ 14.941406, 48.980217 ], [ 15.292969, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.498392 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 14.941406, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.414062, 45.460131 ], [ 13.710938, 45.521744 ], [ 13.974609, 45.583290 ], [ 13.710938, 46.012224 ], [ 13.798828, 46.498392 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.679594 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.498392 ], [ 17.666016, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.890008 ], [ 19.423828, 45.213004 ], [ 18.984375, 44.840291 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.347656, 45.026950 ], [ 15.996094, 45.213004 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.024422 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.004647 ], [ 18.544922, 42.617791 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.962891, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.205078, 44.213710 ], [ 15.380859, 44.339565 ], [ 14.941406, 44.715514 ], [ 14.941406, 45.089036 ], [ 14.238281, 45.213004 ], [ 13.974609, 44.777936 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.460131 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.828799 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.498392 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.498392 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 14.941406, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.414062, 45.460131 ], [ 13.710938, 45.521744 ], [ 13.974609, 45.583290 ], [ 13.710938, 46.012224 ], [ 13.798828, 46.498392 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.679594 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } , { "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 49.553726 ], [ 19.863281, 49.210420 ], [ 20.390625, 49.439557 ], [ 20.917969, 49.325122 ], [ 21.621094, 49.496675 ], [ 22.587891, 49.095452 ], [ 22.060547, 48.400032 ], [ 21.884766, 48.341646 ], [ 20.830078, 48.632909 ], [ 20.478516, 48.574790 ], [ 20.214844, 48.341646 ], [ 18.808594, 48.107431 ], [ 18.720703, 47.872144 ], [ 17.841797, 47.754098 ], [ 16.962891, 48.107431 ], [ 16.875000, 48.458352 ], [ 17.138672, 48.806863 ], [ 17.578125, 48.806863 ], [ 17.929688, 48.922499 ], [ 18.105469, 49.037868 ], [ 18.193359, 49.267805 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.335938, 49.553726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.213004 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.402392 ], [ 19.599609, 44.024422 ], [ 19.423828, 43.580391 ], [ 18.720703, 43.197167 ], [ 18.544922, 42.617791 ], [ 17.666016, 43.004647 ], [ 17.314453, 43.452919 ], [ 16.435547, 44.024422 ], [ 15.732422, 44.840291 ], [ 15.996094, 45.213004 ], [ 16.347656, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.213004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.498392 ], [ 17.666016, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.890008 ], [ 19.423828, 45.213004 ], [ 18.984375, 44.840291 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.347656, 45.026950 ], [ 15.996094, 45.213004 ], [ 15.732422, 44.840291 ], [ 16.435547, 44.024422 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.004647 ], [ 18.544922, 42.617791 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.962891, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.205078, 44.213710 ], [ 15.380859, 44.339565 ], [ 14.941406, 44.715514 ], [ 14.941406, 45.089036 ], [ 14.238281, 45.213004 ], [ 13.974609, 44.777936 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.460131 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.828799 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.682435 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.566406, 42.228517 ], [ 20.566406, 41.836828 ], [ 20.478516, 41.508577 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.654297, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.511719, 41.705729 ], [ 19.335938, 42.163403 ], [ 19.775391, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.213004 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.402392 ], [ 19.599609, 44.024422 ], [ 19.423828, 43.580391 ], [ 18.720703, 43.197167 ], [ 18.544922, 42.617791 ], [ 17.666016, 43.004647 ], [ 17.314453, 43.452919 ], [ 16.435547, 44.024422 ], [ 15.732422, 44.840291 ], [ 15.996094, 45.213004 ], [ 16.347656, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.213004 ] ] ] } } , { "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 43.516689 ], [ 19.599609, 43.197167 ], [ 20.302734, 42.875964 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.488302 ], [ 19.775391, 42.682435 ], [ 19.335938, 42.163403 ], [ 19.335938, 41.902277 ], [ 18.457031, 42.488302 ], [ 18.720703, 43.197167 ], [ 19.248047, 43.516689 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.982422, 59.445075 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.421875, 58.722599 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.468589 ], [ 26.455078, 57.468589 ], [ 25.136719, 57.984808 ], [ 24.345703, 57.797944 ], [ 24.433594, 58.401712 ], [ 24.082031, 58.263287 ], [ 23.466797, 58.631217 ], [ 23.378906, 59.175928 ], [ 24.609375, 59.445075 ], [ 25.839844, 59.623325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.682435 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.566406, 42.228517 ], [ 20.566406, 41.836828 ], [ 20.478516, 41.508577 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.654297, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.511719, 41.705729 ], [ 19.335938, 42.163403 ], [ 19.775391, 42.682435 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.706179 ], [ 20.917969, 45.398450 ], [ 21.445312, 45.151053 ], [ 21.533203, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.500000, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.213710 ], [ 22.412109, 44.024422 ], [ 22.500000, 43.644026 ], [ 23.027344, 43.197167 ], [ 22.587891, 42.875964 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.197167 ], [ 20.478516, 42.875964 ], [ 20.214844, 42.811522 ], [ 20.302734, 42.875964 ], [ 19.599609, 43.197167 ], [ 19.248047, 43.516689 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.160156, 44.402392 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 19.423828, 45.213004 ], [ 18.808594, 45.890008 ], [ 19.599609, 46.195042 ] ] ] } } , { "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 26.455078, 57.468589 ], [ 27.246094, 57.468589 ], [ 27.773438, 57.231503 ], [ 27.861328, 56.752723 ], [ 28.212891, 56.170023 ], [ 26.455078, 55.627996 ], [ 25.576172, 56.121060 ], [ 24.960938, 56.170023 ], [ 24.873047, 56.365250 ], [ 23.906250, 56.267761 ], [ 22.236328, 56.316537 ], [ 21.093750, 56.022948 ], [ 21.093750, 56.800878 ], [ 21.621094, 57.421294 ], [ 22.500000, 57.751076 ], [ 23.291016, 56.992883 ], [ 24.082031, 57.040730 ], [ 24.345703, 57.797944 ], [ 25.136719, 57.984808 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 59.623325 ], [ 26.982422, 59.445075 ], [ 27.949219, 59.489726 ], [ 28.125000, 59.310768 ], [ 27.421875, 58.722599 ], [ 27.685547, 57.797944 ], [ 27.246094, 57.468589 ], [ 26.455078, 57.468589 ], [ 25.136719, 57.984808 ], [ 24.345703, 57.797944 ], [ 24.433594, 58.401712 ], [ 24.082031, 58.263287 ], [ 23.466797, 58.631217 ], [ 23.378906, 59.175928 ], [ 24.609375, 59.445075 ], [ 25.839844, 59.623325 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.873047, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.576172, 56.121060 ], [ 26.455078, 55.627996 ], [ 26.630859, 55.178868 ], [ 25.751953, 54.826008 ], [ 25.576172, 54.265224 ], [ 24.433594, 53.904338 ], [ 23.466797, 53.904338 ], [ 23.203125, 54.213861 ], [ 22.763672, 54.316523 ], [ 22.675781, 54.572062 ], [ 22.763672, 54.876607 ], [ 22.324219, 55.028022 ], [ 21.269531, 55.178868 ], [ 21.093750, 56.022948 ], [ 22.236328, 56.316537 ], [ 23.906250, 56.267761 ], [ 24.873047, 56.365250 ] ] ] } } , { "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 56.170023 ], [ 29.267578, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.776573 ], [ 30.849609, 55.528631 ], [ 30.937500, 55.078367 ], [ 30.761719, 54.826008 ], [ 31.376953, 54.162434 ], [ 31.816406, 53.956086 ], [ 31.728516, 53.800651 ], [ 32.431641, 53.592505 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.120405 ], [ 31.464844, 53.173119 ], [ 31.289062, 53.067627 ], [ 31.816406, 52.106505 ], [ 30.937500, 52.052490 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.344339 ], [ 30.146484, 51.399206 ], [ 29.267578, 51.344339 ], [ 29.003906, 51.618017 ], [ 28.652344, 51.454007 ], [ 28.212891, 51.563412 ], [ 27.421875, 51.618017 ], [ 26.367188, 51.835778 ], [ 25.312500, 51.890054 ], [ 24.521484, 51.890054 ], [ 23.994141, 51.618017 ], [ 23.554688, 51.563412 ], [ 23.466797, 51.998410 ], [ 23.203125, 52.482780 ], [ 23.818359, 52.696361 ], [ 23.818359, 53.067627 ], [ 23.554688, 53.488046 ], [ 23.466797, 53.904338 ], [ 24.433594, 53.904338 ], [ 25.576172, 54.265224 ], [ 25.751953, 54.826008 ], [ 26.630859, 55.178868 ], [ 26.455078, 55.627996 ], [ 28.212891, 56.170023 ] ] ] } } @@ -166,18 +166,14 @@ , { "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 48.632909 ], [ 21.884766, 48.341646 ], [ 22.060547, 48.400032 ], [ 22.675781, 48.166085 ], [ 22.675781, 47.872144 ], [ 22.060547, 47.694974 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.599609, 46.195042 ], [ 18.457031, 45.767523 ], [ 17.666016, 45.951150 ], [ 16.523438, 46.498392 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.347656, 47.694974 ], [ 16.875000, 47.694974 ], [ 16.962891, 48.107431 ], [ 17.841797, 47.754098 ], [ 18.720703, 47.872144 ], [ 18.808594, 48.107431 ], [ 20.214844, 48.341646 ], [ 20.478516, 48.574790 ], [ 20.830078, 48.632909 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.894531, 48.107431 ], [ 28.125000, 46.800059 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.460131 ], [ 28.652344, 45.274886 ], [ 29.179688, 45.460131 ], [ 29.619141, 45.274886 ], [ 29.619141, 45.026950 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.246094, 44.150681 ], [ 26.103516, 43.961191 ], [ 25.576172, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.151053 ], [ 20.917969, 45.398450 ], [ 20.742188, 45.706179 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 23.115234, 48.107431 ], [ 24.433594, 47.989922 ], [ 24.873047, 47.754098 ], [ 25.224609, 47.872144 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.706179 ], [ 20.917969, 45.398450 ], [ 21.445312, 45.151053 ], [ 21.533203, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.500000, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.213710 ], [ 22.412109, 44.024422 ], [ 22.500000, 43.644026 ], [ 23.027344, 43.197167 ], [ 22.587891, 42.875964 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.197167 ], [ 20.478516, 42.875964 ], [ 20.214844, 42.811522 ], [ 20.302734, 42.875964 ], [ 19.599609, 43.197167 ], [ 19.248047, 43.516689 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.160156, 44.402392 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 19.423828, 45.213004 ], [ 18.808594, 45.890008 ], [ 19.599609, 46.195042 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 44.213710 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.576172, 43.707594 ], [ 26.103516, 43.961191 ], [ 27.246094, 44.150681 ], [ 27.949219, 43.834527 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.261206 ], [ 27.685547, 42.553080 ], [ 28.037109, 42.032974 ], [ 27.158203, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.310824 ], [ 25.224609, 41.244772 ], [ 24.521484, 41.574361 ], [ 23.730469, 41.310824 ], [ 22.939453, 41.310824 ], [ 22.851562, 41.967659 ], [ 22.412109, 42.293564 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.875964 ], [ 23.027344, 43.197167 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.024422 ], [ 22.675781, 44.213710 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.730469, 35.675147 ], [ 24.257812, 35.389050 ], [ 25.751953, 35.389050 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.317366 ], [ 26.191406, 35.029996 ], [ 24.697266, 34.885931 ], [ 24.697266, 35.101934 ], [ 23.554688, 35.245619 ], [ 23.730469, 35.675147 ] ] ], [ [ [ 26.103516, 41.836828 ], [ 26.630859, 41.574361 ], [ 26.279297, 40.913513 ], [ 26.015625, 40.847060 ], [ 24.960938, 40.979898 ], [ 23.730469, 40.713956 ], [ 24.433594, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.378906, 39.977120 ], [ 22.851562, 40.446947 ], [ 22.587891, 40.245992 ], [ 22.851562, 39.639538 ], [ 23.378906, 39.164141 ], [ 22.939453, 38.959409 ], [ 23.994141, 38.203655 ], [ 24.082031, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.300275 ], [ 23.115234, 36.456636 ], [ 22.500000, 36.385913 ], [ 21.708984, 36.879621 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.654297, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.708984, 40.913513 ], [ 22.060547, 41.178654 ], [ 22.587891, 41.112469 ], [ 22.939453, 41.310824 ], [ 23.730469, 41.310824 ], [ 24.521484, 41.574361 ], [ 25.224609, 41.244772 ], [ 26.103516, 41.310824 ], [ 26.103516, 41.836828 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 42.293564 ], [ 22.851562, 41.967659 ], [ 22.939453, 41.310824 ], [ 22.587891, 41.112469 ], [ 22.060547, 41.178654 ], [ 21.708984, 40.913513 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.478516, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.357422, 42.228517 ], [ 22.412109, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 44.213710 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.576172, 43.707594 ], [ 26.103516, 43.961191 ], [ 27.246094, 44.150681 ], [ 27.949219, 43.834527 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.261206 ], [ 27.685547, 42.553080 ], [ 28.037109, 42.032974 ], [ 27.158203, 42.163403 ], [ 26.103516, 41.836828 ], [ 26.103516, 41.310824 ], [ 25.224609, 41.244772 ], [ 24.521484, 41.574361 ], [ 23.730469, 41.310824 ], [ 22.939453, 41.310824 ], [ 22.851562, 41.967659 ], [ 22.412109, 42.293564 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.875964 ], [ 23.027344, 43.197167 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.024422 ], [ 22.675781, 44.213710 ] ] ] } } , { "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.509766, 48.458352 ], [ 28.300781, 48.166085 ], [ 28.652344, 48.107431 ], [ 29.091797, 47.872144 ], [ 29.091797, 47.517201 ], [ 29.443359, 47.338823 ], [ 29.531250, 46.920255 ], [ 29.882812, 46.679594 ], [ 29.794922, 46.498392 ], [ 30.058594, 46.437857 ], [ 29.179688, 46.377254 ], [ 29.091797, 46.498392 ], [ 28.828125, 46.437857 ], [ 28.916016, 46.255847 ], [ 28.476562, 45.583290 ], [ 28.212891, 45.460131 ], [ 28.037109, 45.951150 ], [ 28.125000, 46.800059 ], [ 26.894531, 48.107431 ], [ 26.630859, 48.224673 ], [ 26.894531, 48.341646 ], [ 27.509766, 48.458352 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 26.894531, 48.107431 ], [ 28.125000, 46.800059 ], [ 28.037109, 45.951150 ], [ 28.212891, 45.460131 ], [ 28.652344, 45.274886 ], [ 29.179688, 45.460131 ], [ 29.619141, 45.274886 ], [ 29.619141, 45.026950 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.949219, 43.834527 ], [ 27.246094, 44.150681 ], [ 26.103516, 43.961191 ], [ 25.576172, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.151053 ], [ 20.917969, 45.398450 ], [ 20.742188, 45.706179 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 22.060547, 47.694974 ], [ 23.115234, 48.107431 ], [ 24.433594, 47.989922 ], [ 24.873047, 47.754098 ], [ 25.224609, 47.872144 ], [ 25.927734, 47.989922 ], [ 26.191406, 48.224673 ], [ 26.630859, 48.224673 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.580391 ], [ 42.363281, 43.197167 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.560547, 42.682435 ], [ 45.439453, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.836828 ], [ 46.142578, 41.705729 ], [ 46.669922, 41.178654 ], [ 46.494141, 41.046217 ], [ 45.966797, 41.112469 ], [ 45.175781, 41.442726 ], [ 45.000000, 41.244772 ], [ 43.593750, 41.112469 ], [ 42.626953, 41.574361 ], [ 41.572266, 41.508577 ], [ 41.660156, 41.967659 ], [ 41.484375, 42.617791 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.990234, 43.452919 ], [ 40.078125, 43.580391 ] ] ] } } , { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 10.986328, 37.090240 ], [ 11.074219, 36.879621 ], [ 10.634766, 36.385913 ], [ 10.634766, 35.960223 ], [ 10.898438, 35.675147 ], [ 10.810547, 34.813803 ], [ 10.107422, 34.307144 ], [ 10.371094, 33.797409 ], [ 10.898438, 33.797409 ], [ 11.074219, 33.284620 ], [ 11.513672, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.353637 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.472695 ], [ 8.437500, 32.768800 ], [ 7.646484, 33.358062 ], [ 7.558594, 34.089061 ], [ 8.173828, 34.669359 ], [ 8.349609, 35.460670 ], [ 8.261719, 36.456636 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } @@ -186,25 +182,25 @@ , { "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.556641, 38.203655 ], [ 15.117188, 37.439974 ], [ 15.292969, 37.160317 ], [ 15.117188, 36.597889 ], [ 14.326172, 37.020098 ], [ 12.392578, 37.579413 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 15.556641, 38.203655 ] ] ], [ [ [ 12.128906, 47.100045 ], [ 12.392578, 46.739861 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.974609, 45.583290 ], [ 13.183594, 45.706179 ], [ 12.304688, 45.398450 ], [ 12.392578, 44.902578 ], [ 12.304688, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.062500, 42.747012 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.771312 ], [ 15.908203, 41.508577 ], [ 17.490234, 40.847060 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.753906, 40.245992 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.774769 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.611328, 38.822591 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.908203, 38.754083 ], [ 16.083984, 38.959409 ], [ 15.380859, 40.044438 ], [ 15.029297, 40.178873 ], [ 14.677734, 40.580585 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.919922, 41.244772 ], [ 11.162109, 42.358544 ], [ 10.546875, 42.940339 ], [ 10.195312, 43.897892 ], [ 8.876953, 44.339565 ], [ 8.437500, 44.213710 ], [ 7.822266, 43.771094 ], [ 7.470703, 43.707594 ], [ 7.558594, 44.150681 ], [ 7.031250, 44.276671 ], [ 6.767578, 45.026950 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.706179 ], [ 6.855469, 46.012224 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.349609, 46.134170 ], [ 8.525391, 46.012224 ], [ 8.964844, 46.012224 ], [ 9.140625, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.920255 ], [ 11.074219, 46.739861 ], [ 11.162109, 46.920255 ], [ 12.128906, 47.100045 ] ] ], [ [ [ 9.228516, 41.178654 ], [ 9.843750, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.349609, 40.380028 ], [ 8.173828, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.178654 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.513672, 33.137551 ], [ 12.656250, 32.768800 ], [ 13.095703, 32.842674 ], [ 13.886719, 32.694866 ], [ 15.205078, 32.249974 ], [ 15.732422, 31.353637 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.297018 ], [ 19.599609, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.863281, 31.728167 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.939453, 32.620870 ], [ 23.203125, 32.175612 ], [ 24.960938, 31.877558 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.052934 ], [ 24.960938, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.228890 ], [ 24.960938, 19.973349 ], [ 23.818359, 19.973349 ], [ 23.818359, 19.559790 ], [ 15.820312, 23.402765 ], [ 14.150391, 22.512557 ], [ 13.623047, 23.079732 ], [ 12.041016, 23.483401 ], [ 11.601562, 24.126702 ], [ 10.810547, 24.527135 ], [ 10.283203, 24.367114 ], [ 9.931641, 24.926295 ], [ 9.931641, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.755859, 26.509905 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.921631 ], [ 9.492188, 30.297018 ], [ 9.931641, 30.524413 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.353637 ], [ 11.425781, 32.398516 ], [ 11.513672, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 42.293564 ], [ 22.851562, 41.967659 ], [ 22.939453, 41.310824 ], [ 22.587891, 41.112469 ], [ 22.060547, 41.178654 ], [ 21.708984, 40.913513 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.478516, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.357422, 42.228517 ], [ 22.412109, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 3.603516, 11.695273 ], [ 3.603516, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.603516, 10.314919 ], [ 3.691406, 10.055403 ], [ 2.900391, 9.102097 ], [ 2.724609, 8.494105 ], [ 2.724609, 6.227934 ], [ 1.845703, 6.140555 ], [ 1.582031, 6.839170 ], [ 1.669922, 9.102097 ], [ 1.494141, 9.362353 ], [ 1.406250, 9.795678 ], [ 0.791016, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.406250, 11.523088 ], [ 1.933594, 11.609193 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.513672, 33.137551 ], [ 12.656250, 32.768800 ], [ 13.095703, 32.842674 ], [ 13.886719, 32.694866 ], [ 15.205078, 32.249974 ], [ 15.732422, 31.353637 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.297018 ], [ 19.599609, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.863281, 31.728167 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.939453, 32.620870 ], [ 23.203125, 32.175612 ], [ 24.960938, 31.877558 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.052934 ], [ 24.960938, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.228890 ], [ 24.960938, 19.973349 ], [ 23.818359, 19.973349 ], [ 23.818359, 19.559790 ], [ 15.820312, 23.402765 ], [ 14.150391, 22.512557 ], [ 13.623047, 23.079732 ], [ 12.041016, 23.483401 ], [ 11.601562, 24.126702 ], [ 10.810547, 24.527135 ], [ 10.283203, 24.367114 ], [ 9.931641, 24.926295 ], [ 9.931641, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.755859, 26.509905 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.921631 ], [ 9.492188, 30.297018 ], [ 9.931641, 30.524413 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.353637 ], [ 11.425781, 32.398516 ], [ 11.513672, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.041016, 23.483401 ], [ 13.623047, 23.079732 ], [ 14.150391, 22.512557 ], [ 14.853516, 22.836946 ], [ 15.117188, 21.289374 ], [ 15.468750, 21.043491 ], [ 15.468750, 20.715015 ], [ 15.908203, 20.385825 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.895114 ], [ 15.205078, 16.636192 ], [ 13.974609, 15.707663 ], [ 13.535156, 14.349548 ], [ 13.974609, 14.008696 ], [ 13.974609, 13.325485 ], [ 14.589844, 13.325485 ], [ 14.501953, 12.897489 ], [ 14.238281, 12.811801 ], [ 14.150391, 12.468760 ], [ 13.974609, 12.468760 ], [ 13.359375, 13.581921 ], [ 13.095703, 13.581921 ], [ 12.304688, 13.068777 ], [ 10.986328, 13.410994 ], [ 10.722656, 13.239945 ], [ 10.107422, 13.239945 ], [ 9.492188, 12.811801 ], [ 9.052734, 12.811801 ], [ 7.822266, 13.325485 ], [ 7.294922, 13.068777 ], [ 6.855469, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.449219, 13.838080 ], [ 4.394531, 13.752725 ], [ 4.130859, 13.496473 ], [ 3.955078, 12.983148 ], [ 3.691406, 12.554564 ], [ 3.603516, 11.695273 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.197266, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.054688, 12.811801 ], [ 0.966797, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.263672, 14.434680 ], [ 0.351562, 14.944785 ], [ 1.054688, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.603516, 15.538376 ], [ 3.691406, 16.214675 ], [ 4.306641, 16.888660 ], [ 4.306641, 19.145168 ], [ 5.712891, 19.642588 ], [ 8.613281, 21.534847 ], [ 12.041016, 23.483401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.795678 ], [ 1.494141, 9.362353 ], [ 1.669922, 9.102097 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.527344, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 3.603516, 11.695273 ], [ 3.603516, 11.350797 ], [ 3.779297, 10.746969 ], [ 3.603516, 10.314919 ], [ 3.691406, 10.055403 ], [ 2.900391, 9.102097 ], [ 2.724609, 8.494105 ], [ 2.724609, 6.227934 ], [ 1.845703, 6.140555 ], [ 1.582031, 6.839170 ], [ 1.669922, 9.102097 ], [ 1.494141, 9.362353 ], [ 1.406250, 9.795678 ], [ 0.791016, 10.487812 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.406250, 11.523088 ], [ 1.933594, 11.609193 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.838080 ], [ 6.416016, 13.496473 ], [ 6.855469, 13.154376 ], [ 7.294922, 13.068777 ], [ 7.822266, 13.325485 ], [ 9.052734, 12.811801 ], [ 9.492188, 12.811801 ], [ 10.107422, 13.239945 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.410994 ], [ 12.304688, 13.068777 ], [ 13.095703, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.468760 ], [ 14.589844, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.777344, 7.013668 ], [ 11.074219, 6.664608 ], [ 10.458984, 7.013668 ], [ 10.107422, 7.013668 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.402648 ], [ 8.525391, 4.740675 ], [ 7.470703, 4.390229 ], [ 7.119141, 4.477856 ], [ 6.679688, 4.214943 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.227934 ], [ 2.724609, 6.227934 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.102097 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.603516, 11.350797 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.130859, 13.496473 ], [ 4.394531, 13.752725 ], [ 5.449219, 13.838080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.791016, 10.487812 ], [ 1.406250, 9.795678 ], [ 1.494141, 9.362353 ], [ 1.669922, 9.102097 ], [ 1.582031, 6.839170 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.527344, 6.926427 ], [ 0.527344, 7.449624 ], [ 0.703125, 8.320212 ], [ 0.439453, 8.667918 ], [ 0.351562, 10.228437 ], [ -0.087891, 10.746969 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.492188, 0.966751 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.527344, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.838080 ], [ 6.416016, 13.496473 ], [ 6.855469, 13.154376 ], [ 7.294922, 13.068777 ], [ 7.822266, 13.325485 ], [ 9.052734, 12.811801 ], [ 9.492188, 12.811801 ], [ 10.107422, 13.239945 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.410994 ], [ 12.304688, 13.068777 ], [ 13.095703, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.468760 ], [ 14.589844, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 11.777344, 7.013668 ], [ 11.074219, 6.664608 ], [ 10.458984, 7.013668 ], [ 10.107422, 7.013668 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.402648 ], [ 8.525391, 4.740675 ], [ 7.470703, 4.390229 ], [ 7.119141, 4.477856 ], [ 6.679688, 4.214943 ], [ 5.888672, 4.302591 ], [ 5.361328, 4.915833 ], [ 5.009766, 5.615986 ], [ 4.306641, 6.227934 ], [ 2.724609, 6.227934 ], [ 2.724609, 8.494105 ], [ 2.900391, 9.102097 ], [ 3.691406, 10.055403 ], [ 3.603516, 10.314919 ], [ 3.779297, 10.746969 ], [ 3.603516, 11.350797 ], [ 3.691406, 12.554564 ], [ 3.955078, 12.983148 ], [ 4.130859, 13.496473 ], [ 4.394531, 13.752725 ], [ 5.449219, 13.838080 ] ] ] } } , { "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.897489 ], [ 14.853516, 12.211180 ], [ 14.941406, 10.919618 ], [ 15.468750, 9.968851 ], [ 14.589844, 9.882275 ], [ 14.150391, 10.055403 ], [ 13.974609, 9.535749 ], [ 14.501953, 8.928487 ], [ 14.941406, 8.754795 ], [ 15.468750, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.501953, 6.227934 ], [ 14.501953, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.380859, 3.337954 ], [ 15.820312, 2.986927 ], [ 15.996094, 2.284551 ], [ 15.908203, 1.757537 ], [ 14.326172, 2.196727 ], [ 9.667969, 2.284551 ], [ 9.755859, 3.074695 ], [ 9.404297, 3.776559 ], [ 8.964844, 3.864255 ], [ 8.701172, 4.390229 ], [ 8.525391, 4.477856 ], [ 8.789062, 5.441022 ], [ 9.228516, 6.402648 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.013668 ], [ 10.458984, 7.013668 ], [ 11.074219, 6.664608 ], [ 11.777344, 7.013668 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.589844, 12.125264 ], [ 14.150391, 12.468760 ], [ 14.238281, 12.811801 ], [ 14.501953, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.554688, 10.055403 ], [ 23.378906, 9.275622 ], [ 23.466797, 8.928487 ], [ 25.136719, 7.798079 ], [ 25.136719, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.246094, 5.528511 ], [ 27.333984, 5.266008 ], [ 27.070312, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.312500, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.785156, 4.915833 ], [ 24.433594, 5.090944 ], [ 23.291016, 4.653080 ], [ 22.851562, 4.740675 ], [ 22.412109, 4.039618 ], [ 20.917969, 4.302591 ], [ 19.511719, 5.003394 ], [ 18.896484, 4.740675 ], [ 18.544922, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.138672, 3.688855 ], [ 16.523438, 3.162456 ], [ 15.996094, 2.284551 ], [ 15.820312, 2.986927 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.501953, 4.740675 ], [ 14.589844, 5.003394 ], [ 14.501953, 5.441022 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.292969, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.885147 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 21.005859, 9.449062 ], [ 21.708984, 10.574222 ], [ 22.236328, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.492188, 0.966751 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.062500, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.326172, -2.021065 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.460181 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.547988 ], [ 11.513672, -2.723583 ], [ 11.865234, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.142502 ], [ 8.789062, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.492188, 0.966751 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.777344, 2.284551 ], [ 12.392578, 2.196727 ], [ 12.919922, 2.284551 ], [ 13.095703, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.554688, 10.055403 ], [ 23.378906, 9.275622 ], [ 23.466797, 8.928487 ], [ 25.136719, 7.798079 ], [ 25.136719, 7.536764 ], [ 26.191406, 6.577303 ], [ 26.455078, 5.965754 ], [ 27.246094, 5.528511 ], [ 27.333984, 5.266008 ], [ 27.070312, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.312500, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.785156, 4.915833 ], [ 24.433594, 5.090944 ], [ 23.291016, 4.653080 ], [ 22.851562, 4.740675 ], [ 22.412109, 4.039618 ], [ 20.917969, 4.302591 ], [ 19.511719, 5.003394 ], [ 18.896484, 4.740675 ], [ 18.544922, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.138672, 3.688855 ], [ 16.523438, 3.162456 ], [ 15.996094, 2.284551 ], [ 15.820312, 2.986927 ], [ 15.380859, 3.337954 ], [ 15.029297, 3.864255 ], [ 14.941406, 4.214943 ], [ 14.501953, 4.740675 ], [ 14.589844, 5.003394 ], [ 14.501953, 5.441022 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.292969, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.885147 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 20.039062, 9.015302 ], [ 21.005859, 9.449062 ], [ 21.708984, 10.574222 ], [ 22.236328, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } , { "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 3.688855 ], [ 18.457031, 3.513421 ], [ 18.369141, 2.899153 ], [ 17.929688, 1.757537 ], [ 17.841797, 0.263671 ], [ 17.666016, -0.439449 ], [ 17.490234, -0.703107 ], [ 16.435547, -1.757537 ], [ 15.996094, -2.723583 ], [ 15.996094, -3.513421 ], [ 14.589844, -5.003394 ], [ 14.238281, -4.828260 ], [ 14.150391, -4.477856 ], [ 13.623047, -4.477856 ], [ 13.271484, -4.915833 ], [ 12.656250, -4.477856 ], [ 11.953125, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.865234, -3.425692 ], [ 11.513672, -2.723583 ], [ 11.777344, -2.547988 ], [ 12.480469, -2.372369 ], [ 12.568359, -1.933227 ], [ 13.095703, -2.460181 ], [ 13.974609, -2.460181 ], [ 14.326172, -2.021065 ], [ 14.414062, -1.318243 ], [ 14.326172, -0.527336 ], [ 13.886719, 0.000000 ], [ 14.238281, 1.230374 ], [ 14.062500, 1.406109 ], [ 13.271484, 1.318243 ], [ 13.007812, 1.845384 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.196727 ], [ 15.908203, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.162456 ], [ 17.138672, 3.688855 ] ] ] } } , @@ -214,22 +210,28 @@ , { "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.486328, 35.029996 ], [ 33.837891, 35.101934 ], [ 34.013672, 34.957995 ], [ 32.958984, 34.597042 ], [ 32.519531, 34.669359 ], [ 32.255859, 35.101934 ], [ 33.398438, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.230328 ], [ 41.835938, 36.597889 ], [ 41.308594, 36.385913 ], [ 41.396484, 35.603719 ], [ 41.044922, 34.452218 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.694866 ], [ 36.035156, 33.797409 ], [ 36.650391, 34.234512 ], [ 36.474609, 34.597042 ], [ 36.035156, 34.669359 ], [ 35.947266, 35.389050 ], [ 36.123047, 35.817813 ], [ 36.650391, 36.244273 ], [ 36.738281, 36.809285 ], [ 37.089844, 36.597889 ], [ 38.144531, 36.879621 ], [ 38.671875, 36.738884 ], [ 39.550781, 36.738884 ], [ 40.693359, 37.090240 ], [ 42.363281, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.578535 ], [ 28.916016, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.728516, 31.428663 ], [ 31.992188, 30.902225 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.075375 ], [ 34.189453, 27.839076 ], [ 33.925781, 27.683528 ], [ 33.134766, 28.381735 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.695312, 28.690588 ], [ 34.101562, 26.115986 ], [ 34.804688, 25.005973 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.725012 ], [ 35.507812, 23.079732 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.228890 ], [ 24.697266, 30.069094 ], [ 24.960938, 30.675715 ], [ 24.785156, 31.052934 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.578535 ] ] ] } } , { "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.035156, 34.669359 ], [ 36.474609, 34.597042 ], [ 36.650391, 34.234512 ], [ 36.035156, 33.797409 ], [ 35.859375, 33.284620 ], [ 35.595703, 33.284620 ], [ 35.419922, 33.063924 ], [ 35.156250, 33.063924 ], [ 35.507812, 33.870416 ], [ 36.035156, 34.669359 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.527344, 40.780541 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.615234, 39.909736 ], [ 46.494141, 39.436193 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.707187 ], [ 44.824219, 39.707187 ], [ 44.384766, 39.977120 ], [ 43.681641, 40.245992 ], [ 43.769531, 40.713956 ], [ 43.593750, 41.112469 ], [ 45.000000, 41.244772 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 33.284620 ], [ 35.859375, 32.842674 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.980469, 31.877558 ], [ 35.244141, 31.728167 ], [ 34.980469, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.419922, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.063924 ], [ 35.419922, 33.063924 ], [ 35.595703, 33.284620 ], [ 35.859375, 33.284620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.230328 ], [ 41.835938, 36.597889 ], [ 41.308594, 36.385913 ], [ 41.396484, 35.603719 ], [ 41.044922, 34.452218 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.694866 ], [ 36.035156, 33.797409 ], [ 36.650391, 34.234512 ], [ 36.474609, 34.597042 ], [ 36.035156, 34.669359 ], [ 35.947266, 35.389050 ], [ 36.123047, 35.817813 ], [ 36.650391, 36.244273 ], [ 36.738281, 36.809285 ], [ 37.089844, 36.597889 ], [ 38.144531, 36.879621 ], [ 38.671875, 36.738884 ], [ 39.550781, 36.738884 ], [ 40.693359, 37.090240 ], [ 42.363281, 37.230328 ] ] ] } } , { "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.507812, 31.802893 ], [ 35.419922, 31.503629 ], [ 34.892578, 31.353637 ], [ 34.980469, 31.653381 ], [ 35.244141, 31.728167 ], [ 34.980469, 31.877558 ], [ 35.156250, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.455078, 31.578535 ], [ 28.916016, 30.902225 ], [ 30.058594, 31.503629 ], [ 30.937500, 31.578535 ], [ 31.728516, 31.428663 ], [ 31.992188, 30.902225 ], [ 32.167969, 31.278551 ], [ 32.958984, 31.052934 ], [ 33.750000, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.892578, 29.535230 ], [ 34.628906, 29.075375 ], [ 34.189453, 27.839076 ], [ 33.925781, 27.683528 ], [ 33.134766, 28.381735 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.695312, 28.690588 ], [ 34.101562, 26.115986 ], [ 34.804688, 25.005973 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.725012 ], [ 35.507812, 23.079732 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.228890 ], [ 24.697266, 30.069094 ], [ 24.960938, 30.675715 ], [ 24.785156, 31.052934 ], [ 25.136719, 31.578535 ], [ 26.455078, 31.578535 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.527344, 40.780541 ], [ 45.351562, 40.580585 ], [ 45.878906, 40.245992 ], [ 45.615234, 39.909736 ], [ 46.494141, 39.436193 ], [ 46.494141, 38.754083 ], [ 46.142578, 38.754083 ], [ 45.703125, 39.504041 ], [ 45.263672, 39.504041 ], [ 45.000000, 39.707187 ], [ 44.824219, 39.707187 ], [ 44.384766, 39.977120 ], [ 43.681641, 40.245992 ], [ 43.769531, 40.713956 ], [ 43.593750, 41.112469 ], [ 45.000000, 41.244772 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.802734, 37.370157 ], [ 43.945312, 37.230328 ], [ 44.296875, 37.020098 ], [ 44.736328, 37.160317 ], [ 45.439453, 35.960223 ], [ 46.054688, 35.675147 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.741612 ], [ 45.439453, 33.943360 ], [ 46.142578, 32.990236 ], [ 47.373047, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.724609, 30.977609 ], [ 47.988281, 30.977609 ], [ 47.988281, 30.448674 ], [ 48.603516, 29.916852 ], [ 47.285156, 30.069094 ], [ 46.582031, 29.075375 ], [ 44.736328, 29.152161 ], [ 41.923828, 31.203405 ], [ 40.429688, 31.877558 ], [ 39.199219, 32.175612 ], [ 38.759766, 33.358062 ], [ 41.044922, 34.452218 ], [ 41.396484, 35.603719 ], [ 41.308594, 36.385913 ], [ 41.835938, 36.597889 ], [ 42.363281, 37.230328 ], [ 42.802734, 37.370157 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 33.284620 ], [ 35.859375, 32.842674 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.546813 ], [ 34.980469, 31.877558 ], [ 35.244141, 31.728167 ], [ 34.980469, 31.653381 ], [ 34.892578, 31.353637 ], [ 35.419922, 31.503629 ], [ 35.419922, 31.128199 ], [ 34.892578, 29.535230 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.578535 ], [ 35.068359, 33.063924 ], [ 35.419922, 33.063924 ], [ 35.595703, 33.284620 ], [ 35.859375, 33.284620 ] ] ] } } , { "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.759766, 33.358062 ], [ 39.199219, 32.175612 ], [ 39.023438, 32.026706 ], [ 37.001953, 31.503629 ], [ 37.968750, 30.524413 ], [ 37.705078, 30.372875 ], [ 37.529297, 29.993002 ], [ 36.738281, 29.840644 ], [ 36.474609, 29.535230 ], [ 36.035156, 29.228890 ], [ 34.980469, 29.382175 ], [ 35.419922, 31.128199 ], [ 35.507812, 32.398516 ], [ 35.683594, 32.694866 ], [ 36.826172, 32.324276 ], [ 38.759766, 33.358062 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.177734, 21.043491 ], [ 37.001953, 20.797201 ], [ 37.089844, 19.808054 ], [ 37.441406, 18.646245 ], [ 38.408203, 17.978733 ], [ 37.880859, 17.392579 ], [ 37.177734, 17.224758 ], [ 36.826172, 16.972741 ], [ 36.298828, 14.859850 ], [ 36.386719, 14.434680 ], [ 36.298828, 13.581921 ], [ 35.859375, 12.554564 ], [ 35.244141, 12.125264 ], [ 34.716797, 10.919618 ], [ 34.277344, 10.660608 ], [ 33.925781, 9.449062 ], [ 33.837891, 9.449062 ], [ 33.750000, 10.314919 ], [ 33.222656, 10.746969 ], [ 33.046875, 11.436955 ], [ 33.222656, 12.211180 ], [ 32.783203, 12.211180 ], [ 32.695312, 12.039321 ], [ 32.080078, 11.953349 ], [ 32.343750, 11.695273 ], [ 32.431641, 11.092166 ], [ 31.376953, 9.795678 ], [ 30.849609, 9.709057 ], [ 29.970703, 10.314919 ], [ 29.619141, 10.055403 ], [ 29.531250, 9.795678 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.362353 ], [ 27.949219, 9.362353 ], [ 27.861328, 9.622414 ], [ 27.070312, 9.622414 ], [ 26.718750, 9.449062 ], [ 26.455078, 9.535749 ], [ 25.751953, 10.401378 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.906250, 8.581021 ], [ 23.466797, 8.928487 ], [ 23.378906, 9.275622 ], [ 23.554688, 10.055403 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.350797 ], [ 22.500000, 11.695273 ], [ 22.500000, 12.297068 ], [ 22.324219, 12.640338 ], [ 21.972656, 12.554564 ], [ 22.324219, 13.410994 ], [ 22.148438, 13.752725 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.349548 ], [ 23.027344, 15.707663 ], [ 23.906250, 15.623037 ], [ 23.818359, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.046875, 11.436955 ], [ 33.222656, 10.746969 ], [ 33.750000, 10.314919 ], [ 33.837891, 9.449062 ], [ 33.925781, 9.449062 ], [ 34.013672, 8.667918 ], [ 33.837891, 8.407168 ], [ 33.310547, 8.320212 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.101562, 7.188101 ], [ 34.277344, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.332031, 5.528511 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.904297, 3.601142 ], [ 31.289062, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.214943 ], [ 29.707031, 4.565474 ], [ 29.179688, 4.390229 ], [ 28.740234, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.390229 ], [ 27.246094, 5.528511 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.136719, 7.536764 ], [ 25.136719, 7.798079 ], [ 23.906250, 8.581021 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.401378 ], [ 26.455078, 9.535749 ], [ 26.718750, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.861328, 9.622414 ], [ 27.949219, 9.362353 ], [ 29.003906, 9.362353 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.055403 ], [ 29.970703, 10.314919 ], [ 30.849609, 9.709057 ], [ 31.376953, 9.795678 ], [ 32.431641, 11.092166 ], [ 32.343750, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.783203, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.944785 ], [ 38.496094, 14.519780 ], [ 39.111328, 14.774883 ], [ 39.375000, 14.519780 ], [ 39.990234, 14.519780 ], [ 40.869141, 14.093957 ], [ 41.572266, 13.410994 ], [ 42.363281, 12.554564 ], [ 41.660156, 11.609193 ], [ 41.748047, 11.092166 ], [ 42.539062, 11.092166 ], [ 42.802734, 10.919618 ], [ 42.539062, 10.574222 ], [ 43.681641, 9.188870 ], [ 46.933594, 7.972198 ], [ 47.812500, 7.972198 ], [ 45.000000, 5.003394 ], [ 43.681641, 4.915833 ], [ 42.802734, 4.214943 ], [ 42.099609, 4.214943 ], [ 41.835938, 3.951941 ], [ 41.132812, 3.951941 ], [ 40.781250, 4.214943 ], [ 39.814453, 3.864255 ], [ 39.550781, 3.425692 ], [ 38.144531, 3.601142 ], [ 36.826172, 4.477856 ], [ 36.123047, 4.477856 ], [ 35.859375, 4.740675 ], [ 35.859375, 5.353521 ], [ 35.332031, 5.528511 ], [ 34.716797, 6.577303 ], [ 34.277344, 6.839170 ], [ 34.101562, 7.188101 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.798079 ], [ 33.310547, 8.320212 ], [ 33.837891, 8.407168 ], [ 34.013672, 8.667918 ], [ 33.925781, 9.622414 ], [ 34.277344, 10.660608 ], [ 34.716797, 10.919618 ], [ 35.244141, 12.125264 ], [ 35.859375, 12.554564 ], [ 36.298828, 13.581921 ], [ 36.386719, 14.434680 ], [ 37.617188, 14.179186 ], [ 37.880859, 14.944785 ] ] ] } } , { "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 53.085938, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.623037 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 47.900391, 14.008696 ], [ 47.373047, 13.581921 ], [ 45.615234, 13.325485 ], [ 45.000000, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.208984, 12.554564 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 42.890625, 14.774883 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.284185 ], [ 42.714844, 15.707663 ], [ 42.802734, 15.876809 ], [ 42.802734, 16.383391 ], [ 43.242188, 16.636192 ], [ 43.154297, 17.056785 ], [ 43.417969, 17.560247 ], [ 43.769531, 17.308688 ], [ 45.175781, 17.392579 ], [ 46.406250, 17.224758 ], [ 46.757812, 17.308688 ], [ 47.021484, 16.972741 ], [ 47.460938, 17.140790 ], [ 48.164062, 18.145852 ], [ 49.130859, 18.646245 ], [ 52.031250, 18.979026 ] ] ] } } @@ -238,46 +240,42 @@ , { "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 12.726084 ], [ 43.330078, 12.382928 ], [ 43.330078, 11.953349 ], [ 42.714844, 11.695273 ], [ 43.154297, 11.436955 ], [ 42.802734, 10.919618 ], [ 42.539062, 11.092166 ], [ 41.748047, 11.092166 ], [ 41.660156, 11.609193 ], [ 42.363281, 12.554564 ], [ 42.802734, 12.468760 ], [ 43.066406, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.046875, 11.436955 ], [ 33.222656, 10.746969 ], [ 33.750000, 10.314919 ], [ 33.837891, 9.449062 ], [ 33.925781, 9.449062 ], [ 34.013672, 8.667918 ], [ 33.837891, 8.407168 ], [ 33.310547, 8.320212 ], [ 32.958984, 7.798079 ], [ 33.574219, 7.710992 ], [ 34.101562, 7.188101 ], [ 34.277344, 6.839170 ], [ 34.716797, 6.577303 ], [ 35.332031, 5.528511 ], [ 33.398438, 3.776559 ], [ 32.695312, 3.776559 ], [ 31.904297, 3.601142 ], [ 31.289062, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.214943 ], [ 29.707031, 4.565474 ], [ 29.179688, 4.390229 ], [ 28.740234, 4.477856 ], [ 28.388672, 4.302591 ], [ 27.949219, 4.390229 ], [ 27.246094, 5.528511 ], [ 26.455078, 5.965754 ], [ 26.191406, 6.577303 ], [ 25.136719, 7.536764 ], [ 25.136719, 7.798079 ], [ 23.906250, 8.581021 ], [ 24.521484, 8.928487 ], [ 25.048828, 10.314919 ], [ 25.751953, 10.401378 ], [ 26.455078, 9.535749 ], [ 26.718750, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.861328, 9.622414 ], [ 27.949219, 9.362353 ], [ 29.003906, 9.362353 ], [ 29.003906, 9.622414 ], [ 29.531250, 9.795678 ], [ 29.619141, 10.055403 ], [ 29.970703, 10.314919 ], [ 30.849609, 9.709057 ], [ 31.376953, 9.795678 ], [ 32.431641, 11.092166 ], [ 32.343750, 11.695273 ], [ 32.080078, 11.953349 ], [ 32.695312, 12.039321 ], [ 32.783203, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.974164 ], [ 182.460938, 68.204212 ], [ 185.097656, 67.204032 ], [ 185.009766, 66.583217 ], [ 185.625000, 66.337505 ], [ 185.449219, 67.067433 ], [ 187.031250, 66.964476 ], [ 187.031250, 64.244595 ], [ 186.064453, 64.282760 ], [ 185.361328, 64.623877 ], [ 184.042969, 64.923542 ], [ 183.779297, 65.366837 ], [ 182.812500, 65.512963 ], [ 181.669922, 65.403445 ], [ 181.054688, 65.730626 ], [ 181.318359, 66.124962 ], [ 180.087891, 65.874725 ], [ 180.527344, 65.403445 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.451172, 64.623877 ], [ 178.330078, 64.091408 ], [ 178.945312, 63.233627 ], [ 179.384766, 62.995158 ], [ 179.472656, 62.552857 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.925781, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.712097 ], [ 163.564453, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.037109, 56.170023 ], [ 162.158203, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.158203, 54.876607 ], [ 160.400391, 54.367759 ], [ 160.048828, 53.225768 ], [ 158.554688, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.445312, 51.727028 ], [ 155.390625, 55.379110 ], [ 155.917969, 56.752723 ], [ 156.796875, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.378906, 58.077876 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.326948 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.300781, 62.471724 ], [ 162.685547, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.345703, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.248047, 59.756395 ], [ 155.039062, 59.130863 ], [ 152.841797, 58.904646 ], [ 151.259766, 58.768200 ], [ 151.347656, 59.489726 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.207031, 59.040555 ], [ 135.087891, 54.724620 ], [ 136.669922, 54.622978 ], [ 137.197266, 53.956086 ], [ 138.164062, 53.748711 ], [ 138.779297, 54.265224 ], [ 139.921875, 54.213861 ], [ 141.328125, 53.067627 ], [ 141.416016, 52.214339 ], [ 140.625000, 51.234407 ], [ 140.537109, 50.064192 ], [ 140.097656, 48.458352 ], [ 138.515625, 46.980252 ], [ 138.251953, 46.316584 ], [ 134.912109, 43.389082 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.261206 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.875964 ], [ 131.132812, 42.940339 ], [ 131.308594, 44.087585 ], [ 131.044922, 44.964798 ], [ 131.923828, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.121094, 47.219568 ], [ 134.472656, 47.576526 ], [ 135.000000, 48.458352 ], [ 133.330078, 48.166085 ], [ 132.539062, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.605469, 48.748945 ], [ 129.375000, 49.439557 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.736455 ], [ 125.947266, 52.802761 ], [ 125.068359, 53.173119 ], [ 123.574219, 53.435719 ], [ 122.255859, 53.435719 ], [ 121.025391, 53.225768 ], [ 120.146484, 52.749594 ], [ 120.761719, 52.536273 ], [ 120.761719, 51.944265 ], [ 120.146484, 51.618017 ], [ 119.267578, 50.569283 ], [ 119.267578, 50.120578 ], [ 117.861328, 49.496675 ], [ 116.718750, 49.894634 ], [ 115.488281, 49.781264 ], [ 114.960938, 50.120578 ], [ 114.345703, 50.233152 ], [ 112.939453, 49.553726 ], [ 111.621094, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.423828, 49.267805 ], [ 108.457031, 49.267805 ], [ 107.841797, 49.781264 ], [ 106.875000, 50.289339 ], [ 105.908203, 50.401515 ], [ 103.710938, 50.064192 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.234407 ], [ 100.019531, 51.618017 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.261719, 50.401515 ], [ 97.294922, 49.724479 ], [ 95.800781, 49.951220 ], [ 94.833984, 50.007739 ], [ 94.130859, 50.457504 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.792047 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.517578, 49.667628 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.289339 ], [ 83.935547, 50.903033 ], [ 83.408203, 51.069017 ], [ 81.914062, 50.792047 ], [ 80.595703, 51.399206 ], [ 80.068359, 50.847573 ], [ 77.783203, 53.383328 ], [ 76.552734, 54.162434 ], [ 76.904297, 54.470038 ], [ 74.355469, 53.540307 ], [ 73.388672, 53.488046 ], [ 73.476562, 54.059388 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.110943 ], [ 70.839844, 55.178868 ], [ 69.082031, 55.379110 ], [ 68.203125, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.214844, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.644638 ], [ 61.699219, 52.961875 ], [ 60.732422, 52.696361 ], [ 60.908203, 52.429222 ], [ 59.941406, 51.944265 ], [ 61.611328, 51.289406 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.677734, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.722656, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.800781, 51.672555 ], [ 48.691406, 50.625073 ], [ 48.603516, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.494141, 48.400032 ], [ 47.285156, 47.694974 ], [ 48.076172, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.603516, 46.558860 ], [ 49.130859, 46.377254 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.590467 ], [ 47.548828, 43.644026 ], [ 47.460938, 43.004647 ], [ 48.603516, 41.836828 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.791016, 42.098222 ], [ 45.439453, 42.488302 ], [ 44.560547, 42.682435 ], [ 43.945312, 42.553080 ], [ 43.769531, 42.747012 ], [ 42.363281, 43.197167 ], [ 40.078125, 43.580391 ], [ 39.990234, 43.452919 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.650391, 45.274886 ], [ 37.441406, 45.398450 ], [ 38.232422, 46.255847 ], [ 37.705078, 46.619261 ], [ 39.111328, 47.040182 ], [ 39.111328, 47.279229 ], [ 38.232422, 47.100045 ], [ 38.232422, 47.517201 ], [ 38.759766, 47.813155 ], [ 39.726562, 47.872144 ], [ 39.902344, 48.224673 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.078125, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.894634 ], [ 37.353516, 50.401515 ], [ 36.650391, 50.233152 ], [ 35.332031, 50.569283 ], [ 35.419922, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.234407 ], [ 34.101562, 51.563412 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.321911 ], [ 32.695312, 52.214339 ], [ 32.431641, 52.268157 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.106505 ], [ 31.289062, 53.067627 ], [ 31.464844, 53.173119 ], [ 32.343750, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.431641, 53.592505 ], [ 31.728516, 53.800651 ], [ 31.816406, 53.956086 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.826008 ], [ 30.937500, 55.078367 ], [ 30.849609, 55.528631 ], [ 29.882812, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.267578, 55.924586 ], [ 28.212891, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.231503 ], [ 27.246094, 57.468589 ], [ 27.685547, 57.797944 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.020952 ], [ 28.037109, 60.500525 ], [ 31.113281, 62.349609 ], [ 31.552734, 62.875188 ], [ 30.058594, 63.548552 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.234375, 65.802776 ], [ 29.091797, 66.930060 ], [ 29.970703, 67.709445 ], [ 28.476562, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.443359, 69.162558 ], [ 31.113281, 69.565226 ], [ 32.167969, 69.900118 ], [ 33.750000, 69.287257 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.441229 ], [ 41.132812, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.408203, 65.982270 ], [ 33.925781, 66.757250 ], [ 33.222656, 66.618122 ], [ 34.804688, 65.910623 ], [ 34.980469, 64.396938 ], [ 37.001953, 63.860036 ], [ 37.177734, 64.320872 ], [ 36.562500, 64.774125 ], [ 37.177734, 65.146115 ], [ 39.550781, 64.510643 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.099609, 66.478208 ], [ 42.978516, 66.407955 ], [ 43.945312, 66.053716 ], [ 44.560547, 66.757250 ], [ 43.681641, 67.339861 ], [ 44.208984, 67.941650 ], [ 43.417969, 68.560384 ], [ 46.230469, 68.236823 ], [ 46.845703, 67.676085 ], [ 45.527344, 67.575717 ], [ 45.527344, 66.998844 ], [ 46.318359, 66.652977 ], [ 47.900391, 66.895596 ], [ 48.164062, 67.508568 ], [ 53.701172, 68.847665 ], [ 54.492188, 68.815927 ], [ 53.525391, 68.204212 ], [ 54.755859, 68.106102 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.269387 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.556641, 69.839622 ], [ 63.544922, 69.534518 ], [ 64.863281, 69.224997 ], [ 68.554688, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.203125, 69.131271 ], [ 68.115234, 69.349339 ], [ 66.972656, 69.442128 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.699951 ], [ 66.708984, 71.016960 ], [ 68.554688, 71.938158 ], [ 69.169922, 72.842021 ], [ 69.960938, 73.048236 ], [ 72.597656, 72.764065 ], [ 72.773438, 72.208678 ], [ 71.806641, 71.413177 ], [ 72.509766, 71.102543 ], [ 72.773438, 70.377854 ], [ 72.597656, 69.005675 ], [ 73.652344, 68.399180 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.160511 ], [ 72.861328, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.272043 ], [ 75.058594, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.970703, 68.974164 ], [ 73.828125, 69.068563 ], [ 73.564453, 69.626510 ], [ 74.443359, 70.641769 ], [ 73.125000, 71.441171 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.842021 ], [ 75.673828, 72.289067 ], [ 75.322266, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.937500, 71.883578 ], [ 77.607422, 72.262310 ], [ 79.628906, 72.315785 ], [ 81.474609, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.946791 ], [ 86.044922, 74.449358 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.251953, 76.037317 ], [ 95.888672, 76.142958 ], [ 96.679688, 75.909504 ], [ 98.964844, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.074219, 76.860810 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.692870 ], [ 106.083984, 77.370301 ], [ 104.677734, 77.118032 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.475773 ], [ 108.193359, 76.720223 ], [ 111.093750, 76.700019 ], [ 113.291016, 76.226907 ], [ 114.169922, 75.845169 ], [ 113.906250, 75.320025 ], [ 112.763672, 75.027664 ], [ 110.126953, 74.472903 ], [ 109.423828, 74.188052 ], [ 110.654297, 74.043723 ], [ 112.148438, 73.775780 ], [ 113.027344, 73.971078 ], [ 113.554688, 73.327858 ], [ 113.994141, 73.602996 ], [ 115.576172, 73.751205 ], [ 118.740234, 73.578167 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 125.419922, 73.553302 ], [ 127.001953, 73.553302 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.395706 ], [ 128.496094, 71.992578 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.828840 ], [ 133.857422, 71.385142 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.251953, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.842021 ], [ 149.501953, 72.208678 ], [ 150.380859, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.873047, 70.466207 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.091797, 69.657086 ], [ 165.937500, 69.472969 ], [ 167.871094, 69.595890 ], [ 169.541016, 68.688521 ], [ 170.859375, 69.005675 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.671875, 69.809309 ], [ 175.693359, 69.869892 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.539062, 68.204212 ], [ -174.902344, 67.204032 ], [ -174.990234, 66.583217 ], [ -174.375000, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.826172, 66.930060 ], [ -169.892578, 65.982270 ], [ -170.859375, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.529297, 64.472794 ], [ -172.968750, 64.244595 ], [ -173.935547, 64.282760 ], [ -174.638672, 64.623877 ], [ -175.957031, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.187500, 65.512963 ], [ -178.330078, 65.403445 ], [ -178.945312, 65.730626 ], [ -178.681641, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.403445 ], [ -180.000000, 64.997939 ], [ -181.318359, 64.548440 ], [ -182.548828, 64.623877 ], [ -181.669922, 64.091408 ], [ -181.054688, 63.233627 ], [ -180.615234, 62.995158 ], [ -180.527344, 62.552857 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -185.449219, 61.773123 ], [ -186.328125, 61.648162 ], [ -187.031250, 61.312452 ], [ -187.031250, 69.869892 ], [ -186.328125, 69.809309 ], [ -184.306641, 69.869892 ], [ -181.406250, 69.411242 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.537296 ], [ 68.203125, 76.226907 ], [ 61.611328, 75.253057 ], [ 58.447266, 74.307353 ], [ 55.458984, 72.369105 ], [ 55.634766, 71.552741 ], [ 57.568359, 70.728979 ], [ 56.953125, 70.641769 ], [ 53.701172, 70.757966 ], [ 53.437500, 71.216075 ], [ 51.591797, 71.469124 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.470703, 72.764065 ], [ 54.404297, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.634766, 75.073010 ], [ 57.832031, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.181641, 76.800739 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 95.976562, 81.255032 ], [ 97.910156, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.750659 ], [ 95.009766, 79.038437 ], [ 93.339844, 79.432371 ], [ 92.548828, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.976562, 81.255032 ] ] ], [ [ [ 138.867188, 76.142958 ], [ 141.503906, 76.100796 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.253057 ], [ 137.548828, 75.952235 ], [ 138.867188, 76.142958 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.261719, 51.781436 ], [ 143.613281, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.119141, 45.951150 ], [ 141.943359, 46.800059 ], [ 142.031250, 47.754098 ], [ 141.943359, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.207031, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.278353 ], [ 142.646484, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 102.128906, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.380859, 78.716316 ], [ 105.117188, 78.313860 ], [ 99.404297, 77.915669 ], [ 101.250000, 79.237185 ], [ 102.128906, 79.351472 ] ] ], [ [ [ 50.009766, 80.914558 ], [ 51.503906, 80.703997 ], [ 51.152344, 80.546518 ], [ 48.867188, 80.342262 ], [ 48.779297, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.109375, 80.560943 ], [ 44.824219, 80.589727 ], [ 46.757812, 80.774716 ], [ 48.339844, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.130859, 80.760615 ], [ 50.009766, 80.914558 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 150.732422, 75.073010 ], [ 149.589844, 74.683250 ], [ 148.007812, 74.775843 ], [ 146.162109, 75.163300 ], [ 146.337891, 75.497157 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -179.912109, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.539062, 71.272595 ], [ -177.626953, 71.130988 ], [ -178.681641, 70.902268 ], [ -180.000000, 70.844673 ], [ -181.054688, 70.786910 ], [ -181.318359, 71.102543 ], [ -180.000000, 71.524909 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.087891, 71.552741 ], [ 180.966797, 71.552741 ], [ 182.460938, 71.272595 ], [ 182.373047, 71.130988 ], [ 181.318359, 70.902268 ], [ 180.000000, 70.844673 ], [ 178.945312, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.849286 ], [ 143.525391, 73.478485 ], [ 143.613281, 73.201317 ], [ 142.119141, 73.201317 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.849286 ] ] ], [ [ [ 21.269531, 55.178868 ], [ 22.324219, 55.028022 ], [ 22.763672, 54.876607 ], [ 22.675781, 54.572062 ], [ 22.763672, 54.316523 ], [ 20.917969, 54.316523 ], [ 19.687500, 54.418930 ], [ 19.863281, 54.876607 ], [ 21.269531, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.839844, 55.178868 ], [ 71.191406, 54.110943 ], [ 72.246094, 54.367759 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.488046 ], [ 74.355469, 53.540307 ], [ 76.904297, 54.470038 ], [ 76.552734, 54.162434 ], [ 77.783203, 53.383328 ], [ 80.068359, 50.847573 ], [ 80.595703, 51.399206 ], [ 81.914062, 50.792047 ], [ 83.408203, 51.069017 ], [ 83.935547, 50.903033 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.667628 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.572266, 48.574790 ], [ 85.781250, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.166016, 46.980252 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.521744 ], [ 81.914062, 45.336702 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.101562, 42.875964 ], [ 76.025391, 43.004647 ], [ 75.673828, 42.875964 ], [ 74.179688, 43.325178 ], [ 73.652344, 43.068888 ], [ 73.476562, 42.488302 ], [ 71.806641, 42.875964 ], [ 71.191406, 42.682435 ], [ 70.927734, 42.293564 ], [ 70.400391, 42.098222 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.647304 ], [ 68.291016, 40.647304 ], [ 68.027344, 41.112469 ], [ 66.708984, 41.178654 ], [ 66.533203, 41.967659 ], [ 66.005859, 41.967659 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.707594 ], [ 62.050781, 43.516689 ], [ 61.083984, 44.402392 ], [ 58.535156, 45.583290 ], [ 55.898438, 44.964798 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.052734, 42.293564 ], [ 52.910156, 42.098222 ], [ 52.470703, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.734375, 42.423457 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.273438, 44.590467 ], [ 51.240234, 44.527843 ], [ 51.328125, 45.274886 ], [ 52.207031, 45.398450 ], [ 52.998047, 45.274886 ], [ 53.261719, 46.255847 ], [ 53.085938, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.152344, 47.040182 ], [ 50.009766, 46.619261 ], [ 49.130859, 46.377254 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.100045 ], [ 48.076172, 47.754098 ], [ 47.285156, 47.694974 ], [ 46.494141, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.757812, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.603516, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.800781, 51.672555 ], [ 52.294922, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.677734, 50.569283 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.289406 ], [ 59.941406, 51.944265 ], [ 60.908203, 52.429222 ], [ 60.732422, 52.696361 ], [ 61.699219, 52.961875 ], [ 60.996094, 53.644638 ], [ 61.435547, 54.007769 ], [ 65.214844, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.203125, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 61.083984, 44.402392 ], [ 62.050781, 43.516689 ], [ 64.863281, 43.707594 ], [ 66.093750, 43.004647 ], [ 66.005859, 41.967659 ], [ 66.533203, 41.967659 ], [ 66.708984, 41.178654 ], [ 68.027344, 41.112469 ], [ 68.291016, 40.647304 ], [ 68.642578, 40.647304 ], [ 69.082031, 41.376809 ], [ 70.400391, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.279297, 42.163403 ], [ 70.400391, 41.508577 ], [ 71.191406, 41.112469 ], [ 71.894531, 41.376809 ], [ 73.037109, 40.847060 ], [ 71.806641, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.488281, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.345703, 40.713956 ], [ 68.994141, 40.111689 ], [ 68.554688, 39.504041 ], [ 67.675781, 39.571822 ], [ 67.412109, 39.164141 ], [ 68.203125, 38.891033 ], [ 68.378906, 38.134557 ], [ 67.851562, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.533203, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.891033 ], [ 62.402344, 40.044438 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.468750, 41.244772 ], [ 60.117188, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.747012 ], [ 57.744141, 42.163403 ], [ 56.953125, 41.836828 ], [ 57.128906, 41.310824 ], [ 55.986328, 41.310824 ], [ 55.898438, 44.964798 ], [ 58.535156, 45.583290 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 75.673828, 42.875964 ], [ 76.025391, 43.004647 ], [ 79.101562, 42.875964 ], [ 79.628906, 42.488302 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.098222 ], [ 78.574219, 41.574361 ], [ 78.222656, 41.178654 ], [ 76.904297, 41.046217 ], [ 76.552734, 40.446947 ], [ 75.498047, 40.580585 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.639538 ], [ 73.652344, 39.436193 ], [ 71.806641, 39.300299 ], [ 70.576172, 39.571822 ], [ 69.433594, 39.504041 ], [ 69.521484, 40.111689 ], [ 70.664062, 39.909736 ], [ 71.015625, 40.245992 ], [ 71.806641, 40.178873 ], [ 73.037109, 40.847060 ], [ 71.894531, 41.376809 ], [ 71.191406, 41.112469 ], [ 70.400391, 41.508577 ], [ 71.279297, 42.163403 ], [ 70.927734, 42.293564 ], [ 71.191406, 42.682435 ], [ 71.806641, 42.875964 ], [ 73.476562, 42.488302 ], [ 73.652344, 43.068888 ], [ 74.179688, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.138470 ], [ 110.830078, 20.055931 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.228177 ], [ 110.302734, 18.646245 ], [ 109.511719, 18.229351 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.394068 ], [ 109.160156, 19.808054 ], [ 110.214844, 20.138470 ] ] ], [ [ [ 123.574219, 53.435719 ], [ 125.068359, 53.173119 ], [ 125.947266, 52.802761 ], [ 127.265625, 50.736455 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.439557 ], [ 130.605469, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.539062, 47.813155 ], [ 133.330078, 48.166085 ], [ 135.000000, 48.458352 ], [ 134.472656, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.923828, 45.336702 ], [ 131.044922, 44.964798 ], [ 131.308594, 44.087585 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.875964 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.638672, 42.423457 ], [ 128.056641, 41.967659 ], [ 128.232422, 41.442726 ], [ 127.353516, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.210938, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.277344, 39.909736 ], [ 122.871094, 39.639538 ], [ 122.167969, 39.164141 ], [ 121.025391, 38.891033 ], [ 121.552734, 39.368279 ], [ 121.376953, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.640625, 40.913513 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.232253 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.916016, 37.926868 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.849609, 37.857507 ], [ 121.728516, 37.509726 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.949892 ], [ 121.113281, 36.668419 ], [ 120.673828, 36.102376 ], [ 119.707031, 35.603719 ], [ 119.179688, 34.885931 ], [ 120.234375, 34.379713 ], [ 120.585938, 33.358062 ], [ 121.904297, 31.728167 ], [ 121.904297, 30.977609 ], [ 121.289062, 30.675715 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.619141, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.927734, 22.755921 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.187405 ], [ 113.818359, 22.512557 ], [ 113.203125, 22.024546 ], [ 111.884766, 21.534847 ], [ 110.742188, 21.371244 ], [ 110.478516, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.371244 ], [ 108.544922, 21.698265 ], [ 108.017578, 21.534847 ], [ 107.050781, 21.779905 ], [ 106.523438, 22.187405 ], [ 106.699219, 22.755921 ], [ 105.820312, 22.998852 ], [ 105.292969, 23.322080 ], [ 104.501953, 22.836946 ], [ 102.744141, 22.674847 ], [ 101.689453, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.861499 ], [ 100.458984, 21.534847 ], [ 99.228516, 22.105999 ], [ 99.492188, 22.917923 ], [ 98.876953, 23.160563 ], [ 98.701172, 24.046464 ], [ 97.646484, 23.885838 ], [ 97.734375, 25.085599 ], [ 98.701172, 25.958045 ], [ 98.701172, 27.527758 ], [ 98.261719, 27.761330 ], [ 97.910156, 28.304381 ], [ 97.294922, 28.226970 ], [ 96.240234, 28.381735 ], [ 96.591797, 28.844674 ], [ 96.152344, 29.458731 ], [ 95.361328, 28.998532 ], [ 94.570312, 29.305561 ], [ 93.427734, 28.613459 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.761330 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.857422, 27.293689 ], [ 88.769531, 28.071980 ], [ 88.154297, 27.839076 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.613459 ], [ 84.199219, 28.844674 ], [ 83.935547, 29.305561 ], [ 83.320312, 29.458731 ], [ 82.353516, 30.145127 ], [ 81.562500, 30.448674 ], [ 81.123047, 30.221102 ], [ 78.750000, 31.503629 ], [ 78.486328, 32.620870 ], [ 79.189453, 32.472695 ], [ 79.189453, 32.990236 ], [ 78.837891, 33.504759 ], [ 78.925781, 34.307144 ], [ 77.871094, 35.460670 ], [ 76.201172, 35.889050 ], [ 75.937500, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.882812, 38.410558 ], [ 74.267578, 38.616870 ], [ 73.916016, 38.479395 ], [ 73.652344, 39.436193 ], [ 74.003906, 39.639538 ], [ 73.828125, 39.909736 ], [ 74.794922, 40.380028 ], [ 75.498047, 40.580585 ], [ 76.552734, 40.446947 ], [ 76.904297, 41.046217 ], [ 78.222656, 41.178654 ], [ 78.574219, 41.574361 ], [ 80.156250, 42.098222 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.980469, 44.902578 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.521744 ], [ 83.144531, 47.338823 ], [ 85.166016, 46.980252 ], [ 85.693359, 47.457809 ], [ 85.781250, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.363281, 49.210420 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.574790 ], [ 88.857422, 48.048710 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.860191 ], [ 90.615234, 45.706179 ], [ 90.966797, 45.274886 ], [ 93.515625, 44.964798 ], [ 94.658203, 44.339565 ], [ 95.273438, 44.213710 ], [ 95.800781, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.470703, 42.747012 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.865234, 42.488302 ], [ 103.271484, 41.902277 ], [ 104.501953, 41.902277 ], [ 104.941406, 41.574361 ], [ 106.171875, 42.163403 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.488302 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.389082 ], [ 111.796875, 43.771094 ], [ 111.357422, 44.465151 ], [ 111.884766, 45.089036 ], [ 113.466797, 44.777936 ], [ 114.433594, 45.336702 ], [ 116.015625, 45.706179 ], [ 116.718750, 46.377254 ], [ 117.421875, 46.679594 ], [ 118.916016, 46.800059 ], [ 119.707031, 46.679594 ], [ 119.794922, 47.040182 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.048710 ], [ 117.333984, 47.694974 ], [ 116.279297, 47.872144 ], [ 115.751953, 47.754098 ], [ 115.488281, 48.107431 ], [ 116.718750, 49.894634 ], [ 117.861328, 49.496675 ], [ 119.267578, 50.120578 ], [ 119.267578, 50.569283 ], [ 120.146484, 51.618017 ], [ 120.761719, 51.944265 ], [ 120.761719, 52.536273 ], [ 120.146484, 52.749594 ], [ 121.025391, 53.225768 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.435719 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.839844, 55.178868 ], [ 71.191406, 54.110943 ], [ 72.246094, 54.367759 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.488046 ], [ 74.355469, 53.540307 ], [ 76.904297, 54.470038 ], [ 76.552734, 54.162434 ], [ 77.783203, 53.383328 ], [ 80.068359, 50.847573 ], [ 80.595703, 51.399206 ], [ 81.914062, 50.792047 ], [ 83.408203, 51.069017 ], [ 83.935547, 50.903033 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.667628 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.572266, 48.574790 ], [ 85.781250, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.166016, 46.980252 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.521744 ], [ 81.914062, 45.336702 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.101562, 42.875964 ], [ 76.025391, 43.004647 ], [ 75.673828, 42.875964 ], [ 74.179688, 43.325178 ], [ 73.652344, 43.068888 ], [ 73.476562, 42.488302 ], [ 71.806641, 42.875964 ], [ 71.191406, 42.682435 ], [ 70.927734, 42.293564 ], [ 70.400391, 42.098222 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.647304 ], [ 68.291016, 40.647304 ], [ 68.027344, 41.112469 ], [ 66.708984, 41.178654 ], [ 66.533203, 41.967659 ], [ 66.005859, 41.967659 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.707594 ], [ 62.050781, 43.516689 ], [ 61.083984, 44.402392 ], [ 58.535156, 45.583290 ], [ 55.898438, 44.964798 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.052734, 42.293564 ], [ 52.910156, 42.098222 ], [ 52.470703, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.734375, 42.423457 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.273438, 44.590467 ], [ 51.240234, 44.527843 ], [ 51.328125, 45.274886 ], [ 52.207031, 45.398450 ], [ 52.998047, 45.274886 ], [ 53.261719, 46.255847 ], [ 53.085938, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.152344, 47.040182 ], [ 50.009766, 46.619261 ], [ 49.130859, 46.377254 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.100045 ], [ 48.076172, 47.754098 ], [ 47.285156, 47.694974 ], [ 46.494141, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.757812, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.603516, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.800781, 51.672555 ], [ 52.294922, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.677734, 50.569283 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.289406 ], [ 59.941406, 51.944265 ], [ 60.908203, 52.429222 ], [ 60.732422, 52.696361 ], [ 61.699219, 52.961875 ], [ 60.996094, 53.644638 ], [ 61.435547, 54.007769 ], [ 65.214844, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.203125, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } , { "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.669922, 41.836828 ], [ 47.373047, 41.244772 ], [ 47.812500, 41.178654 ], [ 47.988281, 41.376809 ], [ 48.603516, 41.836828 ], [ 49.658203, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.361328, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.218750, 39.027719 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.341656 ], [ 48.603516, 38.272689 ], [ 47.988281, 38.822591 ], [ 48.339844, 39.300299 ], [ 48.076172, 39.571822 ], [ 47.724609, 39.504041 ], [ 46.494141, 38.754083 ], [ 46.494141, 39.436193 ], [ 45.615234, 39.909736 ], [ 45.878906, 40.245992 ], [ 45.351562, 40.580585 ], [ 45.527344, 40.780541 ], [ 45.175781, 40.979898 ], [ 45.000000, 41.244772 ], [ 45.175781, 41.442726 ], [ 45.966797, 41.112469 ], [ 46.494141, 41.046217 ], [ 46.669922, 41.178654 ], [ 46.142578, 41.705729 ], [ 46.406250, 41.836828 ], [ 46.669922, 41.836828 ] ] ], [ [ [ 45.000000, 39.707187 ], [ 45.263672, 39.504041 ], [ 45.703125, 39.504041 ], [ 46.142578, 38.754083 ], [ 45.439453, 38.891033 ], [ 44.912109, 39.368279 ], [ 44.824219, 39.707187 ], [ 45.000000, 39.707187 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.802734, 37.370157 ], [ 43.945312, 37.230328 ], [ 44.296875, 37.020098 ], [ 44.736328, 37.160317 ], [ 45.439453, 35.960223 ], [ 46.054688, 35.675147 ], [ 46.142578, 35.101934 ], [ 45.615234, 34.741612 ], [ 45.439453, 33.943360 ], [ 46.142578, 32.990236 ], [ 47.373047, 32.472695 ], [ 47.812500, 31.728167 ], [ 47.724609, 30.977609 ], [ 47.988281, 30.977609 ], [ 47.988281, 30.448674 ], [ 48.603516, 29.916852 ], [ 47.285156, 30.069094 ], [ 46.582031, 29.075375 ], [ 44.736328, 29.152161 ], [ 41.923828, 31.203405 ], [ 40.429688, 31.877558 ], [ 39.199219, 32.175612 ], [ 38.759766, 33.358062 ], [ 41.044922, 34.452218 ], [ 41.396484, 35.603719 ], [ 41.308594, 36.385913 ], [ 41.835938, 36.597889 ], [ 42.363281, 37.230328 ], [ 42.802734, 37.370157 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.429688, 31.877558 ], [ 41.923828, 31.203405 ], [ 44.736328, 29.152161 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.779297, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.137368 ], [ 50.185547, 26.667096 ], [ 50.097656, 25.958045 ], [ 50.273438, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.152344, 24.527135 ], [ 51.416016, 24.607069 ], [ 52.031250, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.674847 ], [ 55.634766, 22.024546 ], [ 55.019531, 19.973349 ], [ 52.031250, 18.979026 ], [ 49.130859, 18.646245 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.140790 ], [ 47.021484, 16.972741 ], [ 46.757812, 17.308688 ], [ 46.406250, 17.224758 ], [ 45.175781, 17.392579 ], [ 43.769531, 17.308688 ], [ 43.417969, 17.560247 ], [ 43.154297, 17.056785 ], [ 43.242188, 16.636192 ], [ 42.802734, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.646245 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.138470 ], [ 39.814453, 20.303418 ], [ 39.111328, 21.289374 ], [ 39.023438, 22.593726 ], [ 38.496094, 23.725012 ], [ 38.056641, 24.046464 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.650391, 25.799891 ], [ 36.210938, 26.588527 ], [ 35.156250, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.980469, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.840644 ], [ 37.529297, 29.993002 ], [ 37.705078, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.285156, 30.069094 ], [ 47.988281, 29.993002 ], [ 48.427734, 28.536275 ], [ 47.724609, 28.536275 ], [ 47.460938, 28.998532 ], [ 46.582031, 29.075375 ], [ 47.285156, 30.069094 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 40.429688, 31.877558 ], [ 41.923828, 31.203405 ], [ 44.736328, 29.152161 ], [ 47.460938, 28.998532 ], [ 47.724609, 28.536275 ], [ 48.427734, 28.536275 ], [ 48.779297, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.137368 ], [ 50.185547, 26.667096 ], [ 50.097656, 25.958045 ], [ 50.273438, 25.641526 ], [ 50.800781, 24.766785 ], [ 51.152344, 24.527135 ], [ 51.416016, 24.607069 ], [ 52.031250, 22.998852 ], [ 55.019531, 22.512557 ], [ 55.195312, 22.674847 ], [ 55.634766, 22.024546 ], [ 55.019531, 19.973349 ], [ 52.031250, 18.979026 ], [ 49.130859, 18.646245 ], [ 48.164062, 18.145852 ], [ 47.460938, 17.140790 ], [ 47.021484, 16.972741 ], [ 46.757812, 17.308688 ], [ 46.406250, 17.224758 ], [ 45.175781, 17.392579 ], [ 43.769531, 17.308688 ], [ 43.417969, 17.560247 ], [ 43.154297, 17.056785 ], [ 43.242188, 16.636192 ], [ 42.802734, 16.383391 ], [ 42.626953, 16.804541 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.646245 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.138470 ], [ 39.814453, 20.303418 ], [ 39.111328, 21.289374 ], [ 39.023438, 22.593726 ], [ 38.496094, 23.725012 ], [ 38.056641, 24.046464 ], [ 37.441406, 24.287027 ], [ 36.914062, 25.641526 ], [ 36.650391, 25.799891 ], [ 36.210938, 26.588527 ], [ 35.156250, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.980469, 29.382175 ], [ 36.035156, 29.228890 ], [ 36.474609, 29.535230 ], [ 36.738281, 29.840644 ], [ 37.529297, 29.993002 ], [ 37.705078, 30.372875 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.023438, 32.026706 ], [ 39.199219, 32.175612 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.244696 ], [ 51.416016, 24.607069 ], [ 51.152344, 24.527135 ], [ 50.800781, 24.766785 ], [ 50.712891, 25.482951 ], [ 50.976562, 26.037042 ], [ 51.328125, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.707187 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.754083 ], [ 47.724609, 39.504041 ], [ 48.076172, 39.571822 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.218750, 37.579413 ], [ 50.185547, 37.370157 ], [ 50.800781, 36.879621 ], [ 52.294922, 36.668419 ], [ 53.789062, 36.949892 ], [ 53.964844, 37.230328 ], [ 54.843750, 37.370157 ], [ 55.546875, 37.996163 ], [ 56.162109, 37.926868 ], [ 56.601562, 38.134557 ], [ 57.304688, 37.996163 ], [ 58.447266, 37.509726 ], [ 59.238281, 37.439974 ], [ 60.380859, 36.527295 ], [ 61.083984, 36.456636 ], [ 61.171875, 35.675147 ], [ 60.556641, 33.651208 ], [ 60.996094, 33.504759 ], [ 60.556641, 32.990236 ], [ 60.820312, 32.175612 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.353637 ], [ 61.787109, 30.751278 ], [ 60.908203, 29.840644 ], [ 61.787109, 28.690588 ], [ 62.753906, 28.226970 ], [ 62.753906, 27.371767 ], [ 63.193359, 27.215556 ], [ 63.281250, 26.745610 ], [ 61.875000, 26.273714 ], [ 61.523438, 25.085599 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.755859, 26.509905 ], [ 53.525391, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.839076 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.603516, 29.916852 ], [ 47.988281, 30.448674 ], [ 47.988281, 30.977609 ], [ 47.724609, 30.977609 ], [ 47.812500, 31.728167 ], [ 47.373047, 32.472695 ], [ 46.142578, 32.990236 ], [ 45.439453, 33.943360 ], [ 45.615234, 34.741612 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.675147 ], [ 45.439453, 35.960223 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.272689 ], [ 44.121094, 39.436193 ], [ 44.824219, 39.707187 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.425781, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.966176 ], [ 55.546875, 23.563987 ], [ 55.019531, 22.512557 ], [ 52.031250, 22.998852 ], [ 51.591797, 24.206890 ], [ 51.767578, 24.287027 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.941406, 42.228517 ], [ 60.117188, 41.442726 ], [ 60.468750, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.875000, 41.112469 ], [ 62.402344, 40.044438 ], [ 64.160156, 38.891033 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.533203, 37.370157 ], [ 66.181641, 37.370157 ], [ 65.742188, 37.649034 ], [ 65.566406, 37.300275 ], [ 64.775391, 37.090240 ], [ 64.511719, 36.315125 ], [ 63.984375, 36.031332 ], [ 63.193359, 35.889050 ], [ 63.017578, 35.389050 ], [ 62.226562, 35.245619 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.456636 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.439974 ], [ 58.447266, 37.509726 ], [ 57.304688, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.926868 ], [ 55.546875, 37.996163 ], [ 54.843750, 37.370157 ], [ 53.964844, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.734375, 40.044438 ], [ 52.910156, 40.847060 ], [ 53.876953, 40.647304 ], [ 54.755859, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.098222 ], [ 52.910156, 41.836828 ], [ 52.822266, 41.112469 ], [ 52.470703, 41.771312 ], [ 52.910156, 42.098222 ], [ 54.052734, 42.293564 ], [ 54.755859, 42.032974 ], [ 55.458984, 41.244772 ], [ 57.128906, 41.310824 ], [ 56.953125, 41.836828 ], [ 57.744141, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.926295 ], [ 56.865234, 24.206890 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.563987 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.512557 ], [ 59.765625, 22.350076 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.468189 ], [ 57.832031, 20.220966 ], [ 57.656250, 19.725342 ], [ 57.832031, 19.062118 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.062312 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.613281, 16.720385 ], [ 53.085938, 16.636192 ], [ 52.031250, 18.979026 ], [ 55.019531, 19.973349 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.674847 ], [ 55.195312, 23.079732 ], [ 55.546875, 23.563987 ], [ 55.546875, 23.966176 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.425781, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.513672, 26.273714 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.337891, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 38.479395 ], [ 71.367188, 38.272689 ], [ 71.279297, 37.926868 ], [ 71.542969, 37.926868 ], [ 71.455078, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.020098 ], [ 73.300781, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.091797, 36.809285 ], [ 71.806641, 36.527295 ], [ 71.279297, 36.102376 ], [ 71.630859, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.191406, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.960938, 34.016242 ], [ 70.312500, 33.358062 ], [ 69.697266, 33.137551 ], [ 69.257812, 32.472695 ], [ 69.345703, 31.877558 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.578535 ], [ 67.675781, 31.278551 ], [ 66.972656, 31.278551 ], [ 66.357422, 30.751278 ], [ 66.357422, 29.916852 ], [ 65.039062, 29.458731 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.305561 ], [ 63.544922, 29.458731 ], [ 62.578125, 29.305561 ], [ 60.908203, 29.840644 ], [ 61.787109, 30.751278 ], [ 61.699219, 31.353637 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.175612 ], [ 60.556641, 32.990236 ], [ 60.996094, 33.504759 ], [ 60.556641, 33.651208 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.245619 ], [ 63.017578, 35.389050 ], [ 63.193359, 35.889050 ], [ 63.984375, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.775391, 37.090240 ], [ 65.566406, 37.300275 ], [ 65.742188, 37.649034 ], [ 66.181641, 37.370157 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.020098 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.521484, 37.579413 ], [ 70.136719, 37.579413 ], [ 70.400391, 38.134557 ], [ 70.839844, 38.479395 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.707187 ], [ 44.912109, 39.368279 ], [ 45.439453, 38.891033 ], [ 46.142578, 38.754083 ], [ 46.494141, 38.754083 ], [ 47.724609, 39.504041 ], [ 48.076172, 39.571822 ], [ 48.339844, 39.300299 ], [ 47.988281, 38.822591 ], [ 48.603516, 38.272689 ], [ 48.867188, 38.341656 ], [ 49.218750, 37.579413 ], [ 50.185547, 37.370157 ], [ 50.800781, 36.879621 ], [ 52.294922, 36.668419 ], [ 53.789062, 36.949892 ], [ 53.964844, 37.230328 ], [ 54.843750, 37.370157 ], [ 55.546875, 37.996163 ], [ 56.162109, 37.926868 ], [ 56.601562, 38.134557 ], [ 57.304688, 37.996163 ], [ 58.447266, 37.509726 ], [ 59.238281, 37.439974 ], [ 60.380859, 36.527295 ], [ 61.083984, 36.456636 ], [ 61.171875, 35.675147 ], [ 60.556641, 33.651208 ], [ 60.996094, 33.504759 ], [ 60.556641, 32.990236 ], [ 60.820312, 32.175612 ], [ 60.908203, 31.578535 ], [ 61.699219, 31.353637 ], [ 61.787109, 30.751278 ], [ 60.908203, 29.840644 ], [ 61.787109, 28.690588 ], [ 62.753906, 28.226970 ], [ 62.753906, 27.371767 ], [ 63.193359, 27.215556 ], [ 63.281250, 26.745610 ], [ 61.875000, 26.273714 ], [ 61.523438, 25.085599 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.755859, 26.509905 ], [ 53.525391, 26.824071 ], [ 52.470703, 27.605671 ], [ 51.503906, 27.839076 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.603516, 29.916852 ], [ 47.988281, 30.448674 ], [ 47.988281, 30.977609 ], [ 47.724609, 30.977609 ], [ 47.812500, 31.728167 ], [ 47.373047, 32.472695 ], [ 46.142578, 32.990236 ], [ 45.439453, 33.943360 ], [ 45.615234, 34.741612 ], [ 46.142578, 35.101934 ], [ 46.054688, 35.675147 ], [ 45.439453, 35.960223 ], [ 44.208984, 37.996163 ], [ 44.384766, 38.272689 ], [ 44.121094, 39.436193 ], [ 44.824219, 39.707187 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 26.037042 ], [ 56.250000, 25.720735 ], [ 56.425781, 24.926295 ], [ 55.898438, 24.926295 ], [ 55.810547, 24.287027 ], [ 55.986328, 24.126702 ], [ 55.546875, 23.966176 ], [ 55.546875, 23.563987 ], [ 55.019531, 22.512557 ], [ 52.031250, 22.998852 ], [ 51.591797, 24.206890 ], [ 51.767578, 24.287027 ], [ 51.767578, 24.046464 ], [ 52.558594, 24.206890 ], [ 53.964844, 24.126702 ], [ 56.074219, 26.037042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 38.479395 ], [ 71.367188, 38.272689 ], [ 71.279297, 37.926868 ], [ 71.542969, 37.926868 ], [ 71.455078, 37.090240 ], [ 71.806641, 36.738884 ], [ 72.597656, 37.020098 ], [ 73.300781, 37.509726 ], [ 74.970703, 37.439974 ], [ 75.146484, 37.160317 ], [ 74.091797, 36.809285 ], [ 71.806641, 36.527295 ], [ 71.279297, 36.102376 ], [ 71.630859, 35.173808 ], [ 71.103516, 34.741612 ], [ 71.191406, 34.379713 ], [ 70.839844, 34.016242 ], [ 69.960938, 34.016242 ], [ 70.312500, 33.358062 ], [ 69.697266, 33.137551 ], [ 69.257812, 32.472695 ], [ 69.345703, 31.877558 ], [ 68.906250, 31.653381 ], [ 68.554688, 31.728167 ], [ 67.763672, 31.578535 ], [ 67.675781, 31.278551 ], [ 66.972656, 31.278551 ], [ 66.357422, 30.751278 ], [ 66.357422, 29.916852 ], [ 65.039062, 29.458731 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.305561 ], [ 63.544922, 29.458731 ], [ 62.578125, 29.305561 ], [ 60.908203, 29.840644 ], [ 61.787109, 30.751278 ], [ 61.699219, 31.353637 ], [ 60.908203, 31.578535 ], [ 60.820312, 32.175612 ], [ 60.556641, 32.990236 ], [ 60.996094, 33.504759 ], [ 60.556641, 33.651208 ], [ 61.171875, 35.675147 ], [ 62.226562, 35.245619 ], [ 63.017578, 35.389050 ], [ 63.193359, 35.889050 ], [ 63.984375, 36.031332 ], [ 64.511719, 36.315125 ], [ 64.775391, 37.090240 ], [ 65.566406, 37.300275 ], [ 65.742188, 37.649034 ], [ 66.181641, 37.370157 ], [ 67.060547, 37.370157 ], [ 68.115234, 37.020098 ], [ 68.818359, 37.370157 ], [ 69.169922, 37.160317 ], [ 69.521484, 37.579413 ], [ 70.136719, 37.579413 ], [ 70.400391, 38.134557 ], [ 70.839844, 38.479395 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.937500, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.871094, 35.460670 ], [ 76.904297, 34.669359 ], [ 75.761719, 34.524661 ], [ 74.267578, 34.741612 ], [ 73.740234, 34.307144 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.249974 ], [ 74.443359, 31.728167 ], [ 74.443359, 30.977609 ], [ 73.476562, 29.993002 ], [ 72.861328, 28.998532 ], [ 71.806641, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.521484, 26.902477 ], [ 70.136719, 26.509905 ], [ 70.312500, 25.720735 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.203125, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.148438, 24.686952 ], [ 66.357422, 25.403585 ], [ 61.523438, 25.085599 ], [ 61.875000, 26.273714 ], [ 63.281250, 26.745610 ], [ 63.193359, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.226970 ], [ 61.787109, 28.690588 ], [ 60.908203, 29.840644 ], [ 62.578125, 29.305561 ], [ 63.544922, 29.458731 ], [ 64.160156, 29.305561 ], [ 64.335938, 29.535230 ], [ 65.039062, 29.458731 ], [ 66.357422, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.972656, 31.278551 ], [ 67.675781, 31.278551 ], [ 67.763672, 31.578535 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.345703, 31.877558 ], [ 69.257812, 32.472695 ], [ 69.697266, 33.137551 ], [ 70.312500, 33.358062 ], [ 69.960938, 34.016242 ], [ 70.839844, 34.016242 ], [ 71.191406, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.630859, 35.173808 ], [ 71.279297, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.091797, 36.809285 ], [ 75.146484, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.941406, 42.228517 ], [ 60.117188, 41.442726 ], [ 60.468750, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.875000, 41.112469 ], [ 62.402344, 40.044438 ], [ 64.160156, 38.891033 ], [ 65.214844, 38.410558 ], [ 66.533203, 37.996163 ], [ 66.533203, 37.370157 ], [ 66.181641, 37.370157 ], [ 65.742188, 37.649034 ], [ 65.566406, 37.300275 ], [ 64.775391, 37.090240 ], [ 64.511719, 36.315125 ], [ 63.984375, 36.031332 ], [ 63.193359, 35.889050 ], [ 63.017578, 35.389050 ], [ 62.226562, 35.245619 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.456636 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.439974 ], [ 58.447266, 37.509726 ], [ 57.304688, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.162109, 37.926868 ], [ 55.546875, 37.996163 ], [ 54.843750, 37.370157 ], [ 53.964844, 37.230328 ], [ 53.701172, 37.926868 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.734375, 40.044438 ], [ 52.910156, 40.847060 ], [ 53.876953, 40.647304 ], [ 54.755859, 40.979898 ], [ 53.964844, 41.574361 ], [ 53.701172, 42.098222 ], [ 52.910156, 41.836828 ], [ 52.822266, 41.112469 ], [ 52.470703, 41.771312 ], [ 52.910156, 42.098222 ], [ 54.052734, 42.293564 ], [ 54.755859, 42.032974 ], [ 55.458984, 41.244772 ], [ 57.128906, 41.310824 ], [ 56.953125, 41.836828 ], [ 57.744141, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.926295 ], [ 56.865234, 24.206890 ], [ 57.392578, 23.885838 ], [ 58.710938, 23.563987 ], [ 59.414062, 22.674847 ], [ 59.765625, 22.512557 ], [ 59.765625, 22.350076 ], [ 58.447266, 20.468189 ], [ 58.007812, 20.468189 ], [ 57.832031, 20.220966 ], [ 57.656250, 19.725342 ], [ 57.832031, 19.062118 ], [ 57.656250, 18.979026 ], [ 57.216797, 18.979026 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.062312 ], [ 56.250000, 17.895114 ], [ 55.634766, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.755859, 16.972741 ], [ 54.228516, 17.056785 ], [ 53.613281, 16.720385 ], [ 53.085938, 16.636192 ], [ 52.031250, 18.979026 ], [ 55.019531, 19.973349 ], [ 55.634766, 22.024546 ], [ 55.195312, 22.674847 ], [ 55.195312, 23.079732 ], [ 55.546875, 23.563987 ], [ 55.546875, 23.966176 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.287027 ], [ 55.898438, 24.926295 ], [ 56.425781, 24.926295 ] ] ], [ [ [ 56.337891, 26.431228 ], [ 56.513672, 26.273714 ], [ 56.250000, 25.720735 ], [ 56.074219, 26.037042 ], [ 56.337891, 26.431228 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.955078, 11.436955 ], [ 48.955078, 9.449062 ], [ 47.812500, 7.972198 ], [ 46.933594, 7.972198 ], [ 43.681641, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.154297, 11.436955 ], [ 43.505859, 11.264612 ], [ 43.681641, 10.833306 ], [ 44.121094, 10.487812 ], [ 46.669922, 10.833306 ], [ 48.339844, 11.350797 ], [ 48.955078, 11.436955 ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.537109, 9.188870 ], [ 49.482422, 6.839170 ], [ 48.603516, 5.353521 ], [ 46.582031, 2.899153 ], [ 43.154297, 0.263671 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.214943 ], [ 42.802734, 4.214943 ], [ 43.681641, 4.915833 ], [ 45.000000, 5.003394 ], [ 47.812500, 7.972198 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.955078, 11.436955 ], [ 48.955078, 9.449062 ], [ 47.812500, 7.972198 ], [ 46.933594, 7.972198 ], [ 43.681641, 9.188870 ], [ 42.539062, 10.574222 ], [ 43.154297, 11.436955 ], [ 43.505859, 11.264612 ], [ 43.681641, 10.833306 ], [ 44.121094, 10.487812 ], [ 46.669922, 10.833306 ], [ 48.339844, 11.350797 ], [ 48.955078, 11.436955 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 61.083984, 44.402392 ], [ 62.050781, 43.516689 ], [ 64.863281, 43.707594 ], [ 66.093750, 43.004647 ], [ 66.005859, 41.967659 ], [ 66.533203, 41.967659 ], [ 66.708984, 41.178654 ], [ 68.027344, 41.112469 ], [ 68.291016, 40.647304 ], [ 68.642578, 40.647304 ], [ 69.082031, 41.376809 ], [ 70.400391, 42.098222 ], [ 70.927734, 42.293564 ], [ 71.279297, 42.163403 ], [ 70.400391, 41.508577 ], [ 71.191406, 41.112469 ], [ 71.894531, 41.376809 ], [ 73.037109, 40.847060 ], [ 71.806641, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.488281, 40.513799 ], [ 70.664062, 40.979898 ], [ 69.345703, 40.713956 ], [ 68.994141, 40.111689 ], [ 68.554688, 39.504041 ], [ 67.675781, 39.571822 ], [ 67.412109, 39.164141 ], [ 68.203125, 38.891033 ], [ 68.378906, 38.134557 ], [ 67.851562, 37.160317 ], [ 67.060547, 37.370157 ], [ 66.533203, 37.370157 ], [ 66.533203, 37.996163 ], [ 65.214844, 38.410558 ], [ 64.160156, 38.891033 ], [ 62.402344, 40.044438 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.468750, 41.244772 ], [ 60.117188, 41.442726 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.747012 ], [ 57.744141, 42.163403 ], [ 56.953125, 41.836828 ], [ 57.128906, 41.310824 ], [ 55.986328, 41.310824 ], [ 55.898438, 44.964798 ], [ 58.535156, 45.583290 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.138470 ], [ 110.830078, 20.055931 ], [ 111.005859, 19.725342 ], [ 110.566406, 19.228177 ], [ 110.302734, 18.646245 ], [ 109.511719, 18.229351 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.394068 ], [ 109.160156, 19.808054 ], [ 110.214844, 20.138470 ] ] ], [ [ [ 123.574219, 53.435719 ], [ 125.068359, 53.173119 ], [ 125.947266, 52.802761 ], [ 127.265625, 50.736455 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.439557 ], [ 130.605469, 48.748945 ], [ 130.957031, 47.813155 ], [ 132.539062, 47.813155 ], [ 133.330078, 48.166085 ], [ 135.000000, 48.458352 ], [ 134.472656, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.134170 ], [ 133.066406, 45.151053 ], [ 131.923828, 45.336702 ], [ 131.044922, 44.964798 ], [ 131.308594, 44.087585 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.875964 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 129.638672, 42.423457 ], [ 128.056641, 41.967659 ], [ 128.232422, 41.442726 ], [ 127.353516, 41.508577 ], [ 126.826172, 41.836828 ], [ 126.210938, 41.112469 ], [ 125.068359, 40.580585 ], [ 124.277344, 39.909736 ], [ 122.871094, 39.639538 ], [ 122.167969, 39.164141 ], [ 121.025391, 38.891033 ], [ 121.552734, 39.368279 ], [ 121.376953, 39.774769 ], [ 122.167969, 40.446947 ], [ 121.640625, 40.913513 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.232253 ], [ 118.037109, 39.232253 ], [ 117.509766, 38.754083 ], [ 118.037109, 38.065392 ], [ 118.916016, 37.926868 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.849609, 37.857507 ], [ 121.728516, 37.509726 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.949892 ], [ 121.113281, 36.668419 ], [ 120.673828, 36.102376 ], [ 119.707031, 35.603719 ], [ 119.179688, 34.885931 ], [ 120.234375, 34.379713 ], [ 120.585938, 33.358062 ], [ 121.904297, 31.728167 ], [ 121.904297, 30.977609 ], [ 121.289062, 30.675715 ], [ 121.464844, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.619141, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.927734, 22.755921 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.187405 ], [ 113.818359, 22.512557 ], [ 113.203125, 22.024546 ], [ 111.884766, 21.534847 ], [ 110.742188, 21.371244 ], [ 110.478516, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.599609, 21.043491 ], [ 109.863281, 21.371244 ], [ 108.544922, 21.698265 ], [ 108.017578, 21.534847 ], [ 107.050781, 21.779905 ], [ 106.523438, 22.187405 ], [ 106.699219, 22.755921 ], [ 105.820312, 22.998852 ], [ 105.292969, 23.322080 ], [ 104.501953, 22.836946 ], [ 102.744141, 22.674847 ], [ 101.689453, 22.350076 ], [ 101.777344, 21.207459 ], [ 101.250000, 21.207459 ], [ 101.162109, 21.861499 ], [ 100.458984, 21.534847 ], [ 99.228516, 22.105999 ], [ 99.492188, 22.917923 ], [ 98.876953, 23.160563 ], [ 98.701172, 24.046464 ], [ 97.646484, 23.885838 ], [ 97.734375, 25.085599 ], [ 98.701172, 25.958045 ], [ 98.701172, 27.527758 ], [ 98.261719, 27.761330 ], [ 97.910156, 28.304381 ], [ 97.294922, 28.226970 ], [ 96.240234, 28.381735 ], [ 96.591797, 28.844674 ], [ 96.152344, 29.458731 ], [ 95.361328, 28.998532 ], [ 94.570312, 29.305561 ], [ 93.427734, 28.613459 ], [ 92.460938, 27.916767 ], [ 91.669922, 27.761330 ], [ 91.230469, 28.071980 ], [ 90.703125, 28.071980 ], [ 90.000000, 28.304381 ], [ 89.472656, 28.071980 ], [ 88.857422, 27.293689 ], [ 88.769531, 28.071980 ], [ 88.154297, 27.839076 ], [ 85.781250, 28.226970 ], [ 84.990234, 28.613459 ], [ 84.199219, 28.844674 ], [ 83.935547, 29.305561 ], [ 83.320312, 29.458731 ], [ 82.353516, 30.145127 ], [ 81.562500, 30.448674 ], [ 81.123047, 30.221102 ], [ 78.750000, 31.503629 ], [ 78.486328, 32.620870 ], [ 79.189453, 32.472695 ], [ 79.189453, 32.990236 ], [ 78.837891, 33.504759 ], [ 78.925781, 34.307144 ], [ 77.871094, 35.460670 ], [ 76.201172, 35.889050 ], [ 75.937500, 36.668419 ], [ 75.146484, 37.160317 ], [ 74.970703, 37.439974 ], [ 74.882812, 38.410558 ], [ 74.267578, 38.616870 ], [ 73.916016, 38.479395 ], [ 73.652344, 39.436193 ], [ 74.003906, 39.639538 ], [ 73.828125, 39.909736 ], [ 74.794922, 40.380028 ], [ 75.498047, 40.580585 ], [ 76.552734, 40.446947 ], [ 76.904297, 41.046217 ], [ 78.222656, 41.178654 ], [ 78.574219, 41.574361 ], [ 80.156250, 42.098222 ], [ 80.244141, 42.358544 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.980469, 44.902578 ], [ 81.914062, 45.336702 ], [ 82.441406, 45.521744 ], [ 83.144531, 47.338823 ], [ 85.166016, 46.980252 ], [ 85.693359, 47.457809 ], [ 85.781250, 48.458352 ], [ 86.572266, 48.574790 ], [ 87.363281, 49.210420 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.574790 ], [ 88.857422, 48.048710 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.860191 ], [ 90.615234, 45.706179 ], [ 90.966797, 45.274886 ], [ 93.515625, 44.964798 ], [ 94.658203, 44.339565 ], [ 95.273438, 44.213710 ], [ 95.800781, 43.325178 ], [ 96.328125, 42.747012 ], [ 97.470703, 42.747012 ], [ 99.492188, 42.553080 ], [ 100.810547, 42.682435 ], [ 101.865234, 42.488302 ], [ 103.271484, 41.902277 ], [ 104.501953, 41.902277 ], [ 104.941406, 41.574361 ], [ 106.171875, 42.163403 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.488302 ], [ 110.390625, 42.875964 ], [ 111.093750, 43.389082 ], [ 111.796875, 43.771094 ], [ 111.357422, 44.465151 ], [ 111.884766, 45.089036 ], [ 113.466797, 44.777936 ], [ 114.433594, 45.336702 ], [ 116.015625, 45.706179 ], [ 116.718750, 46.377254 ], [ 117.421875, 46.679594 ], [ 118.916016, 46.800059 ], [ 119.707031, 46.679594 ], [ 119.794922, 47.040182 ], [ 118.828125, 47.754098 ], [ 118.037109, 48.048710 ], [ 117.333984, 47.694974 ], [ 116.279297, 47.872144 ], [ 115.751953, 47.754098 ], [ 115.488281, 48.107431 ], [ 116.718750, 49.894634 ], [ 117.861328, 49.496675 ], [ 119.267578, 50.120578 ], [ 119.267578, 50.569283 ], [ 120.146484, 51.618017 ], [ 120.761719, 51.944265 ], [ 120.761719, 52.536273 ], [ 120.146484, 52.749594 ], [ 121.025391, 53.225768 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.435719 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.488281, 40.513799 ], [ 70.576172, 40.245992 ], [ 71.015625, 40.245992 ], [ 70.664062, 39.909736 ], [ 69.521484, 40.111689 ], [ 69.433594, 39.504041 ], [ 70.576172, 39.571822 ], [ 71.806641, 39.300299 ], [ 73.652344, 39.436193 ], [ 73.916016, 38.479395 ], [ 74.267578, 38.616870 ], [ 74.882812, 38.410558 ], [ 74.970703, 37.439974 ], [ 73.300781, 37.509726 ], [ 72.597656, 37.020098 ], [ 71.806641, 36.738884 ], [ 71.455078, 37.090240 ], [ 71.542969, 37.926868 ], [ 71.279297, 37.926868 ], [ 71.367188, 38.272689 ], [ 70.839844, 38.479395 ], [ 70.400391, 38.134557 ], [ 70.136719, 37.579413 ], [ 69.521484, 37.579413 ], [ 69.169922, 37.160317 ], [ 68.818359, 37.370157 ], [ 68.115234, 37.020098 ], [ 67.851562, 37.160317 ], [ 68.378906, 38.134557 ], [ 68.203125, 38.891033 ], [ 67.412109, 39.164141 ], [ 67.675781, 39.571822 ], [ 68.554688, 39.504041 ], [ 68.994141, 40.111689 ], [ 69.345703, 40.713956 ], [ 70.664062, 40.979898 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 75.937500, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.871094, 35.460670 ], [ 76.904297, 34.669359 ], [ 75.761719, 34.524661 ], [ 74.267578, 34.741612 ], [ 73.740234, 34.307144 ], [ 74.443359, 32.768800 ], [ 75.234375, 32.249974 ], [ 74.443359, 31.728167 ], [ 74.443359, 30.977609 ], [ 73.476562, 29.993002 ], [ 72.861328, 28.998532 ], [ 71.806641, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.521484, 26.902477 ], [ 70.136719, 26.509905 ], [ 70.312500, 25.720735 ], [ 70.839844, 25.244696 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.203125, 23.725012 ], [ 67.412109, 23.966176 ], [ 67.148438, 24.686952 ], [ 66.357422, 25.403585 ], [ 61.523438, 25.085599 ], [ 61.875000, 26.273714 ], [ 63.281250, 26.745610 ], [ 63.193359, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.226970 ], [ 61.787109, 28.690588 ], [ 60.908203, 29.840644 ], [ 62.578125, 29.305561 ], [ 63.544922, 29.458731 ], [ 64.160156, 29.305561 ], [ 64.335938, 29.535230 ], [ 65.039062, 29.458731 ], [ 66.357422, 29.916852 ], [ 66.357422, 30.751278 ], [ 66.972656, 31.278551 ], [ 67.675781, 31.278551 ], [ 67.763672, 31.578535 ], [ 68.554688, 31.728167 ], [ 68.906250, 31.653381 ], [ 69.345703, 31.877558 ], [ 69.257812, 32.472695 ], [ 69.697266, 33.137551 ], [ 70.312500, 33.358062 ], [ 69.960938, 34.016242 ], [ 70.839844, 34.016242 ], [ 71.191406, 34.379713 ], [ 71.103516, 34.741612 ], [ 71.630859, 35.173808 ], [ 71.279297, 36.102376 ], [ 71.806641, 36.527295 ], [ 74.091797, 36.809285 ], [ 75.146484, 37.160317 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.448674 ], [ 82.353516, 30.145127 ], [ 83.320312, 29.458731 ], [ 83.935547, 29.305561 ], [ 84.199219, 28.844674 ], [ 84.990234, 28.613459 ], [ 85.781250, 28.226970 ], [ 88.154297, 27.839076 ], [ 88.066406, 27.449790 ], [ 88.154297, 26.824071 ], [ 88.066406, 26.431228 ], [ 87.187500, 26.431228 ], [ 85.253906, 26.745610 ], [ 84.638672, 27.215556 ], [ 83.320312, 27.371767 ], [ 82.001953, 27.916767 ], [ 80.068359, 28.767659 ], [ 80.507812, 29.764377 ], [ 81.562500, 30.448674 ] ] ] } } , { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 78.925781, 34.307144 ], [ 78.837891, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.486328, 32.620870 ], [ 78.750000, 31.503629 ], [ 81.123047, 30.221102 ], [ 80.507812, 29.764377 ], [ 80.068359, 28.767659 ], [ 83.320312, 27.371767 ], [ 84.638672, 27.215556 ], [ 85.253906, 26.745610 ], [ 87.187500, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.154297, 26.824071 ], [ 88.066406, 27.449790 ], [ 88.154297, 27.839076 ], [ 88.769531, 28.071980 ], [ 88.857422, 27.137368 ], [ 89.736328, 26.745610 ], [ 90.351562, 26.902477 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.669922, 27.761330 ], [ 92.460938, 27.916767 ], [ 93.427734, 28.613459 ], [ 94.570312, 29.305561 ], [ 95.361328, 28.998532 ], [ 96.152344, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.381735 ], [ 97.294922, 28.226970 ], [ 97.382812, 27.916767 ], [ 97.031250, 27.683528 ], [ 97.119141, 27.059126 ], [ 96.416016, 27.293689 ], [ 95.097656, 26.588527 ], [ 95.185547, 26.037042 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.130859, 23.885838 ], [ 93.339844, 24.046464 ], [ 93.251953, 23.079732 ], [ 93.076172, 22.674847 ], [ 93.164062, 22.268764 ], [ 92.636719, 22.024546 ], [ 92.109375, 23.644524 ], [ 91.845703, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.494141, 24.046464 ], [ 91.933594, 24.126702 ], [ 92.373047, 25.005973 ], [ 91.757812, 25.165173 ], [ 89.912109, 25.244696 ], [ 89.824219, 25.958045 ], [ 89.384766, 26.037042 ], [ 88.593750, 26.431228 ], [ 88.242188, 25.799891 ], [ 88.945312, 25.244696 ], [ 88.330078, 24.846565 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.206890 ], [ 88.505859, 23.644524 ], [ 88.857422, 22.917923 ], [ 89.033203, 22.024546 ], [ 88.857422, 21.698265 ], [ 87.011719, 21.534847 ], [ 87.011719, 20.715015 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 82.177734, 17.056785 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.068359, 15.114553 ], [ 80.244141, 12.983148 ], [ 79.892578, 12.039321 ], [ 79.892578, 10.314919 ], [ 79.365234, 10.314919 ], [ 78.925781, 9.535749 ], [ 79.189453, 9.188870 ], [ 78.310547, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.552734, 8.928487 ], [ 75.761719, 11.350797 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.564453, 15.961329 ], [ 72.861328, 19.228177 ], [ 72.861328, 20.385825 ], [ 72.597656, 21.371244 ], [ 71.191406, 20.797201 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.609375, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.203125, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 70.839844, 25.244696 ], [ 70.312500, 25.720735 ], [ 70.136719, 26.509905 ], [ 69.521484, 26.902477 ], [ 70.576172, 27.994401 ], [ 71.806641, 27.916767 ], [ 72.861328, 28.998532 ], [ 73.476562, 29.993002 ], [ 74.443359, 30.977609 ], [ 74.443359, 31.728167 ], [ 75.234375, 32.249974 ], [ 74.443359, 32.768800 ], [ 73.740234, 34.307144 ], [ 74.267578, 34.741612 ], [ 75.761719, 34.524661 ], [ 76.904297, 34.669359 ], [ 77.871094, 35.460670 ] ] ] } } @@ -292,17 +290,13 @@ , { "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 98.261719, 27.761330 ], [ 98.701172, 27.527758 ], [ 98.701172, 25.958045 ], [ 97.734375, 25.085599 ], [ 97.646484, 23.885838 ], [ 98.701172, 24.046464 ], [ 98.876953, 23.160563 ], [ 99.492188, 22.917923 ], [ 99.228516, 22.105999 ], [ 100.458984, 21.534847 ], [ 101.162109, 21.861499 ], [ 101.162109, 21.453069 ], [ 100.371094, 20.797201 ], [ 100.107422, 20.385825 ], [ 99.580078, 20.220966 ], [ 98.964844, 19.725342 ], [ 98.261719, 19.725342 ], [ 97.822266, 18.646245 ], [ 97.382812, 18.479609 ], [ 97.822266, 17.560247 ], [ 98.876953, 16.214675 ], [ 98.525391, 15.284185 ], [ 98.173828, 15.114553 ], [ 98.437500, 14.604847 ], [ 99.140625, 13.838080 ], [ 99.228516, 12.811801 ], [ 99.580078, 11.867351 ], [ 98.525391, 9.968851 ], [ 98.437500, 10.660608 ], [ 98.789062, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.154376 ], [ 98.085938, 13.667338 ], [ 97.558594, 16.130262 ], [ 97.207031, 16.888660 ], [ 95.361328, 15.707663 ], [ 94.218750, 16.045813 ], [ 94.570312, 17.308688 ], [ 94.306641, 18.229351 ], [ 93.515625, 19.394068 ], [ 93.691406, 19.725342 ], [ 93.076172, 19.890723 ], [ 92.373047, 20.632784 ], [ 92.285156, 21.453069 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.024546 ], [ 93.164062, 22.268764 ], [ 93.076172, 22.674847 ], [ 93.251953, 23.079732 ], [ 93.339844, 24.046464 ], [ 94.130859, 23.885838 ], [ 94.570312, 24.686952 ], [ 94.570312, 25.165173 ], [ 95.185547, 26.037042 ], [ 95.097656, 26.588527 ], [ 96.416016, 27.293689 ], [ 97.119141, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.916767 ], [ 97.294922, 28.226970 ], [ 97.910156, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.385825 ], [ 100.546875, 20.138470 ], [ 100.634766, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.074219, 18.396230 ], [ 101.074219, 17.476432 ], [ 102.128906, 18.145852 ], [ 102.392578, 17.895114 ], [ 103.007812, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.974609, 18.229351 ], [ 104.677734, 17.392579 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.538376 ], [ 105.556641, 14.689881 ], [ 105.205078, 14.264383 ], [ 104.238281, 14.434680 ], [ 103.007812, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.689453, 12.640338 ], [ 100.810547, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.275622 ], [ 99.843750, 9.188870 ], [ 100.283203, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.839170 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.790897 ], [ 101.162109, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.283203, 6.664608 ], [ 100.107422, 6.489983 ], [ 99.667969, 6.839170 ], [ 99.492188, 7.362467 ], [ 98.525391, 8.407168 ], [ 98.349609, 7.798079 ], [ 98.173828, 8.320212 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.867351 ], [ 99.228516, 12.811801 ], [ 99.140625, 13.838080 ], [ 98.437500, 14.604847 ], [ 98.173828, 15.114553 ], [ 98.525391, 15.284185 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.560247 ], [ 97.382812, 18.479609 ], [ 97.822266, 18.646245 ], [ 98.261719, 19.725342 ], [ 98.964844, 19.725342 ], [ 99.580078, 20.220966 ], [ 100.107422, 20.385825 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 125.068359, -9.362353 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.401378 ], [ 123.486328, -10.228437 ], [ 123.574219, -9.882275 ], [ 124.013672, -9.275622 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.322266, -10.228437 ], [ 119.003906, -9.535749 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 136.318359, -2.284551 ], [ 137.460938, -1.669686 ], [ 138.339844, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 139.130859, -8.059230 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 138.076172, -7.623887 ], [ 138.691406, -7.362467 ], [ 138.427734, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.513421 ], [ 133.330078, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.714844, -3.776559 ], [ 132.714844, -3.337954 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.957031, -1.406109 ], [ 130.517578, -0.966751 ], [ 131.835938, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.300781, -8.320212 ], [ 118.916016, -8.320212 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.494105 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.783203, -8.667918 ], [ 121.289062, -8.928487 ], [ 119.882812, -8.841651 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.376953, -8.494105 ], [ 121.992188, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.083984, -5.878332 ], [ 107.226562, -5.965754 ], [ 108.457031, -6.402648 ], [ 108.632812, -6.751896 ], [ 110.566406, -6.839170 ], [ 110.742188, -6.489983 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.623887 ], [ 114.521484, -7.798079 ], [ 115.664062, -8.407168 ], [ 114.521484, -8.754795 ], [ 113.466797, -8.320212 ], [ 111.533203, -8.320212 ], [ 108.720703, -7.623887 ], [ 108.281250, -7.798079 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.083984, -5.878332 ] ] ], [ [ [ 116.982422, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 117.509766, 0.087891 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.460181 ], [ 116.191406, -4.039618 ], [ 116.015625, -3.688855 ], [ 114.873047, -4.127285 ], [ 114.433594, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.291016, -3.162456 ], [ 112.060547, -3.513421 ], [ 111.708984, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.599609, -1.318243 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.439449 ], [ 109.072266, 1.318243 ], [ 109.687500, 2.021065 ], [ 109.863281, 1.318243 ], [ 110.478516, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.878872 ], [ 112.412109, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.136719, 2.811371 ], [ 115.488281, 3.162456 ], [ 115.839844, 4.302591 ], [ 116.982422, 4.302591 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.527336 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.372369 ], [ 105.644531, -2.460181 ], [ 106.083984, -3.074695 ], [ 105.820312, -4.302591 ], [ 105.820312, -5.878332 ], [ 104.677734, -5.878332 ], [ 103.886719, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.425781, -2.811371 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.175781 ], [ 98.613281, 1.845384 ], [ 97.734375, 2.460181 ], [ 97.207031, 3.337954 ], [ 96.416016, 3.864255 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.736328, -5.703448 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.926427 ], [ 134.121094, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 125.068359, 1.669686 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.966751 ], [ 122.431641, -1.493971 ], [ 121.464844, -1.933227 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.695312, -4.477856 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.640625, -4.214943 ], [ 120.937500, -3.601142 ], [ 120.937500, -2.635789 ], [ 120.322266, -2.899153 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.703448 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.477856 ], [ 119.531250, -3.513421 ], [ 119.091797, -3.513421 ], [ 118.740234, -2.811371 ], [ 119.179688, -2.108899 ], [ 119.355469, -1.318243 ], [ 120.058594, 0.527336 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.958984, 0.878872 ], [ 124.101562, 0.878872 ], [ 125.068359, 1.669686 ] ] ], [ [ [ 127.968750, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.671875, 0.263671 ], [ 128.144531, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.408203, -0.790990 ], [ 128.056641, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.441406, 1.054628 ], [ 127.617188, 1.845384 ], [ 127.968750, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.869141, -3.864255 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.425692 ], [ 128.144531, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.162456 ], [ 127.265625, -3.425692 ], [ 126.914062, -3.776559 ], [ 126.210938, -3.601142 ], [ 125.947266, -3.162456 ], [ 127.001953, -3.162456 ] ] ] ] } } -, { "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.431340 ], [ 102.744141, 21.698265 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.853516, 19.890723 ], [ 104.150391, 19.642588 ], [ 103.886719, 19.228177 ], [ 105.117188, 18.646245 ], [ 106.523438, 16.636192 ], [ 107.314453, 15.876809 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.179186 ], [ 106.523438, 14.604847 ], [ 106.083984, 13.923404 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.689881 ], [ 105.556641, 15.538376 ], [ 104.765625, 16.467695 ], [ 104.677734, 17.392579 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.392578, 17.895114 ], [ 102.128906, 18.145852 ], [ 101.074219, 17.476432 ], [ 101.074219, 18.396230 ], [ 101.250000, 19.476950 ], [ 100.634766, 19.476950 ], [ 100.546875, 20.138470 ], [ 100.107422, 20.385825 ], [ 100.371094, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.250000, 21.207459 ], [ 101.777344, 21.207459 ], [ 101.689453, 22.350076 ], [ 102.128906, 22.431340 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.322080 ], [ 105.820312, 22.998852 ], [ 106.699219, 22.755921 ], [ 106.523438, 22.187405 ], [ 107.050781, 21.779905 ], [ 108.017578, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.908203, 19.725342 ], [ 105.644531, 19.062118 ], [ 107.402344, 16.720385 ], [ 108.281250, 16.045813 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.160156, 11.695273 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.401378 ], [ 106.435547, 9.535749 ], [ 105.117188, 8.581021 ], [ 104.765625, 9.275622 ], [ 105.117188, 9.882275 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.919618 ], [ 106.259766, 10.919618 ], [ 105.820312, 11.609193 ], [ 107.490234, 12.297068 ], [ 107.578125, 13.496473 ], [ 107.402344, 14.179186 ], [ 107.578125, 15.199386 ], [ 107.314453, 15.876809 ], [ 106.523438, 16.636192 ], [ 105.117188, 18.646245 ], [ 103.886719, 19.228177 ], [ 104.150391, 19.642588 ], [ 104.853516, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.431340 ], [ 102.744141, 22.674847 ], [ 104.501953, 22.836946 ], [ 105.292969, 23.322080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.385825 ], [ 100.546875, 20.138470 ], [ 100.634766, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.074219, 18.396230 ], [ 101.074219, 17.476432 ], [ 102.128906, 18.145852 ], [ 102.392578, 17.895114 ], [ 103.007812, 17.978733 ], [ 103.183594, 18.312811 ], [ 103.974609, 18.229351 ], [ 104.677734, 17.392579 ], [ 104.765625, 16.467695 ], [ 105.556641, 15.538376 ], [ 105.556641, 14.689881 ], [ 105.205078, 14.264383 ], [ 104.238281, 14.434680 ], [ 103.007812, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 101.689453, 12.640338 ], [ 100.810547, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.275622 ], [ 99.843750, 9.188870 ], [ 100.283203, 8.320212 ], [ 100.458984, 7.449624 ], [ 100.986328, 6.839170 ], [ 101.601562, 6.751896 ], [ 102.128906, 6.227934 ], [ 101.777344, 5.790897 ], [ 101.162109, 5.703448 ], [ 101.074219, 6.227934 ], [ 100.283203, 6.664608 ], [ 100.107422, 6.489983 ], [ 99.667969, 6.839170 ], [ 99.492188, 7.362467 ], [ 98.525391, 8.407168 ], [ 98.349609, 7.798079 ], [ 98.173828, 8.320212 ], [ 98.525391, 9.968851 ], [ 99.580078, 11.867351 ], [ 99.228516, 12.811801 ], [ 99.140625, 13.838080 ], [ 98.437500, 14.604847 ], [ 98.173828, 15.114553 ], [ 98.525391, 15.284185 ], [ 98.876953, 16.214675 ], [ 97.822266, 17.560247 ], [ 97.382812, 18.479609 ], [ 97.822266, 18.646245 ], [ 98.261719, 19.725342 ], [ 98.964844, 19.725342 ], [ 99.580078, 20.220966 ], [ 100.107422, 20.385825 ] ] ] } } , { "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 14.604847 ], [ 107.402344, 14.179186 ], [ 107.578125, 13.496473 ], [ 107.490234, 12.297068 ], [ 105.820312, 11.609193 ], [ 106.259766, 10.919618 ], [ 105.205078, 10.919618 ], [ 104.326172, 10.487812 ], [ 103.535156, 10.660608 ], [ 102.568359, 12.211180 ], [ 102.304688, 13.410994 ], [ 103.007812, 14.264383 ], [ 104.238281, 14.434680 ], [ 105.205078, 14.264383 ], [ 106.083984, 13.923404 ], [ 106.523438, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.158203, 6.926427 ], [ 117.685547, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.003394 ], [ 118.476562, 5.003394 ], [ 118.652344, 4.477856 ], [ 117.861328, 4.127285 ], [ 116.982422, 4.302591 ], [ 115.839844, 4.302591 ], [ 115.488281, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.412109, 1.406109 ], [ 111.796875, 0.878872 ], [ 111.181641, 0.966751 ], [ 110.478516, 0.790990 ], [ 109.863281, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.723583 ], [ 113.027344, 3.074695 ], [ 114.169922, 4.565474 ], [ 114.697266, 4.039618 ], [ 114.873047, 4.390229 ], [ 115.312500, 4.302591 ], [ 115.488281, 5.441022 ], [ 116.191406, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.158203, 6.926427 ] ] ], [ [ [ 100.283203, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.162109, 5.703448 ], [ 101.777344, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.828260 ], [ 103.359375, 3.688855 ], [ 103.535156, 2.811371 ], [ 103.886719, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.238281, 1.318243 ], [ 103.535156, 1.230374 ], [ 101.425781, 2.723583 ], [ 101.250000, 3.250209 ], [ 100.722656, 3.951941 ], [ 100.546875, 4.740675 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.107422, 6.489983 ], [ 100.283203, 6.664608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.322080 ], [ 105.820312, 22.998852 ], [ 106.699219, 22.755921 ], [ 106.523438, 22.187405 ], [ 107.050781, 21.779905 ], [ 108.017578, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.908203, 19.725342 ], [ 105.644531, 19.062118 ], [ 107.402344, 16.720385 ], [ 108.281250, 16.045813 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.160156, 11.695273 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.401378 ], [ 106.435547, 9.535749 ], [ 105.117188, 8.581021 ], [ 104.765625, 9.275622 ], [ 105.117188, 9.882275 ], [ 104.326172, 10.487812 ], [ 105.205078, 10.919618 ], [ 106.259766, 10.919618 ], [ 105.820312, 11.609193 ], [ 107.490234, 12.297068 ], [ 107.578125, 13.496473 ], [ 107.402344, 14.179186 ], [ 107.578125, 15.199386 ], [ 107.314453, 15.876809 ], [ 106.523438, 16.636192 ], [ 105.117188, 18.646245 ], [ 103.886719, 19.228177 ], [ 104.150391, 19.642588 ], [ 104.853516, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.744141, 21.698265 ], [ 102.128906, 22.431340 ], [ 102.744141, 22.674847 ], [ 104.501953, 22.836946 ], [ 105.292969, 23.322080 ] ] ] } } , { "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.464844, 25.324167 ], [ 121.992188, 25.005973 ], [ 121.201172, 22.755921 ], [ 120.761719, 21.943046 ], [ 120.234375, 22.836946 ], [ 120.146484, 23.563987 ], [ 120.673828, 24.527135 ], [ 121.464844, 25.324167 ] ] ] } } , @@ -312,16 +306,20 @@ , { "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.441022 ], [ 115.312500, 4.302591 ], [ 114.873047, 4.390229 ], [ 114.697266, 4.039618 ], [ 114.169922, 4.565474 ], [ 115.488281, 5.441022 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.158203, 6.926427 ], [ 117.685547, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.441022 ], [ 119.091797, 5.003394 ], [ 118.476562, 5.003394 ], [ 118.652344, 4.477856 ], [ 117.861328, 4.127285 ], [ 116.982422, 4.302591 ], [ 115.839844, 4.302591 ], [ 115.488281, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.412109, 1.406109 ], [ 111.796875, 0.878872 ], [ 111.181641, 0.966751 ], [ 110.478516, 0.790990 ], [ 109.863281, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.723583 ], [ 113.027344, 3.074695 ], [ 114.169922, 4.565474 ], [ 114.697266, 4.039618 ], [ 114.873047, 4.390229 ], [ 115.312500, 4.302591 ], [ 115.488281, 5.441022 ], [ 116.191406, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.158203, 6.926427 ] ] ], [ [ [ 100.283203, 6.664608 ], [ 101.074219, 6.227934 ], [ 101.162109, 5.703448 ], [ 101.777344, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.919922, 5.528511 ], [ 103.359375, 4.828260 ], [ 103.359375, 3.688855 ], [ 103.535156, 2.811371 ], [ 103.886719, 2.547988 ], [ 104.238281, 1.669686 ], [ 104.238281, 1.318243 ], [ 103.535156, 1.230374 ], [ 101.425781, 2.723583 ], [ 101.250000, 3.250209 ], [ 100.722656, 3.951941 ], [ 100.546875, 4.740675 ], [ 100.195312, 5.353521 ], [ 100.283203, 6.053161 ], [ 100.107422, 6.489983 ], [ 100.283203, 6.664608 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.795678 ], [ 126.210938, 9.275622 ], [ 126.562500, 7.188101 ], [ 126.210938, 6.315299 ], [ 125.859375, 7.275292 ], [ 125.332031, 6.751896 ], [ 125.683594, 6.053161 ], [ 125.419922, 5.615986 ], [ 124.189453, 6.140555 ], [ 123.925781, 6.926427 ], [ 124.277344, 7.362467 ], [ 123.574219, 7.798079 ], [ 123.310547, 7.449624 ], [ 122.783203, 7.449624 ], [ 122.080078, 6.926427 ], [ 121.904297, 7.188101 ], [ 122.343750, 8.059230 ], [ 123.486328, 8.667918 ], [ 123.837891, 8.233237 ], [ 124.628906, 8.494105 ], [ 124.804688, 8.928487 ], [ 125.507812, 9.015302 ], [ 125.419922, 9.795678 ] ] ], [ [ [ 121.289062, 18.479609 ], [ 121.904297, 18.229351 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.056785 ], [ 122.255859, 16.299051 ], [ 121.640625, 15.961329 ], [ 121.464844, 15.114553 ], [ 121.728516, 14.349548 ], [ 122.255859, 14.179186 ], [ 122.695312, 14.349548 ], [ 123.925781, 13.752725 ], [ 123.837891, 13.239945 ], [ 124.189453, 12.983148 ], [ 124.101562, 12.554564 ], [ 123.310547, 13.068777 ], [ 122.958984, 13.581921 ], [ 122.695312, 13.154376 ], [ 121.992188, 13.752725 ], [ 121.113281, 13.667338 ], [ 120.585938, 13.838080 ], [ 120.673828, 14.264383 ], [ 121.025391, 14.519780 ], [ 120.673828, 14.774883 ], [ 120.585938, 14.434680 ], [ 120.058594, 14.944785 ], [ 119.882812, 15.368950 ], [ 119.882812, 16.383391 ], [ 120.322266, 16.045813 ], [ 120.410156, 17.560247 ], [ 120.673828, 18.479609 ], [ 121.289062, 18.479609 ] ] ], [ [ [ 125.244141, 12.554564 ], [ 125.507812, 12.125264 ], [ 125.771484, 11.005904 ], [ 124.980469, 11.350797 ], [ 125.244141, 10.401378 ], [ 124.804688, 10.141932 ], [ 124.716797, 10.833306 ], [ 124.453125, 10.919618 ], [ 124.277344, 11.523088 ], [ 124.892578, 11.436955 ], [ 124.892578, 11.781325 ], [ 124.277344, 12.554564 ], [ 125.244141, 12.554564 ] ] ], [ [ [ 119.531250, 11.350797 ], [ 119.707031, 10.574222 ], [ 119.003906, 9.968851 ], [ 118.476562, 9.275622 ], [ 117.158203, 8.407168 ], [ 117.685547, 9.102097 ], [ 119.003906, 10.401378 ], [ 119.531250, 11.350797 ] ] ], [ [ [ 124.101562, 11.264612 ], [ 124.013672, 10.314919 ], [ 122.958984, 9.015302 ], [ 122.343750, 9.709057 ], [ 122.871094, 10.228437 ], [ 122.958984, 10.919618 ], [ 123.486328, 10.919618 ], [ 123.310547, 10.228437 ], [ 124.101562, 11.264612 ] ] ], [ [ [ 121.904297, 11.867351 ], [ 122.519531, 11.609193 ], [ 123.134766, 11.609193 ], [ 123.134766, 11.178402 ], [ 122.607422, 10.746969 ], [ 121.992188, 10.401378 ], [ 122.080078, 11.436955 ], [ 121.904297, 11.867351 ] ] ], [ [ [ 120.322266, 13.496473 ], [ 121.201172, 13.410994 ], [ 121.552734, 13.068777 ], [ 121.289062, 12.211180 ], [ 120.322266, 13.496473 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.943359, 39.977120 ], [ 141.855469, 39.164141 ], [ 140.976562, 38.203655 ], [ 140.976562, 37.160317 ], [ 140.625000, 36.315125 ], [ 140.800781, 35.817813 ], [ 140.273438, 35.173808 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.431441 ], [ 135.087891, 33.870416 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.187500, 33.870416 ], [ 130.957031, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.308594, 31.428663 ], [ 130.693359, 31.052934 ], [ 130.166016, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.375000, 33.284620 ], [ 130.341797, 33.578015 ], [ 130.869141, 34.234512 ], [ 131.923828, 34.741612 ], [ 132.626953, 35.460670 ], [ 134.648438, 35.746512 ], [ 135.703125, 35.532226 ], [ 136.757812, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.394531, 38.203655 ], [ 140.097656, 39.436193 ], [ 139.921875, 40.580585 ], [ 140.273438, 41.178654 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 133.945312, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.736328, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.769531, 33.504759 ], [ 133.242188, 33.284620 ], [ 132.978516, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.431441 ], [ 132.890625, 34.089061 ], [ 133.505859, 33.943360 ], [ 133.945312, 34.379713 ] ] ], [ [ [ 141.943359, 45.521744 ], [ 143.173828, 44.527843 ], [ 143.876953, 44.150681 ], [ 144.580078, 43.961191 ], [ 145.283203, 44.402392 ], [ 145.546875, 43.261206 ], [ 144.052734, 43.004647 ], [ 143.173828, 41.967659 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.921875, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.273438, 43.325178 ], [ 141.416016, 43.389082 ], [ 141.943359, 45.521744 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.878332 ], [ 16.875000, -7.188101 ], [ 17.490234, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.984375, -7.972198 ], [ 19.423828, -7.188101 ], [ 20.039062, -7.100893 ], [ 20.126953, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.972656, -8.320212 ], [ 21.796875, -8.928487 ], [ 21.884766, -9.535749 ], [ 22.236328, -9.882275 ], [ 22.148438, -11.092166 ], [ 23.466797, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.264612 ], [ 23.906250, -11.695273 ], [ 24.082031, -12.211180 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.560247 ], [ 21.357422, -17.895114 ], [ 18.984375, -17.811456 ], [ 18.281250, -17.308688 ], [ 14.062500, -17.392579 ], [ 13.447266, -16.972741 ], [ 12.832031, -16.972741 ], [ 11.777344, -17.308688 ], [ 11.601562, -16.636192 ], [ 12.216797, -14.434680 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.710938, -11.264612 ], [ 13.710938, -10.746969 ], [ 13.359375, -10.401378 ], [ 12.832031, -9.188870 ], [ 13.271484, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.140555 ], [ 13.359375, -5.878332 ], [ 16.347656, -5.878332 ] ] ], [ [ [ 12.656250, -4.477856 ], [ 13.007812, -4.740675 ], [ 12.656250, -5.003394 ], [ 12.480469, -5.266008 ], [ 12.480469, -5.703448 ], [ 12.216797, -5.790897 ], [ 11.953125, -5.003394 ], [ 12.656250, -4.477856 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.062500, 1.406109 ], [ 14.238281, 1.230374 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.527336 ], [ 14.414062, -1.318243 ], [ 14.326172, -2.021065 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.460181 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.777344, -2.547988 ], [ 11.513672, -2.723583 ], [ 11.865234, -3.425692 ], [ 11.074219, -3.951941 ], [ 9.404297, -2.108899 ], [ 8.789062, -1.142502 ], [ 8.789062, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.492188, 0.966751 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.777344, 2.284551 ], [ 12.392578, 2.196727 ], [ 12.919922, 2.284551 ], [ 13.095703, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.390229 ], [ 28.388672, 4.302591 ], [ 28.740234, 4.477856 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.970703, 4.214943 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.201172, 2.196727 ], [ 30.498047, 1.581830 ], [ 29.882812, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.619141, -0.615223 ], [ 29.619141, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.267578, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.531250, -5.441022 ], [ 29.443359, -5.965754 ], [ 29.619141, -6.489983 ], [ 30.234375, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.322266, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.494105 ], [ 28.476562, -9.188870 ], [ 28.652344, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.382928 ], [ 29.619141, -12.211180 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.297068 ], [ 27.421875, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.953349 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.345703, -11.264612 ], [ 24.257812, -10.919618 ], [ 23.466797, -10.833306 ], [ 22.148438, -11.092166 ], [ 22.236328, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.972656, -8.320212 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.126953, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.188101 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.885147 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.188101 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.140555 ], [ 12.216797, -5.790897 ], [ 12.480469, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.656250, -5.003394 ], [ 13.007812, -4.740675 ], [ 13.271484, -4.915833 ], [ 13.623047, -4.477856 ], [ 14.150391, -4.477856 ], [ 14.238281, -4.828260 ], [ 14.589844, -5.003394 ], [ 15.996094, -3.513421 ], [ 15.996094, -2.723583 ], [ 16.435547, -1.757537 ], [ 17.490234, -0.703107 ], [ 17.666016, -0.439449 ], [ 17.841797, 0.263671 ], [ 17.929688, 1.757537 ], [ 18.369141, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.511719, 5.003394 ], [ 20.917969, 4.302591 ], [ 22.412109, 4.039618 ], [ 22.851562, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.433594, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.312500, 5.178482 ], [ 25.664062, 5.266008 ], [ 27.070312, 5.090944 ], [ 27.333984, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.878332 ], [ 16.875000, -7.188101 ], [ 17.490234, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.984375, -7.972198 ], [ 19.423828, -7.188101 ], [ 20.039062, -7.100893 ], [ 20.126953, -6.926427 ], [ 20.566406, -6.926427 ], [ 20.478516, -7.275292 ], [ 21.708984, -7.275292 ], [ 21.708984, -7.885147 ], [ 21.972656, -8.320212 ], [ 21.796875, -8.928487 ], [ 21.884766, -9.535749 ], [ 22.236328, -9.882275 ], [ 22.148438, -11.092166 ], [ 23.466797, -10.833306 ], [ 23.906250, -10.919618 ], [ 23.994141, -11.264612 ], [ 23.906250, -11.695273 ], [ 24.082031, -12.211180 ], [ 23.906250, -12.554564 ], [ 23.994141, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.560247 ], [ 21.357422, -17.895114 ], [ 18.984375, -17.811456 ], [ 18.281250, -17.308688 ], [ 14.062500, -17.392579 ], [ 13.447266, -16.972741 ], [ 12.832031, -16.972741 ], [ 11.777344, -17.308688 ], [ 11.601562, -16.636192 ], [ 12.216797, -14.434680 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.710938, -11.264612 ], [ 13.710938, -10.746969 ], [ 13.359375, -10.401378 ], [ 12.832031, -9.188870 ], [ 13.271484, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.140555 ], [ 13.359375, -5.878332 ], [ 16.347656, -5.878332 ] ] ], [ [ [ 12.656250, -4.477856 ], [ 13.007812, -4.740675 ], [ 12.656250, -5.003394 ], [ 12.480469, -5.266008 ], [ 12.480469, -5.703448 ], [ 12.216797, -5.790897 ], [ 11.953125, -5.003394 ], [ 12.656250, -4.477856 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.972741 ], [ 14.062500, -17.392579 ], [ 18.281250, -17.308688 ], [ 18.984375, -17.811456 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.308688 ], [ 24.697266, -17.392579 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.312811 ], [ 23.203125, -17.895114 ], [ 21.621094, -18.229351 ], [ 20.917969, -18.229351 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.861499 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.998532 ], [ 18.457031, -29.075375 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.381735 ], [ 16.787109, -28.071980 ], [ 16.347656, -28.613459 ], [ 15.644531, -27.839076 ], [ 15.205078, -27.059126 ], [ 14.414062, -23.885838 ], [ 14.238281, -22.105999 ], [ 13.359375, -20.879343 ], [ 12.568359, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.777344, -17.308688 ], [ 12.832031, -16.972741 ], [ 13.447266, -16.972741 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.390229 ], [ 28.388672, 4.302591 ], [ 28.740234, 4.477856 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.970703, 4.214943 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.372369 ], [ 31.201172, 2.196727 ], [ 30.498047, 1.581830 ], [ 29.882812, 0.615223 ], [ 29.794922, -0.175781 ], [ 29.619141, -0.615223 ], [ 29.619141, -1.318243 ], [ 29.267578, -1.581830 ], [ 29.267578, -2.196727 ], [ 29.091797, -2.284551 ], [ 29.003906, -2.811371 ], [ 29.267578, -3.250209 ], [ 29.531250, -5.441022 ], [ 29.443359, -5.965754 ], [ 29.619141, -6.489983 ], [ 30.234375, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.322266, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.494105 ], [ 28.476562, -9.188870 ], [ 28.652344, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.382928 ], [ 29.619141, -12.211180 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.125000, -12.297068 ], [ 27.421875, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.953349 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.345703, -11.264612 ], [ 24.257812, -10.919618 ], [ 23.466797, -10.833306 ], [ 22.148438, -11.092166 ], [ 22.236328, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.972656, -8.320212 ], [ 21.708984, -7.885147 ], [ 21.708984, -7.275292 ], [ 20.478516, -7.275292 ], [ 20.566406, -6.926427 ], [ 20.126953, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.188101 ], [ 18.984375, -7.972198 ], [ 18.457031, -7.885147 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.188101 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.140555 ], [ 12.216797, -5.790897 ], [ 12.480469, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.656250, -5.003394 ], [ 13.007812, -4.740675 ], [ 13.271484, -4.915833 ], [ 13.623047, -4.477856 ], [ 14.150391, -4.477856 ], [ 14.238281, -4.828260 ], [ 14.589844, -5.003394 ], [ 15.996094, -3.513421 ], [ 15.996094, -2.723583 ], [ 16.435547, -1.757537 ], [ 17.490234, -0.703107 ], [ 17.666016, -0.439449 ], [ 17.841797, 0.263671 ], [ 17.929688, 1.757537 ], [ 18.369141, 2.899153 ], [ 18.544922, 4.214943 ], [ 18.896484, 4.740675 ], [ 19.511719, 5.003394 ], [ 20.917969, 4.302591 ], [ 22.412109, 4.039618 ], [ 22.851562, 4.740675 ], [ 23.291016, 4.653080 ], [ 24.433594, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.312500, 5.178482 ], [ 25.664062, 5.266008 ], [ 27.070312, 5.090944 ], [ 27.333984, 5.266008 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.214943 ], [ 34.453125, 3.513421 ], [ 35.068359, 1.933227 ], [ 33.925781, 0.087891 ], [ 33.925781, -0.966751 ], [ 30.761719, -1.054628 ], [ 29.794922, -1.406109 ], [ 29.619141, -1.318243 ], [ 29.619141, -0.615223 ], [ 29.794922, -0.175781 ], [ 29.882812, 0.615223 ], [ 30.498047, 1.581830 ], [ 31.201172, 2.196727 ], [ 30.761719, 2.372369 ], [ 30.849609, 3.513421 ], [ 31.289062, 3.776559 ], [ 31.904297, 3.601142 ], [ 32.695312, 3.776559 ], [ 33.398438, 3.776559 ], [ 34.013672, 4.214943 ] ] ] } } , { "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -1.142502 ], [ 30.849609, -1.669686 ], [ 30.761719, -2.284551 ], [ 30.498047, -2.372369 ], [ 29.970703, -2.372369 ], [ 29.619141, -2.899153 ], [ 29.003906, -2.811371 ], [ 29.091797, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.267578, -1.581830 ], [ 29.619141, -1.318243 ], [ 29.794922, -1.406109 ], [ 30.410156, -1.142502 ] ] ] } } @@ -332,26 +330,28 @@ , { "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.167969, -8.928487 ], [ 32.783203, -9.188870 ], [ 33.222656, -9.709057 ], [ 33.486328, -10.487812 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.468760 ], [ 32.958984, -12.811801 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 29.531250, -15.623037 ], [ 28.916016, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.070312, -17.978733 ], [ 25.224609, -17.727759 ], [ 24.697266, -17.392579 ], [ 23.994141, -17.308688 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.695273 ], [ 23.994141, -11.264612 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.919618 ], [ 24.345703, -11.264612 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.953349 ], [ 27.158203, -11.609193 ], [ 27.421875, -12.125264 ], [ 28.125000, -12.297068 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.476562, -9.188870 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 26.191406, -19.311143 ], [ 27.333984, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.879343 ], [ 28.037109, -21.453069 ], [ 28.828125, -21.616579 ], [ 29.443359, -22.105999 ], [ 28.037109, -22.836946 ], [ 27.158203, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.048828, -25.720735 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.851562, -25.482951 ], [ 22.587891, -25.958045 ], [ 21.621094, -26.745610 ], [ 20.917969, -26.824071 ], [ 20.654297, -26.509905 ], [ 20.742188, -25.878994 ], [ 20.126953, -24.926295 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.861499 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.229351 ], [ 21.621094, -18.229351 ], [ 23.203125, -17.895114 ], [ 23.554688, -18.312811 ], [ 24.257812, -17.895114 ], [ 25.048828, -17.644022 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.538376 ], [ 30.322266, -15.876809 ], [ 31.201172, -15.876809 ], [ 31.816406, -16.299051 ], [ 32.343750, -16.383391 ], [ 32.871094, -16.720385 ], [ 32.871094, -17.978733 ], [ 32.607422, -19.394068 ], [ 32.783203, -19.725342 ], [ 32.695312, -20.303418 ], [ 32.519531, -20.385825 ], [ 32.255859, -21.125498 ], [ 31.201172, -22.268764 ], [ 30.673828, -22.187405 ], [ 30.322266, -22.268764 ], [ 29.443359, -22.105999 ], [ 28.828125, -21.616579 ], [ 28.037109, -21.453069 ], [ 27.685547, -20.879343 ], [ 27.685547, -20.468189 ], [ 27.333984, -20.385825 ], [ 26.191406, -19.311143 ], [ 25.224609, -17.727759 ], [ 27.070312, -17.978733 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.383391 ], [ 28.916016, -16.045813 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.538376 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.783203, -9.188870 ], [ 33.750000, -9.449062 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.244141, -13.923404 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.130262 ], [ 35.068359, -16.804541 ], [ 34.365234, -16.214675 ], [ 34.277344, -15.453680 ], [ 34.541016, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.695312, -13.752725 ], [ 32.958984, -12.811801 ], [ 33.310547, -12.468760 ], [ 33.134766, -11.609193 ], [ 33.486328, -10.487812 ], [ 33.222656, -9.709057 ], [ 32.783203, -9.188870 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 35.859375, 5.353521 ], [ 35.859375, 4.740675 ], [ 36.123047, 4.477856 ], [ 36.826172, 4.477856 ], [ 38.144531, 3.601142 ], [ 39.550781, 3.425692 ], [ 39.814453, 3.864255 ], [ 40.781250, 4.214943 ], [ 41.132812, 3.951941 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.108899 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.547988 ], [ 40.078125, -3.250209 ], [ 39.814453, -3.688855 ], [ 39.638672, -4.390229 ], [ 39.199219, -4.653080 ], [ 37.792969, -3.688855 ], [ 37.705078, -3.074695 ], [ 33.925781, -0.966751 ], [ 33.925781, 0.087891 ], [ 35.068359, 1.933227 ], [ 34.453125, 3.513421 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, -10.314919 ], [ 40.517578, -10.746969 ], [ 40.605469, -14.179186 ], [ 40.781250, -14.689881 ], [ 40.517578, -15.368950 ], [ 40.078125, -16.130262 ], [ 39.462891, -16.720385 ], [ 37.441406, -17.560247 ], [ 36.298828, -18.646245 ], [ 35.859375, -18.812718 ], [ 35.156250, -19.559790 ], [ 34.804688, -19.808054 ], [ 34.716797, -20.468189 ], [ 35.156250, -21.289374 ], [ 35.419922, -22.105999 ], [ 35.595703, -22.105999 ], [ 35.507812, -23.079732 ], [ 35.332031, -23.563987 ], [ 35.595703, -23.725012 ], [ 35.419922, -24.126702 ], [ 35.068359, -24.447150 ], [ 33.046875, -25.324167 ], [ 32.607422, -25.720735 ], [ 32.695312, -26.115986 ], [ 32.958984, -26.194877 ], [ 32.871094, -26.745610 ], [ 32.080078, -26.745610 ], [ 31.728516, -25.482951 ], [ 31.904297, -24.367114 ], [ 31.201172, -22.268764 ], [ 32.255859, -21.125498 ], [ 32.519531, -20.385825 ], [ 32.695312, -20.303418 ], [ 32.783203, -19.725342 ], [ 32.607422, -19.394068 ], [ 32.871094, -17.978733 ], [ 32.871094, -16.720385 ], [ 32.343750, -16.383391 ], [ 31.816406, -16.299051 ], [ 31.201172, -15.876809 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.222656, -14.008696 ], [ 33.750000, -14.434680 ], [ 34.101562, -14.349548 ], [ 34.453125, -14.604847 ], [ 34.541016, -15.029686 ], [ 34.277344, -15.453680 ], [ 34.365234, -16.214675 ], [ 35.068359, -16.804541 ], [ 35.332031, -16.130262 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 35.244141, -13.923404 ], [ 34.892578, -13.581921 ], [ 34.541016, -13.581921 ], [ 34.277344, -12.297068 ], [ 34.541016, -11.523088 ], [ 35.332031, -11.436955 ], [ 36.474609, -11.695273 ], [ 37.441406, -11.609193 ], [ 37.792969, -11.264612 ], [ 38.408203, -11.264612 ], [ 39.550781, -10.919618 ], [ 40.341797, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.783203, -9.188870 ], [ 33.750000, -9.449062 ], [ 34.277344, -10.141932 ], [ 34.541016, -11.523088 ], [ 34.277344, -12.297068 ], [ 34.541016, -13.581921 ], [ 34.892578, -13.581921 ], [ 35.244141, -13.923404 ], [ 35.683594, -14.604847 ], [ 35.771484, -15.876809 ], [ 35.332031, -16.130262 ], [ 35.068359, -16.804541 ], [ 34.365234, -16.214675 ], [ 34.277344, -15.453680 ], [ 34.541016, -15.029686 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.349548 ], [ 33.750000, -14.434680 ], [ 32.695312, -13.752725 ], [ 32.958984, -12.811801 ], [ 33.310547, -12.468760 ], [ 33.134766, -11.609193 ], [ 33.486328, -10.487812 ], [ 33.222656, -9.709057 ], [ 32.783203, -9.188870 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.039321 ], [ 49.833984, -12.897489 ], [ 50.097656, -13.581921 ], [ 50.185547, -14.774883 ], [ 50.449219, -15.199386 ], [ 50.361328, -15.707663 ], [ 50.185547, -15.961329 ], [ 49.833984, -15.453680 ], [ 49.658203, -15.707663 ], [ 49.833984, -16.467695 ], [ 49.746094, -16.888660 ], [ 49.482422, -17.140790 ], [ 49.394531, -17.978733 ], [ 47.109375, -24.926295 ], [ 45.439453, -25.562265 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.755921 ], [ 43.242188, -22.024546 ], [ 43.417969, -21.371244 ], [ 43.857422, -21.125498 ], [ 43.857422, -20.797201 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.394068 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.888660 ], [ 44.472656, -16.214675 ], [ 44.912109, -16.214675 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.900391, -13.667338 ], [ 48.251953, -13.752725 ], [ 48.867188, -13.068777 ], [ 48.867188, -12.468760 ], [ 49.218750, -12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, -28.613459 ], [ 29.355469, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.125000, -30.524413 ], [ 27.773438, -30.675715 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.564453, -28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 25.224609, -17.727759 ], [ 26.191406, -19.311143 ], [ 27.333984, -20.385825 ], [ 27.685547, -20.468189 ], [ 27.685547, -20.879343 ], [ 28.037109, -21.453069 ], [ 28.828125, -21.616579 ], [ 29.443359, -22.105999 ], [ 28.037109, -22.836946 ], [ 27.158203, -23.563987 ], [ 26.455078, -24.607069 ], [ 25.927734, -24.686952 ], [ 25.664062, -25.482951 ], [ 25.048828, -25.720735 ], [ 24.169922, -25.641526 ], [ 23.291016, -25.244696 ], [ 22.851562, -25.482951 ], [ 22.587891, -25.958045 ], [ 21.621094, -26.745610 ], [ 20.917969, -26.824071 ], [ 20.654297, -26.509905 ], [ 20.742188, -25.878994 ], [ 20.126953, -24.926295 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.861499 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.229351 ], [ 21.621094, -18.229351 ], [ 23.203125, -17.895114 ], [ 23.554688, -18.312811 ], [ 24.257812, -17.895114 ], [ 25.048828, -17.644022 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.443359, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.673828, -22.187405 ], [ 31.201172, -22.268764 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.878994 ], [ 31.376953, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.431228 ], [ 30.673828, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.904297, -27.215556 ], [ 32.080078, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.431641, -28.304381 ], [ 32.167969, -28.767659 ], [ 31.289062, -29.382175 ], [ 30.058594, -31.128199 ], [ 28.916016, -32.175612 ], [ 27.421875, -33.211116 ], [ 26.455078, -33.651208 ], [ 25.927734, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.797409 ], [ 24.697266, -34.016242 ], [ 23.554688, -33.797409 ], [ 23.027344, -33.943360 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.452218 ], [ 20.039062, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.896484, -34.452218 ], [ 18.457031, -34.016242 ], [ 18.369141, -34.161818 ], [ 18.281250, -33.870416 ], [ 18.281250, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.281250, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.347656, -28.613459 ], [ 16.787109, -28.071980 ], [ 17.226562, -28.381735 ], [ 17.402344, -28.767659 ], [ 18.457031, -29.075375 ], [ 18.984375, -28.998532 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.926295 ], [ 20.742188, -25.878994 ], [ 20.654297, -26.509905 ], [ 20.917969, -26.824071 ], [ 21.621094, -26.745610 ], [ 22.587891, -25.958045 ], [ 22.851562, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 25.048828, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.158203, -23.563987 ], [ 28.037109, -22.836946 ], [ 29.443359, -22.105999 ] ], [ [ 28.564453, -28.613459 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.773438, -30.675715 ], [ 28.125000, -30.524413 ], [ 28.300781, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.355469, -29.228890 ], [ 28.564453, -28.613459 ] ] ] } } , { "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.376953, -25.641526 ], [ 31.816406, -25.878994 ], [ 32.080078, -26.745610 ], [ 31.904297, -27.215556 ], [ 31.289062, -27.293689 ], [ 30.673828, -26.745610 ], [ 30.673828, -26.431228 ], [ 31.025391, -25.720735 ], [ 31.376953, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.443359, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.673828, -22.187405 ], [ 31.201172, -22.268764 ], [ 31.904297, -24.367114 ], [ 31.728516, -25.482951 ], [ 31.816406, -25.878994 ], [ 31.376953, -25.641526 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.431228 ], [ 30.673828, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.904297, -27.215556 ], [ 32.080078, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.431641, -28.304381 ], [ 32.167969, -28.767659 ], [ 31.289062, -29.382175 ], [ 30.058594, -31.128199 ], [ 28.916016, -32.175612 ], [ 27.421875, -33.211116 ], [ 26.455078, -33.651208 ], [ 25.927734, -33.651208 ], [ 25.751953, -33.943360 ], [ 25.136719, -33.797409 ], [ 24.697266, -34.016242 ], [ 23.554688, -33.797409 ], [ 23.027344, -33.943360 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.234512 ], [ 20.654297, -34.452218 ], [ 20.039062, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.160156, -34.452218 ], [ 18.896484, -34.452218 ], [ 18.457031, -34.016242 ], [ 18.369141, -34.161818 ], [ 18.281250, -33.870416 ], [ 18.281250, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.281250, -32.398516 ], [ 18.193359, -31.653381 ], [ 16.347656, -28.613459 ], [ 16.787109, -28.071980 ], [ 17.226562, -28.381735 ], [ 17.402344, -28.767659 ], [ 18.457031, -29.075375 ], [ 18.984375, -28.998532 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.126953, -24.926295 ], [ 20.742188, -25.878994 ], [ 20.654297, -26.509905 ], [ 20.917969, -26.824071 ], [ 21.621094, -26.745610 ], [ 22.587891, -25.958045 ], [ 22.851562, -25.482951 ], [ 23.291016, -25.244696 ], [ 24.169922, -25.641526 ], [ 25.048828, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.927734, -24.686952 ], [ 26.455078, -24.607069 ], [ 27.158203, -23.563987 ], [ 28.037109, -22.836946 ], [ 29.443359, -22.105999 ] ], [ [ 28.564453, -28.613459 ], [ 27.509766, -29.228890 ], [ 26.982422, -29.840644 ], [ 27.773438, -30.675715 ], [ 28.125000, -30.524413 ], [ 28.300781, -30.221102 ], [ 28.828125, -30.069094 ], [ 29.355469, -29.228890 ], [ 28.564453, -28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.564453, -28.613459 ], [ 29.355469, -29.228890 ], [ 28.828125, -30.069094 ], [ 28.300781, -30.221102 ], [ 28.125000, -30.524413 ], [ 27.773438, -30.675715 ], [ 26.982422, -29.840644 ], [ 27.509766, -29.228890 ], [ 28.564453, -28.613459 ] ] ] } } , { "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.632909 ], [ 69.609375, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.576172, -49.267805 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.267805 ], [ 68.906250, -48.632909 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 125.068359, -9.362353 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.401378 ], [ 123.486328, -10.228437 ], [ 123.574219, -9.882275 ], [ 124.013672, -9.275622 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.322266, -10.228437 ], [ 119.003906, -9.535749 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 136.318359, -2.284551 ], [ 137.460938, -1.669686 ], [ 138.339844, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 139.130859, -8.059230 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 138.076172, -7.623887 ], [ 138.691406, -7.362467 ], [ 138.427734, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.513421 ], [ 133.330078, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.714844, -3.776559 ], [ 132.714844, -3.337954 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.957031, -1.406109 ], [ 130.517578, -0.966751 ], [ 131.835938, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.300781, -8.320212 ], [ 118.916016, -8.320212 ], [ 119.091797, -8.667918 ], [ 117.246094, -9.015302 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.494105 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.783203, -8.667918 ], [ 121.289062, -8.928487 ], [ 119.882812, -8.841651 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.376953, -8.494105 ], [ 121.992188, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.083984, -5.878332 ], [ 107.226562, -5.965754 ], [ 108.457031, -6.402648 ], [ 108.632812, -6.751896 ], [ 110.566406, -6.839170 ], [ 110.742188, -6.489983 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.623887 ], [ 114.521484, -7.798079 ], [ 115.664062, -8.407168 ], [ 114.521484, -8.754795 ], [ 113.466797, -8.320212 ], [ 111.533203, -8.320212 ], [ 108.720703, -7.623887 ], [ 108.281250, -7.798079 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.083984, -5.878332 ] ] ], [ [ [ 116.982422, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 117.509766, 0.087891 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.460181 ], [ 116.191406, -4.039618 ], [ 116.015625, -3.688855 ], [ 114.873047, -4.127285 ], [ 114.433594, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.291016, -3.162456 ], [ 112.060547, -3.513421 ], [ 111.708984, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.599609, -1.318243 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.439449 ], [ 109.072266, 1.318243 ], [ 109.687500, 2.021065 ], [ 109.863281, 1.318243 ], [ 110.478516, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.878872 ], [ 112.412109, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.136719, 2.811371 ], [ 115.488281, 3.162456 ], [ 115.839844, 4.302591 ], [ 116.982422, 4.302591 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.527336 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.372369 ], [ 105.644531, -2.460181 ], [ 106.083984, -3.074695 ], [ 105.820312, -4.302591 ], [ 105.820312, -5.878332 ], [ 104.677734, -5.878332 ], [ 103.886719, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.425781, -2.811371 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.175781 ], [ 98.613281, 1.845384 ], [ 97.734375, 2.460181 ], [ 97.207031, 3.337954 ], [ 96.416016, 3.864255 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.736328, -5.703448 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.926427 ], [ 134.121094, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 125.068359, 1.669686 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.966751 ], [ 122.431641, -1.493971 ], [ 121.464844, -1.933227 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.695312, -4.477856 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.640625, -4.214943 ], [ 120.937500, -3.601142 ], [ 120.937500, -2.635789 ], [ 120.322266, -2.899153 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.703448 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.477856 ], [ 119.531250, -3.513421 ], [ 119.091797, -3.513421 ], [ 118.740234, -2.811371 ], [ 119.179688, -2.108899 ], [ 119.355469, -1.318243 ], [ 120.058594, 0.527336 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.958984, 0.878872 ], [ 124.101562, 0.878872 ], [ 125.068359, 1.669686 ] ] ], [ [ [ 127.968750, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.671875, 0.263671 ], [ 128.144531, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.408203, -0.790990 ], [ 128.056641, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.441406, 1.054628 ], [ 127.617188, 1.845384 ], [ 127.968750, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.869141, -3.864255 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.425692 ], [ 128.144531, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.162456 ], [ 127.265625, -3.425692 ], [ 126.914062, -3.776559 ], [ 126.210938, -3.601142 ], [ 125.947266, -3.162456 ], [ 127.001953, -3.162456 ] ] ] ] } } +, { "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.914062, -8.233237 ], [ 127.353516, -8.407168 ], [ 127.001953, -8.667918 ], [ 125.068359, -9.362353 ], [ 124.980469, -8.928487 ], [ 125.068359, -8.667918 ], [ 126.914062, -8.233237 ] ] ] } } , { "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.755859, -40.713956 ], [ 145.371094, -40.780541 ], [ 146.337891, -41.112469 ], [ 147.656250, -40.780541 ], [ 148.271484, -40.847060 ], [ 148.359375, -42.032974 ], [ 148.007812, -42.423457 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.074219, -43.580391 ], [ 145.458984, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.755859, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 142.558594, -10.660608 ], [ 142.822266, -11.178402 ], [ 142.910156, -11.781325 ], [ 143.085938, -11.867351 ], [ 143.173828, -12.297068 ], [ 143.525391, -12.811801 ], [ 143.525391, -13.752725 ], [ 143.964844, -14.519780 ], [ 144.580078, -14.179186 ], [ 145.371094, -14.944785 ], [ 145.283203, -15.453680 ], [ 145.458984, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.727759 ], [ 146.074219, -18.312811 ], [ 146.425781, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.886719, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.326172, -21.289374 ], [ 149.677734, -22.350076 ], [ 150.117188, -22.105999 ], [ 150.468750, -22.593726 ], [ 150.732422, -22.431340 ], [ 150.908203, -23.483401 ], [ 152.841797, -25.244696 ], [ 153.105469, -26.037042 ], [ 153.105469, -27.293689 ], [ 153.544922, -28.071980 ], [ 153.544922, -28.998532 ], [ 153.105469, -30.372875 ], [ 153.105469, -30.902225 ], [ 152.929688, -31.653381 ], [ 152.490234, -32.546813 ], [ 151.699219, -33.063924 ], [ 150.996094, -34.307144 ], [ 150.117188, -36.385913 ], [ 150.029297, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.271484, -37.788081 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.458984, -38.616870 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.926868 ], [ 144.492188, -38.065392 ], [ 143.613281, -38.822591 ], [ 140.625000, -37.996163 ], [ 140.009766, -37.370157 ], [ 139.570312, -36.173357 ], [ 139.042969, -35.746512 ], [ 138.164062, -35.603719 ], [ 138.427734, -35.101934 ], [ 138.164062, -34.379713 ], [ 137.724609, -35.101934 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.741612 ], [ 137.460938, -34.161818 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 137.021484, -33.724340 ], [ 136.406250, -34.089061 ], [ 135.966797, -34.885931 ], [ 135.175781, -34.452218 ], [ 135.263672, -33.943360 ], [ 134.648438, -33.211116 ], [ 134.121094, -32.842674 ], [ 134.296875, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.952162 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.249974 ], [ 126.123047, -32.249974 ], [ 125.068359, -32.694866 ], [ 124.189453, -32.990236 ], [ 124.013672, -33.504759 ], [ 123.662109, -33.870416 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.797409 ], [ 119.882812, -33.943360 ], [ 119.267578, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.048828, -34.161818 ], [ 115.048828, -33.651208 ], [ 115.576172, -33.504759 ], [ 115.751953, -33.284620 ], [ 115.839844, -32.175612 ], [ 115.664062, -31.578535 ], [ 114.960938, -29.993002 ], [ 115.048828, -29.458731 ], [ 114.609375, -28.844674 ], [ 114.609375, -28.536275 ], [ 114.169922, -28.149503 ], [ 114.082031, -27.371767 ], [ 113.466797, -26.509905 ], [ 113.378906, -26.115986 ], [ 113.818359, -26.509905 ], [ 113.466797, -25.641526 ], [ 113.906250, -25.878994 ], [ 114.257812, -26.273714 ], [ 114.257812, -25.799891 ], [ 113.378906, -24.367114 ], [ 113.818359, -23.079732 ], [ 113.730469, -22.512557 ], [ 114.169922, -21.779905 ], [ 114.257812, -22.512557 ], [ 114.609375, -21.861499 ], [ 115.488281, -21.534847 ], [ 115.927734, -21.043491 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.715015 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.303418 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.642588 ], [ 121.376953, -19.228177 ], [ 121.640625, -18.729502 ], [ 122.255859, -18.229351 ], [ 122.343750, -17.224758 ], [ 123.046875, -16.383391 ], [ 123.398438, -17.308688 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.636192 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.299051 ], [ 124.365234, -15.538376 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.264383 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.089844, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.320312, -14.859850 ], [ 129.638672, -14.944785 ], [ 129.375000, -14.434680 ], [ 129.902344, -13.581921 ], [ 130.341797, -13.325485 ], [ 130.166016, -13.068777 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.211180 ], [ 131.748047, -12.297068 ], [ 132.539062, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.092166 ], [ 132.978516, -11.350797 ], [ 133.593750, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.648438, -11.953349 ], [ 135.263672, -12.211180 ], [ 135.878906, -11.953349 ], [ 136.230469, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.382928 ], [ 136.318359, -13.325485 ], [ 135.966797, -13.325485 ], [ 136.054688, -13.752725 ], [ 135.439453, -14.689881 ], [ 135.527344, -15.029686 ], [ 136.318359, -15.538376 ], [ 137.021484, -15.876809 ], [ 138.339844, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.130859, -17.056785 ], [ 139.218750, -17.392579 ], [ 140.185547, -17.727759 ], [ 140.888672, -17.392579 ], [ 141.240234, -16.383391 ], [ 141.679688, -15.029686 ], [ 141.503906, -13.667338 ], [ 141.679688, -12.983148 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.382928 ], [ 142.119141, -11.005904 ], [ 142.558594, -10.660608 ] ] ] ] } } diff --git a/tests/ne_110m_populated_places/out/-yNAME.json b/tests/ne_110m_populated_places/out/-yNAME.json index 88ebc2843..440b223b8 100644 --- a/tests/ne_110m_populated_places/out/-yNAME.json +++ b/tests/ne_110m_populated_places/out/-yNAME.json @@ -10179,7 +10179,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1556, "y": 2316 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226974, -22.923081 ] } } +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226953, -22.923081 ] } } ] } ] } , @@ -10809,7 +10809,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 2403, "y": 1689 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248014, 30.051897 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248035, 30.051897 ] } } ] } ] } , @@ -13365,7 +13365,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 6224, "y": 9264 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226969, -22.923076 ] } } +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.226963, -22.923076 ] } } ] } ] } , @@ -14007,7 +14007,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 14, "x": 9614, "y": 6756 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248019, 30.051906 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248025, 30.051906 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json index 1cd47c883..99f4ad7f8 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":213},{\"dropped_by_rate\":135},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":261},{\"dropped_by_rate\":241},{\"dropped_by_rate\":218},{\"dropped_by_rate\":139},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -27,7 +27,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.509833 ] } } +{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } ] } , @@ -36,6 +36,8 @@ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } ] } , @@ -43,9 +45,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } ] } ] } , @@ -55,7 +55,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } ] } ] } , @@ -77,8 +79,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } -, { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.220215, -22.917923 ] } } ] } ] } @@ -89,9 +89,11 @@ , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , +{ "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.923554 ] } } , -{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } +{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } ] } , @@ -99,9 +101,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -111,9 +111,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } ] } @@ -162,12 +162,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } ] } ] } , @@ -177,11 +171,13 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.761475, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } ] } ] } , @@ -200,16 +196,12 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.680420, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavík" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.680420, 40.396764 ] } } ] } ] } , @@ -217,9 +209,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , +{ "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.238525, -8.841651 ] } } +, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -229,7 +223,7 @@ , { "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } ] } ] } , @@ -239,15 +233,17 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } , -{ "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } ] } ] } , @@ -255,15 +251,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } -, { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.556757 ] } } , { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -271,9 +263,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } , -{ "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } -, { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } ] } ] } , @@ -289,9 +281,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +{ "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.555380 ] } } , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } @@ -313,8 +305,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } -, { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.853252 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } @@ -327,9 +317,9 @@ , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } ] } ] } , @@ -389,11 +379,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } +, { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.083862, 9.936388 ] } } , { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.766968, 17.973508 ] } } , { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.598327 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } ] } , @@ -402,8 +396,6 @@ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.829357 ] } } , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.349243, 25.080624 ] } } ] } ] } , @@ -433,9 +425,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.847534, 17.114543 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } ] } ] } , @@ -455,7 +449,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } +{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } @@ -466,16 +460,12 @@ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146118, 38.724090 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685913, 40.400948 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.334153 ] } } -, -{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.115356, 51.501904 ] } } ] } ] } , @@ -488,8 +478,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -499,7 +487,7 @@ , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.233032, -8.836223 ] } } ] } ] } , @@ -514,8 +502,6 @@ { "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.620239, 6.484525 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -531,13 +517,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } +{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , { "type": "Feature", "properties": { "NAME": "København" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.385620, 43.850374 ] } } ] } ] } , @@ -561,10 +545,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } , { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.284302, -15.416615 ] } } , +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } ] } ] } @@ -573,7 +559,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.331870 ] } } +{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } ] } ] } , @@ -581,11 +567,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } ] } , @@ -613,6 +599,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , +{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +, { "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } @@ -656,8 +644,6 @@ { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } , { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.717573 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -667,6 +653,8 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } , +{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } +, { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } @@ -695,8 +683,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } -, { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } @@ -718,8 +704,6 @@ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan" }, "geometry": { "type": "Point", "coordinates": [ 114.933472, 4.882994 ] } } ] } ] } , @@ -727,9 +711,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.930801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.304344 ] } } +{ "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -757,7 +743,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kyoto" }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.751587, 35.684072 ] } } ] } ] } , @@ -780,8 +766,6 @@ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.316040, -17.732991 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } ] } ] } , @@ -789,8 +773,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } -, { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } diff --git a/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json b/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json index 5b2718c33..ee587ebe6 100644 --- a/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json +++ b/tests/pointlm/out/-z15_-Z15_--drop-smallest-as-needed_-M300.json @@ -135,7 +135,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8378, "y": 12647 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431120", "POINTID": "1102654007706", "FULLNAME": "Black Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.951138, 37.929210 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431120", "POINTID": "1102654007706", "FULLNAME": "Black Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.951138, 37.929208 ] } } ] } ] } , @@ -401,7 +401,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8387, "y": 12607 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437010", "POINTID": "1102653985465", "FULLNAME": "Jimtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.853085, 38.273099 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437010", "POINTID": "1102653985465", "FULLNAME": "Jimtown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.853085, 38.273097 ] } } ] } ] } , @@ -413,7 +413,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8388, "y": 12639 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442566", "POINTID": "1102654018949", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.836415, 37.996985 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442566", "POINTID": "1102654018949", "FULLNAME": "Saint Johns Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.836412, 37.996985 ] } } ] } ] } , @@ -897,7 +897,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8402, "y": 12608 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440801", "POINTID": "1102653994322", "FULLNAME": "Owensville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.687802, 38.271987 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440801", "POINTID": "1102653994322", "FULLNAME": "Owensville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.687802, 38.271985 ] } } ] } ] } , @@ -1267,7 +1267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8411, "y": 12616 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475931074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.592130, 38.201866 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108475931074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.592127, 38.201866 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103728585158", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.586342, 38.203107 ] } } ] } @@ -1681,7 +1681,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12587 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439457", "POINTID": "1102654016250", "FULLNAME": "Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.559190, 38.446711 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439457", "POINTID": "1102654016250", "FULLNAME": "Morrison Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.559190, 38.446709 ] } } ] } ] } , @@ -1693,7 +1693,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8414, "y": 12509 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435374", "POINTID": "1102653981483", "FULLNAME": "Graysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.556135, 39.117540 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435374", "POINTID": "1102653981483", "FULLNAME": "Graysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.556135, 39.117538 ] } } ] } ] } , @@ -2005,7 +2005,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12628 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522210, 38.098723 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11013782230240", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522207, 38.098723 ] } } ] } ] } , @@ -2053,7 +2053,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12562 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113808708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.520687, 38.664454 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113808708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.520687, 38.664452 ] } } ] } ] } , @@ -2101,7 +2101,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12488 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350989778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522258, 39.293111 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350989778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522258, 39.293109 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445552", "POINTID": "1102654021570", "FULLNAME": "Watson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.523358, 39.291704 ] } } ] } @@ -2109,7 +2109,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12452 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437848", "POINTID": "1102653987959", "FULLNAME": "Libertyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.518635, 39.602812 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437848", "POINTID": "1102653987959", "FULLNAME": "Libertyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.518632, 39.602812 ] } } ] } ] } , @@ -2289,7 +2289,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8417, "y": 12223 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522706, 41.515952 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045961740", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.522704, 41.515952 ] } } ] } ] } , @@ -2483,7 +2483,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12383 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439492", "POINTID": "1102654016285", "FULLNAME": "Mosonic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506959, 40.184478 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439492", "POINTID": "1102654016285", "FULLNAME": "Mosonic Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.506956, 40.184478 ] } } ] } ] } , @@ -2595,7 +2595,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8418, "y": 12224 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515049, 41.502585 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045962247", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.515046, 41.502585 ] } } ] } ] } , @@ -3613,7 +3613,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12421 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445436", "POINTID": "1102654021506", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.476406, 39.862258 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445436", "POINTID": "1102654021506", "FULLNAME": "Walnut Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.476406, 39.862255 ] } } ] } ] } , @@ -3661,7 +3661,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8421, "y": 12233 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718660491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483688, 41.431560 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718660491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.483688, 41.431558 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.479767, 41.427092 ] } } , @@ -3861,7 +3861,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12520 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440913", "POINTID": "1102654017673", "FULLNAME": "Parson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462523, 39.020874 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440913", "POINTID": "1102654017673", "FULLNAME": "Parson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462520, 39.020874 ] } } ] } ] } , @@ -3907,7 +3907,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12455 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110351476062", "FULLNAME": "Fayette Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.465422, 39.579941 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110351476062", "FULLNAME": "Fayette Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -87.465420, 39.579941 ] } } ] } ] } , @@ -4055,7 +4055,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8422, "y": 12231 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040148", "POINTID": "1102654018942", "FULLNAME": "Saint John Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.470873, 41.448647 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040148", "POINTID": "1102654018942", "FULLNAME": "Saint John Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.470873, 41.448645 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435578", "POINTID": "1102654013022", "FULLNAME": "Hack Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.462815, 41.442813 ] } } ] } @@ -4347,7 +4347,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155884", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.458787, 41.365669 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.456201, 41.367715 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.456201, 41.367713 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451089, 41.363367 ] } } ] } @@ -4407,7 +4407,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047043207", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.459339, 41.462701 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718651045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.453935, 41.460584 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103718651045", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.453935, 41.460582 ] } } ] } ] } , @@ -4497,7 +4497,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8423, "y": 12208 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433875", "POINTID": "1102653976748", "FULLNAME": "East Chicago", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454753, 41.639228 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433875", "POINTID": "1102653976748", "FULLNAME": "East Chicago", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.454753, 41.639226 ] } } ] } ] } , @@ -4785,7 +4785,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11025367155776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451089, 41.363367 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432282", "POINTID": "1102653971933", "FULLNAME": "Cedar Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.441146, 41.364758 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432282", "POINTID": "1102653971933", "FULLNAME": "Cedar Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.441146, 41.364756 ] } } ] } ] } , @@ -4805,7 +4805,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12237 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449308, 41.396876 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449308, 41.396874 ] } } ] } ] } , @@ -4873,7 +4873,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12221 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449973, 41.532537 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270756901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449970, 41.532537 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270759340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443458, 41.531218 ] } } ] } @@ -4883,7 +4883,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270778104", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.451207, 41.535682 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270782761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449973, 41.534824 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270782761", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.449970, 41.534824 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270799067", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.443911, 41.534453 ] } } ] } @@ -4927,7 +4927,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8424, "y": 12204 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089586", "FULLNAME": "Indiana Harbor", "MTFCC": "K1225" }, "geometry": { "type": "Point", "coordinates": [ -87.445247, 41.667504 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110272089586", "FULLNAME": "Indiana Harbor", "MTFCC": "K1225" }, "geometry": { "type": "Point", "coordinates": [ -87.445247, 41.667502 ] } } ] } ] } , @@ -4949,7 +4949,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103735090288", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436857, 37.976323 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959761", "FULLNAME": "East Lincoln Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.437176, 37.970887 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103734959761", "FULLNAME": "East Lincoln Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.437173, 37.970887 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110352422613", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.429398, 37.972473 ] } } ] } @@ -4975,7 +4975,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12627 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438045", "POINTID": "1102653953171", "FULLNAME": "Little Ditney Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.432509, 38.106234 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438045", "POINTID": "1102653953171", "FULLNAME": "Little Ditney Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -87.432506, 38.106234 ] } } ] } ] } , @@ -5137,7 +5137,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8425, "y": 12321 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446373", "POINTID": "1102654003419", "FULLNAME": "Yeagers Curve", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.439188, 40.698647 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446373", "POINTID": "1102654003419", "FULLNAME": "Yeagers Curve", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.439188, 40.698645 ] } } ] } ] } , @@ -5165,7 +5165,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270669557", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.436701, 41.293918 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.431758, 41.292177 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047477498", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.431758, 41.292175 ] } } ] } ] } , @@ -5471,7 +5471,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441355", "POINTID": "1102654017974", "FULLNAME": "Pleasantview Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.425576, 39.561145 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444612", "POINTID": "1102654000389", "FULLNAME": "Tecumseh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.421689, 39.563091 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444612", "POINTID": "1102654000389", "FULLNAME": "Tecumseh", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.421686, 39.563091 ] } } ] } ] } , @@ -5571,7 +5571,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12235 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.418843, 41.416555 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047491354", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.418843, 41.416553 ] } } ] } ] } , @@ -5657,7 +5657,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8426, "y": 12213 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436860", "POINTID": "1102653985145", "FULLNAME": "Ivanhoe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.424484, 41.597814 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436860", "POINTID": "1102653985145", "FULLNAME": "Ivanhoe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.424484, 41.597812 ] } } ] } ] } , @@ -5831,7 +5831,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496500676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.416845, 39.380792 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350980446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411523, 39.383601 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110350980446", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.411523, 39.383599 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102642369172", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.408493, 39.378713 ] } } , @@ -5893,7 +5893,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12443 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434349", "POINTID": "1102653978351", "FULLNAME": "Fairview Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417518, 39.680313 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434349", "POINTID": "1102653978351", "FULLNAME": "Fairview Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.417518, 39.680311 ] } } ] } ] } , @@ -5997,7 +5997,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8427, "y": 12241 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047480492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415992, 41.361043 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047480492", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.415992, 41.361041 ] } } ] } ] } , @@ -6251,7 +6251,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103548844698", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.405124, 39.374759 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.403911, 39.372099 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048131577", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.403909, 39.372099 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048128205", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399896, 39.372936 ] } } ] } @@ -6383,7 +6383,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270680365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.399622, 41.294406 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270684007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401806, 41.291762 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270684007", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401803, 41.291762 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270683979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.401688, 41.288602 ] } } ] } @@ -6815,7 +6815,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436148", "POINTID": "1102653983538", "FULLNAME": "Highland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395849, 39.794480 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439358", "POINTID": "1102653991252", "FULLNAME": "Montezuma Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386684, 39.795037 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439358", "POINTID": "1102653991252", "FULLNAME": "Montezuma Sta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.386684, 39.795035 ] } } ] } ] } , @@ -6845,7 +6845,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12389 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496554575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393062, 40.132833 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015496554575", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.393062, 40.132830 ] } } ] } ] } , @@ -6929,7 +6929,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.394304, 41.412355 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040004", "POINTID": "1102653961469", "FULLNAME": "Oak Knoll Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.388926, 41.416979 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040004", "POINTID": "1102653961469", "FULLNAME": "Oak Knoll Golf Course", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.388923, 41.416979 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315648662", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.390085, 41.409824 ] } } ] } @@ -6979,7 +6979,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8429, "y": 12228 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396417, 41.469585 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047291960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.396417, 41.469583 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02040007", "POINTID": "1102653961818", "FULLNAME": "Pine Island Plaza Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.395873, 41.473371 ] } } , @@ -7477,7 +7477,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12224 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391584882", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375815, 41.505892 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102391584882", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.375815, 41.505890 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109096916152", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.374713, 41.501698 ] } } ] } @@ -7485,7 +7485,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8430, "y": 12221 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442317", "POINTID": "1102654018698", "FULLNAME": "Ross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.383647, 41.527815 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442317", "POINTID": "1102654018698", "FULLNAME": "Ross Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.383647, 41.527813 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442314", "POINTID": "1102653997070", "FULLNAME": "Ross", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.374758, 41.526702 ] } } ] } @@ -7537,7 +7537,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8431, "y": 12641 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.366980, 37.986642 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046592599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.366977, 37.986642 ] } } ] } ] } , @@ -7561,7 +7561,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010887054493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.365958, 38.013144 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732831854", "FULLNAME": "Mill Creek Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370035, 38.004771 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732831854", "FULLNAME": "Mill Creek Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.370032, 38.004771 ] } } ] } ] } , @@ -7813,7 +7813,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450293", "POINTID": "1102653959806", "FULLNAME": "Lake County Fairground", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.369480, 41.401425 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292776", "FULLNAME": "St Anthony Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.365440, 41.393512 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292776", "FULLNAME": "St Anthony Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.365438, 41.393512 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108315746629", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.363093, 41.397932 ] } } ] } @@ -7955,7 +7955,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12640 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944422142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358539, 37.991333 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944422142", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.358539, 37.991331 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103944422141", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356493, 37.991318 ] } } ] } @@ -8107,7 +8107,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12470 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471755360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362587, 39.452320 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471755360", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.362587, 39.452318 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015497305777", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.356173, 39.445274 ] } } ] } @@ -8279,7 +8279,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476478543", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.361052, 41.379874 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598498406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.355597, 41.383146 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105598498406", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.355597, 41.383144 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795369", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.353258, 41.379765 ] } } ] } @@ -8287,7 +8287,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8432, "y": 12238 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443251", "POINTID": "1102653998104", "FULLNAME": "Shady Lawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354789, 41.393041 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443251", "POINTID": "1102653998104", "FULLNAME": "Shady Lawn", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.354787, 41.393041 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270790737", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.352783, 41.384980 ] } } ] } @@ -8659,7 +8659,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8433, "y": 12268 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.351002, 41.142300 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.350999, 41.142300 ] } } ] } ] } , @@ -8687,7 +8687,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270795379", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.344356, 41.382872 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346287, 41.377529 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270781590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.346287, 41.377527 ] } } ] } ] } , @@ -8981,7 +8981,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12467 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311959704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.333554, 39.477833 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108311959704", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.333554, 39.477831 ] } } ] } ] } , @@ -9033,7 +9033,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12430 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437382", "POINTID": "1102653986331", "FULLNAME": "Klondyke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.339182, 39.791148 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437382", "POINTID": "1102653986331", "FULLNAME": "Klondyke", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.339182, 39.791146 ] } } ] } ] } , @@ -9201,13 +9201,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12215 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340356, 41.582712 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340354, 41.582712 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8434, "y": 12214 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340356, 41.582712 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104474288189", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.340354, 41.582712 ] } } ] } ] } , @@ -9543,7 +9543,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8436, "y": 12627 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445689", "POINTID": "1102654021664", "FULLNAME": "Wesley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.314173, 38.105878 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445689", "POINTID": "1102654021664", "FULLNAME": "Wesley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.314173, 38.105876 ] } } ] } ] } , @@ -9707,7 +9707,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270789562", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.319424, 41.451766 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.317171, 41.454992 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270792176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.317169, 41.454992 ] } } ] } ] } , @@ -9941,7 +9941,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8437, "y": 12437 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431434", "POINTID": "1102653969169", "FULLNAME": "Bradfield Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.298906, 39.732260 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431434", "POINTID": "1102653969169", "FULLNAME": "Bradfield Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.298903, 39.732260 ] } } ] } ] } , @@ -10357,7 +10357,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8438, "y": 12308 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441014", "POINTID": "1102653994720", "FULLNAME": "Percy Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.296687, 40.809203 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441014", "POINTID": "1102653994720", "FULLNAME": "Percy Junction", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.296685, 40.809203 ] } } ] } ] } , @@ -10485,7 +10485,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12604 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432756", "POINTID": "1102654010269", "FULLNAME": "Coleman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280841, 38.299214 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432756", "POINTID": "1102654010269", "FULLNAME": "Coleman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.280841, 38.299212 ] } } ] } ] } , @@ -10503,7 +10503,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8439, "y": 12586 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437033", "POINTID": "1102654014238", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.276957, 38.456991 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437033", "POINTID": "1102654014238", "FULLNAME": "Johnson Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.276954, 38.456991 ] } } ] } ] } , @@ -10671,7 +10671,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346936407", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.282295, 41.160799 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.278679, 41.160731 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110346937514", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.278676, 41.160731 ] } } ] } ] } , @@ -10865,7 +10865,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329196672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.273602, 41.150326 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329196627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.267956, 41.152837 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110329196627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.267956, 41.152835 ] } } ] } ] } , @@ -10965,7 +10965,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12640 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440986", "POINTID": "1102653994626", "FULLNAME": "Pelzer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257227, 37.989210 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440986", "POINTID": "1102653994626", "FULLNAME": "Pelzer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.257224, 37.989210 ] } } ] } ] } , @@ -11075,7 +11075,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12485 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433633", "POINTID": "1102654011386", "FULLNAME": "Donham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.256685, 39.319761 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433633", "POINTID": "1102654011386", "FULLNAME": "Donham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.256685, 39.319759 ] } } ] } ] } , @@ -11147,13 +11147,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12352 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447084 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447082 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12351 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447084 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471641684", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258388, 40.447082 ] } } ] } ] } , @@ -11193,7 +11193,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047492164", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.261910, 41.423532 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450285", "POINTID": "1102654011191", "FULLNAME": "Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258367, 41.422257 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450285", "POINTID": "1102654011191", "FULLNAME": "Deer Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.258364, 41.422257 ] } } ] } ] } , @@ -11217,7 +11217,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12224 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.254660, 41.503953 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046957055", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.254657, 41.503953 ] } } ] } ] } , @@ -11253,7 +11253,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8441, "y": 12219 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258737, 41.545611 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270753409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.258734, 41.545611 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110270736633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.256918, 41.544210 ] } } ] } @@ -11371,7 +11371,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8442, "y": 12455 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434631", "POINTID": "1102653979309", "FULLNAME": "Fontanet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243628, 39.576149 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434631", "POINTID": "1102653979309", "FULLNAME": "Fontanet", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.243628, 39.576147 ] } } ] } ] } , @@ -11809,7 +11809,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8443, "y": 12357 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432436", "POINTID": "1102653972520", "FULLNAME": "Chatterton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239731, 40.403646 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432436", "POINTID": "1102653972520", "FULLNAME": "Chatterton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.239731, 40.403644 ] } } ] } ] } , @@ -12157,7 +12157,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047288236", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.230034, 41.421617 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.221207, 41.419509 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045976474", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.221207, 41.419507 ] } } ] } ] } , @@ -12205,7 +12205,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482822", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.225266, 41.540249 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.222516, 41.537203 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047482786", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.222516, 41.537201 ] } } ] } ] } , @@ -12313,13 +12313,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12462 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435768", "POINTID": "1102654013170", "FULLNAME": "Harpold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.214464, 39.520593 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435768", "POINTID": "1102654013170", "FULLNAME": "Harpold Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.214462, 39.520593 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12454 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449640", "POINTID": "1102653973247", "FULLNAME": "Coal Blf", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.220016, 39.582816 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449640", "POINTID": "1102653973247", "FULLNAME": "Coal Blf", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.220016, 39.582814 ] } } ] } ] } , @@ -12397,7 +12397,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8445, "y": 12263 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865944653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213166, 41.179082 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010865944653", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.213163, 41.179082 ] } } ] } ] } , @@ -13531,7 +13531,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12218 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633955206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186902, 41.552821 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633955206", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.186899, 41.552821 ] } } ] } ] } , @@ -13585,7 +13585,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8448, "y": 12211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608369 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608367 ] } } ] } ] } , @@ -13901,7 +13901,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8449, "y": 12211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608369 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292415", "FULLNAME": "Midwest Steel Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -87.176420, 41.608367 ] } } ] } ] } , @@ -14107,7 +14107,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8450, "y": 12293 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445849", "POINTID": "1102654021765", "FULLNAME": "Weston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161410, 40.936148 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445849", "POINTID": "1102654021765", "FULLNAME": "Weston Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.161410, 40.936146 ] } } ] } ] } , @@ -14207,7 +14207,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137185632", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.160050, 41.588538 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633244380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.157859, 41.589978 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102633244380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.157859, 41.589976 ] } } ] } ] } , @@ -14377,7 +14377,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12422 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430860", "POINTID": "1102653967849", "FULLNAME": "Bethany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147232, 39.854207 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430860", "POINTID": "1102653967849", "FULLNAME": "Bethany", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.147232, 39.854205 ] } } ] } ] } , @@ -14439,7 +14439,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8451, "y": 12314 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441891", "POINTID": "1102653996297", "FULLNAME": "Remington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150850, 40.760870 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441891", "POINTID": "1102653996297", "FULLNAME": "Remington", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.150848, 40.760870 ] } } ] } ] } , @@ -14515,7 +14515,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969876", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.148887, 41.459280 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.150373, 41.458952 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.150370, 41.458952 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046969713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.149708, 41.454307 ] } } , @@ -14999,7 +14999,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12356 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433347", "POINTID": "1102654011155", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.123065, 40.405588 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433347", "POINTID": "1102654011155", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.123063, 40.405588 ] } } ] } ] } , @@ -15011,7 +15011,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8453, "y": 12296 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446689", "POINTID": "1102653998818", "FULLNAME": "South Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.126407, 40.912538 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446689", "POINTID": "1102653998818", "FULLNAME": "South Marion", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.126407, 40.912536 ] } } ] } ] } , @@ -15393,7 +15393,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8454, "y": 12247 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430366", "POINTID": "1102653966187", "FULLNAME": "Aylesworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.113358, 41.318369 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430366", "POINTID": "1102653966187", "FULLNAME": "Aylesworth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.113358, 41.318367 ] } } ] } ] } , @@ -15479,7 +15479,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12650 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441904", "POINTID": "1102653996345", "FULLNAME": "Reo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.109442, 37.901434 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441904", "POINTID": "1102653996345", "FULLNAME": "Reo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.109440, 37.901434 ] } } ] } ] } , @@ -15735,7 +15735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047436960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.110228, 41.517288 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437304", "POINTID": "1102654014527", "FULLNAME": "Kimball Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.100030, 41.522537 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437304", "POINTID": "1102654014527", "FULLNAME": "Kimball Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.100030, 41.522535 ] } } ] } ] } , @@ -15765,7 +15765,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8455, "y": 12213 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.101283, 41.598036 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137223106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.101280, 41.598036 ] } } ] } ] } , @@ -15927,13 +15927,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12437 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090605, 39.732647 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090603, 39.732647 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8456, "y": 12436 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090605, 39.732647 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047045558", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.090603, 39.732647 ] } } ] } ] } , @@ -16247,7 +16247,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8457, "y": 12222 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.084664, 41.524867 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485504", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.084661, 41.524867 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047485499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.077433, 41.525070 ] } } ] } @@ -16409,7 +16409,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12544 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048513313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070990, 38.816589 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106048513313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070990, 38.816587 ] } } ] } ] } , @@ -16623,7 +16623,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137189380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.069974, 41.426271 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070797, 41.425775 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183353", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070797, 41.425773 ] } } ] } ] } , @@ -16659,7 +16659,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8458, "y": 12225 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.073442, 41.498070 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479615", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.073442, 41.498068 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047730650", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.070647, 41.497268 ] } } , @@ -16965,7 +16965,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12306 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433588", "POINTID": "1102654011341", "FULLNAME": "Dobbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.059183, 40.826426 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433588", "POINTID": "1102654011341", "FULLNAME": "Dobbins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.059183, 40.826424 ] } } ] } ] } , @@ -17089,7 +17089,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8459, "y": 12213 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063957, 41.598112 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137186385", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063957, 41.598110 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137188128", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.063507, 41.594376 ] } } , @@ -17135,7 +17135,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12653 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442223", "POINTID": "1102653996841", "FULLNAME": "Rockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.049439, 37.883104 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442223", "POINTID": "1102653996841", "FULLNAME": "Rockport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.049439, 37.883102 ] } } ] } ] } , @@ -17259,7 +17259,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12487 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044595, 39.303668 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044592, 39.303668 ] } } ] } ] } , @@ -17385,7 +17385,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12247 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435269", "POINTID": "1102654012711", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048902, 41.317537 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435269", "POINTID": "1102654012711", "FULLNAME": "Graceland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.048902, 41.317535 ] } } ] } ] } , @@ -17489,7 +17489,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8460, "y": 12214 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048309, 41.587051 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137187494", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.048309, 41.587049 ] } } ] } ] } , @@ -17603,7 +17603,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12487 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044595, 39.303668 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436098", "POINTID": "1102653983376", "FULLNAME": "Hickory Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.044592, 39.303668 ] } } ] } ] } , @@ -17621,7 +17621,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8461, "y": 12461 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442152", "POINTID": "1102654018637", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.035572, 39.525596 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442152", "POINTID": "1102654018637", "FULLNAME": "Roberts Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.035569, 39.525596 ] } } ] } ] } , @@ -17973,7 +17973,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12499 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431889", "POINTID": "1102654009010", "FULLNAME": "Bush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.026956, 39.204208 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431889", "POINTID": "1102654009010", "FULLNAME": "Bush Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -87.026954, 39.204208 ] } } ] } ] } , @@ -18091,7 +18091,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12334 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452077", "POINTID": "1102653997130", "FULLNAME": "Round Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.030290, 40.590311 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452077", "POINTID": "1102653997130", "FULLNAME": "Round Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.030288, 40.590311 ] } } ] } ] } , @@ -18167,7 +18167,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12228 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028635, 41.470753 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137183968", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.028635, 41.470751 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047780546", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.025433, 41.473176 ] } } ] } @@ -18187,7 +18187,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8462, "y": 12226 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.031315, 41.489640 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137190979", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.031315, 41.489638 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137182153", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -87.030097, 41.483937 ] } } ] } @@ -18299,7 +18299,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8463, "y": 12532 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440136", "POINTID": "1102653993010", "FULLNAME": "Newberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.019452, 38.925048 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440136", "POINTID": "1102653993010", "FULLNAME": "Newberry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.019452, 38.925045 ] } } ] } ] } , @@ -18729,7 +18729,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8464, "y": 12206 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434907", "POINTID": "1102653980166", "FULLNAME": "Furnessville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.007532, 41.651703 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434907", "POINTID": "1102653980166", "FULLNAME": "Furnessville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -87.007532, 41.651701 ] } } ] } ] } , @@ -19247,7 +19247,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8466, "y": 12214 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047393744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.986898, 41.583127 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047393744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.986895, 41.583127 ] } } ] } ] } , @@ -19385,7 +19385,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12470 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440172", "POINTID": "1102654016876", "FULLNAME": "Nier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.972792, 39.446432 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440172", "POINTID": "1102654016876", "FULLNAME": "Nier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.972792, 39.446430 ] } } ] } ] } , @@ -19483,7 +19483,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8467, "y": 12351 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.975072, 40.451217 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.975072, 40.451215 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984895", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.974106, 40.449558 ] } } ] } @@ -19777,7 +19777,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984900", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966894, 40.445210 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435408", "POINTID": "1102653981525", "FULLNAME": "Green Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.965842, 40.439756 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435408", "POINTID": "1102653981525", "FULLNAME": "Green Meadows", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.965840, 40.439756 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627787", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.959676, 40.439043 ] } } ] } @@ -19793,7 +19793,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8468, "y": 12350 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966365, 40.457046 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.966363, 40.457044 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046984891", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.960864, 40.455666 ] } } ] } @@ -19909,7 +19909,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12604 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436632", "POINTID": "1102653984610", "FULLNAME": "Huntingburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.954998, 38.298940 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436632", "POINTID": "1102653984610", "FULLNAME": "Huntingburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.954995, 38.298940 ] } } ] } ] } , @@ -20115,7 +20115,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12351 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729444794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955545, 40.451405 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729444794", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955543, 40.451405 ] } } ] } ] } , @@ -20127,7 +20127,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12349 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956811, 40.465813 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627199", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.956809, 40.465813 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627202", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.955642, 40.464303 ] } } , @@ -20183,7 +20183,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953882, 41.554692 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.951205, 41.550102 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047488725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.951203, 41.550102 ] } } ] } ] } , @@ -20195,7 +20195,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8469, "y": 12200 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953877, 41.700644 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137191476", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.953877, 41.700642 ] } } ] } ] } , @@ -20621,7 +20621,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8471, "y": 12348 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.930064, 40.480490 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046627586", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.930062, 40.480490 ] } } ] } ] } , @@ -20685,7 +20685,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.921857, 38.098389 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916911, 38.099100 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117936049", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916908, 38.099100 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117946411", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913842, 38.095516 ] } } ] } @@ -20695,7 +20695,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.920615, 38.103624 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913333, 38.106602 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110117942744", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.913333, 38.106599 ] } } ] } ] } , @@ -20905,7 +20905,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8472, "y": 12360 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916189, 40.380043 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160735", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916187, 40.380043 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087160732", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.916414, 40.379219 ] } } , @@ -21401,7 +21401,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12564 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436518", "POINTID": "1102654013847", "FULLNAME": "Houghton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.897502, 38.650884 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436518", "POINTID": "1102654013847", "FULLNAME": "Houghton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.897502, 38.650882 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431564", "POINTID": "1102654008515", "FULLNAME": "Brook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.894447, 38.649772 ] } } ] } @@ -21531,7 +21531,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8474, "y": 12360 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087218633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.894115, 40.378831 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087218633", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.894115, 40.378829 ] } } ] } ] } , @@ -22227,7 +22227,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137990063", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.879113, 40.512196 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452311", "POINTID": "1102653957591", "FULLNAME": "Edwood Glen Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.878064, 40.508367 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452311", "POINTID": "1102653957591", "FULLNAME": "Edwood Glen Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.878062, 40.508367 ] } } ] } ] } , @@ -22357,7 +22357,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12486 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445224", "POINTID": "1102654001395", "FULLNAME": "Vandalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.866120, 39.312538 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445224", "POINTID": "1102654001395", "FULLNAME": "Vandalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.866120, 39.312536 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440839", "POINTID": "1102654017609", "FULLNAME": "Palestine Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.861676, 39.312820 ] } } ] } @@ -22409,7 +22409,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8477, "y": 12399 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047035842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.862912, 40.045177 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047035842", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.862912, 40.045175 ] } } ] } ] } , @@ -22645,7 +22645,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12613 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413660", "FULLNAME": "Cnvnt of the Immac Concept", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.855456, 38.225549 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110107413660", "FULLNAME": "Cnvnt of the Immac Concept", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.855453, 38.225549 ] } } ] } ] } , @@ -22769,7 +22769,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12365 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443980", "POINTID": "1102654020157", "FULLNAME": "Spring Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.849172, 40.330313 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443980", "POINTID": "1102654020157", "FULLNAME": "Spring Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.849172, 40.330311 ] } } ] } ] } , @@ -22847,9 +22847,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12347 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292539", "FULLNAME": "Wolfelt Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.851942, 40.488052 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292539", "FULLNAME": "Wolfelt Heliport", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.851940, 40.488052 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444501", "POINTID": "1102654020682", "FULLNAME": "Swisher-Hurtz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.850561, 40.482811 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444501", "POINTID": "1102654020682", "FULLNAME": "Swisher-Hurtz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.850561, 40.482809 ] } } ] } ] } , @@ -22929,7 +22929,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8478, "y": 12195 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438243", "POINTID": "1102653988497", "FULLNAME": "Long Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.856974, 41.738929 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438243", "POINTID": "1102653988497", "FULLNAME": "Long Beach", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.856971, 41.738929 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958412", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.849271, 41.739379 ] } } ] } @@ -23041,7 +23041,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410888", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.838998, 39.653972 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.841278, 39.648472 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067410838", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.841275, 39.648472 ] } } ] } ] } , @@ -23085,7 +23085,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12357 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.836844, 40.404383 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577388471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.836844, 40.404381 ] } } ] } ] } , @@ -23099,7 +23099,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8479, "y": 12354 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087079579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847039, 40.427177 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087079579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.847036, 40.427177 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081937038", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846631, 40.428153 ] } } , @@ -23117,7 +23117,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223450", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.846055, 40.439113 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.840586, 40.439192 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106087223438", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.840586, 40.439190 ] } } ] } ] } , @@ -23327,7 +23327,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12454 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440537", "POINTID": "1102654017178", "FULLNAME": "Old Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831399, 39.583933 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440537", "POINTID": "1102654017178", "FULLNAME": "Old Bethel Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.831397, 39.583933 ] } } ] } ] } , @@ -23339,7 +23339,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12409 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445979", "POINTID": "1102654002839", "FULLNAME": "Whitesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.833615, 39.965321 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445979", "POINTID": "1102654002839", "FULLNAME": "Whitesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.833615, 39.965319 ] } } ] } ] } , @@ -23427,7 +23427,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8480, "y": 12343 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.831348, 40.514287 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137982033", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.831346, 40.514287 ] } } ] } ] } , @@ -23627,7 +23627,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8481, "y": 12462 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.817546, 39.519316 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067408499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.817543, 39.519316 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067412881", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.813836, 39.518062 ] } } ] } @@ -24193,7 +24193,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12460 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438823", "POINTID": "1102653953434", "FULLNAME": "McCoy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.800843, 39.535877 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438823", "POINTID": "1102653953434", "FULLNAME": "McCoy Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.800841, 39.535877 ] } } ] } ] } , @@ -24225,7 +24225,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442122", "POINTID": "1102653996715", "FULLNAME": "Roachdale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.802227, 39.848934 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437710", "FULLNAME": "School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.801967, 39.844980 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437710", "FULLNAME": "School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.801965, 39.844980 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067437708", "FULLNAME": "Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -86.794634, 39.850517 ] } } ] } @@ -24333,7 +24333,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8483, "y": 12202 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472882094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795632, 41.686426 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472882094", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.795632, 41.686424 ] } } ] } ] } , @@ -24381,7 +24381,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8484, "y": 12553 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444113", "POINTID": "1102654020300", "FULLNAME": "Steep Hollow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.787778, 38.743662 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444113", "POINTID": "1102654020300", "FULLNAME": "Steep Hollow Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.787776, 38.743662 ] } } ] } ] } , @@ -24555,7 +24555,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12562 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451089", "POINTID": "1102653985081", "FULLNAME": "Ironton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775274, 38.662274 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451089", "POINTID": "1102653985081", "FULLNAME": "Ironton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775274, 38.662272 ] } } ] } ] } , @@ -24731,7 +24731,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8485, "y": 12259 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440268", "POINTID": "1102653993318", "FULLNAME": "North Judson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775751, 41.215043 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440268", "POINTID": "1102653993318", "FULLNAME": "North Judson", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.775751, 41.215041 ] } } ] } ] } , @@ -24789,7 +24789,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12525 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433760", "POINTID": "1102654011437", "FULLNAME": "Duke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.763614, 38.980882 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433760", "POINTID": "1102654011437", "FULLNAME": "Duke Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.763614, 38.980880 ] } } ] } ] } , @@ -24835,7 +24835,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8486, "y": 12489 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443934", "POINTID": "1102653999094", "FULLNAME": "Spencer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.762504, 39.286709 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443934", "POINTID": "1102653999094", "FULLNAME": "Spencer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.762504, 39.286707 ] } } ] } ] } , @@ -24905,7 +24905,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081734464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.769065, 40.378886 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433370", "POINTID": "1102653975243", "FULLNAME": "Dayton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.768893, 40.374201 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433370", "POINTID": "1102653975243", "FULLNAME": "Dayton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.768890, 40.374201 ] } } ] } ] } , @@ -25047,7 +25047,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12590 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430401", "POINTID": "1102654006860", "FULLNAME": "Bailey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.757494, 38.425889 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430401", "POINTID": "1102654006860", "FULLNAME": "Bailey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.757494, 38.425887 ] } } ] } ] } , @@ -25307,7 +25307,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8487, "y": 12198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430173", "POINTID": "1102653965072", "FULLNAME": "Andry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.758081, 41.717820 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430173", "POINTID": "1102653965072", "FULLNAME": "Andry", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.758081, 41.717818 ] } } ] } ] } , @@ -25351,7 +25351,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12565 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450619", "POINTID": "1102654006349", "FULLNAME": "Acre Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.738608, 38.636442 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450619", "POINTID": "1102654006349", "FULLNAME": "Acre Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.738605, 38.636442 ] } } ] } ] } , @@ -25435,7 +25435,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8488, "y": 12355 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577356966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.745826, 40.420833 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105577356966", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.745826, 40.420831 ] } } ] } ] } , @@ -25525,7 +25525,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8489, "y": 12650 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046596709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.735805, 37.908287 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046596709", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.735803, 37.908287 ] } } ] } ] } , @@ -25835,7 +25835,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12639 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451391", "POINTID": "1102654018467", "FULLNAME": "Richards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.723320, 38.002556 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451391", "POINTID": "1102654018467", "FULLNAME": "Richards Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.723320, 38.002554 ] } } ] } ] } , @@ -26051,7 +26051,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12262 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446765", "POINTID": "1102653987614", "FULLNAME": "Lena Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.717236, 41.194483 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446765", "POINTID": "1102653987614", "FULLNAME": "Lena Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.717234, 41.194483 ] } } ] } ] } , @@ -26091,7 +26091,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8490, "y": 12206 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401999177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.724765, 41.651475 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110401999177", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.724763, 41.651475 ] } } ] } ] } , @@ -26223,7 +26223,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.713157, 39.730838 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.708873, 39.728540 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.708871, 39.728538 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067411464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.705097, 39.725196 ] } } ] } @@ -26927,7 +26927,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8494, "y": 12428 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094094", "POINTID": "1102654021308", "FULLNAME": "Vannice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678334, 39.802501 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094094", "POINTID": "1102654021308", "FULLNAME": "Vannice Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.678331, 39.802501 ] } } ] } ] } , @@ -27295,7 +27295,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8495, "y": 12379 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433346", "POINTID": "1102654011154", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670558, 40.219478 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433346", "POINTID": "1102654011154", "FULLNAME": "Davis Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.670555, 40.219478 ] } } ] } ] } , @@ -27375,7 +27375,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435970", "POINTID": "1102654013344", "FULLNAME": "Heckman Memorial Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.665856, 41.752543 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436073", "POINTID": "1102653983299", "FULLNAME": "Hesston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660856, 41.752821 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436073", "POINTID": "1102653983299", "FULLNAME": "Hesston", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.660856, 41.752819 ] } } ] } ] } , @@ -27501,7 +27501,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8496, "y": 12456 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445052", "POINTID": "1102654007353", "FULLNAME": "Belle Union Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.653338, 39.564490 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445052", "POINTID": "1102654007353", "FULLNAME": "Belle Union Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.653335, 39.564490 ] } } ] } ] } , @@ -27975,7 +27975,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8498, "y": 12421 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093778", "POINTID": "1102654009233", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.634721, 39.861389 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093778", "POINTID": "1102654009233", "FULLNAME": "Campbell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.634721, 39.861387 ] } } ] } ] } , @@ -28131,7 +28131,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12533 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724250641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.622222, 38.914563 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103724250641", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.622219, 38.914563 ] } } ] } ] } , @@ -28275,7 +28275,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060394", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.622157, 40.125019 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.619918, 40.126569 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060339", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.619918, 40.126567 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438567", "POINTID": "1102654015422", "FULLNAME": "Maple Law Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.616112, 40.124215 ] } } ] } @@ -28301,7 +28301,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8499, "y": 12315 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840291", "FULLNAME": "Eastlawn Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.618553, 40.747688 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110137840291", "FULLNAME": "Eastlawn Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.618550, 40.747688 ] } } ] } ] } , @@ -28385,7 +28385,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12601 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450883", "POINTID": "1102654011534", "FULLNAME": "Eckerty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.611375, 38.325891 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450883", "POINTID": "1102654011534", "FULLNAME": "Eckerty Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.611375, 38.325889 ] } } ] } ] } , @@ -28479,13 +28479,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12502 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607883, 39.181308 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607880, 39.181308 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12501 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607883, 39.181308 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114944017", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.607880, 39.181308 ] } } ] } ] } , @@ -28551,7 +28551,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8500, "y": 12424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093779", "POINTID": "1102654011294", "FULLNAME": "Devenport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.612220, 39.837778 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02093779", "POINTID": "1102654011294", "FULLNAME": "Devenport Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.612220, 39.837776 ] } } ] } ] } , @@ -28747,7 +28747,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8501, "y": 12536 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451196", "POINTID": "1102653953317", "FULLNAME": "Mall Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.600828, 38.887551 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451196", "POINTID": "1102653953317", "FULLNAME": "Mall Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.600828, 38.887548 ] } } ] } ] } , @@ -29019,7 +29019,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12558 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450964", "POINTID": "1102653952192", "FULLNAME": "Gobblers Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.588040, 38.700325 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450964", "POINTID": "1102653952192", "FULLNAME": "Gobblers Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.588040, 38.700323 ] } } ] } ] } , @@ -29053,7 +29053,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8502, "y": 12505 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.590438, 39.152796 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045873824", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.590435, 39.152796 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103916293889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.587511, 39.153176 ] } } ] } @@ -29287,7 +29287,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12557 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450734", "POINTID": "1102654008980", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.578327, 38.709495 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450734", "POINTID": "1102654008980", "FULLNAME": "Burton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.578325, 38.709495 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451836", "POINTID": "1102654012437", "FULLNAME": "Georgia Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.572494, 38.704497 ] } } , @@ -29337,7 +29337,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8503, "y": 12507 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445205", "POINTID": "1102654001353", "FULLNAME": "Van Buren Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.580833, 39.135882 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445205", "POINTID": "1102654001353", "FULLNAME": "Van Buren Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.580833, 39.135880 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110114996050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.579803, 39.132386 ] } } ] } @@ -29619,7 +29619,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8504, "y": 12573 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561102, 38.570610 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561100, 38.570610 ] } } ] } ] } , @@ -29899,7 +29899,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12573 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561102, 38.570610 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450618", "POINTID": "1102653963949", "FULLNAME": "Abydel", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.561100, 38.570610 ] } } ] } ] } , @@ -30023,7 +30023,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8505, "y": 12434 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.551111, 39.756492 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103699612427", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.551111, 39.756490 ] } } ] } ] } , @@ -30183,7 +30183,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8506, "y": 12541 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451838", "POINTID": "1102653996682", "FULLNAME": "Riverview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.541662, 38.842273 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451838", "POINTID": "1102653996682", "FULLNAME": "Riverview", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.541659, 38.842273 ] } } ] } ] } , @@ -30411,7 +30411,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439362", "POINTID": "1102654016175", "FULLNAME": "Montgomery Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.545285, 39.878605 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094102", "POINTID": "1102654015151", "FULLNAME": "Lizton Knights of Pythias Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.542024, 39.880708 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02094102", "POINTID": "1102654015151", "FULLNAME": "Lizton Knights of Pythias Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.542024, 39.880706 ] } } ] } ] } , @@ -30519,7 +30519,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8507, "y": 12607 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451845", "POINTID": "1102653958790", "FULLNAME": "Hemlock Cliffs Recreation Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538596, 38.277559 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451845", "POINTID": "1102653958790", "FULLNAME": "Hemlock Cliffs Recreation Area", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.538593, 38.277559 ] } } ] } ] } , @@ -30963,7 +30963,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878470", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.519442, 39.152981 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.518595, 39.151329 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045878471", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.518595, 39.151327 ] } } ] } ] } , @@ -31105,7 +31105,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8508, "y": 12348 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433265", "POINTID": "1102653974849", "FULLNAME": "Cutler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524155, 40.476421 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433265", "POINTID": "1102653974849", "FULLNAME": "Cutler", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.524155, 40.476419 ] } } ] } ] } , @@ -31359,7 +31359,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473868133", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.516789, 39.128716 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510481, 39.128263 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045879765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.510481, 39.128260 ] } } ] } ] } , @@ -31669,7 +31669,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12537 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942368068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.498288, 38.875181 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103942368068", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.498288, 38.875179 ] } } ] } ] } , @@ -31831,7 +31831,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12433 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292289", "FULLNAME": "Hendricks Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.501182, 39.763752 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292289", "FULLNAME": "Hendricks Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.501182, 39.763750 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700018578", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.495699, 39.759530 ] } } ] } @@ -31875,7 +31875,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12378 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430198", "POINTID": "1102653965246", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505851, 40.228100 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430198", "POINTID": "1102653965246", "FULLNAME": "Antioch", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.505851, 40.228098 ] } } ] } ] } , @@ -31901,7 +31901,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8510, "y": 12369 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263414394", "FULLNAME": "Golf Crs", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.504642, 40.296575 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110263414394", "FULLNAME": "Golf Crs", "MTFCC": "K2561" }, "geometry": { "type": "Point", "coordinates": [ -86.504639, 40.296575 ] } } ] } ] } , @@ -32133,7 +32133,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473863726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491486, 39.138457 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473875938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.487540, 39.132424 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473875938", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.487537, 39.132424 ] } } ] } ] } , @@ -32143,7 +32143,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104473863726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491486, 39.138457 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730284682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484316, 39.144328 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730284682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.484313, 39.144328 ] } } ] } ] } , @@ -32231,7 +32231,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046023477", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491467, 40.060388 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491228, 40.055689 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058028", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491225, 40.055689 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066058178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488707, 40.055188 ] } } ] } @@ -32263,7 +32263,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8511, "y": 12371 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491459, 40.286235 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961367", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.491456, 40.286235 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110262961349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.488801, 40.281869 ] } } ] } @@ -32619,7 +32619,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8512, "y": 12363 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481178, 40.351054 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262958461", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.481175, 40.351054 ] } } ] } ] } , @@ -32787,7 +32787,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12526 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450809", "POINTID": "1102653974130", "FULLNAME": "Coveyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.472493, 38.973383 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00450809", "POINTID": "1102653974130", "FULLNAME": "Coveyville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.472493, 38.973381 ] } } ] } ] } , @@ -32807,7 +32807,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12504 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.473501, 39.157099 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045876078", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.473499, 39.157099 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106060846509", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.469392, 39.163024 ] } } , @@ -32907,7 +32907,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12433 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700034074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471018, 39.763261 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700034074", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.471015, 39.763261 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103700036922", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.463776, 39.760742 ] } } ] } @@ -32983,7 +32983,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8513, "y": 12366 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437686", "POINTID": "1102654014875", "FULLNAME": "Layton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.464720, 40.322256 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437686", "POINTID": "1102654014875", "FULLNAME": "Layton Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.464717, 40.322256 ] } } ] } ] } , @@ -33337,7 +33337,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12587 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292383", "FULLNAME": "Gibbons Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.443828, 38.447153 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292383", "FULLNAME": "Gibbons Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.443825, 38.447153 ] } } ] } ] } , @@ -33503,7 +33503,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047018935", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441079, 39.781753 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264211852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441020, 39.776979 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264211852", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.441020, 39.776977 ] } } ] } ] } , @@ -33569,7 +33569,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8515, "y": 12377 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430086", "POINTID": "1102654006565", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.445832, 40.235034 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430086", "POINTID": "1102654006565", "FULLNAME": "Allen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.445829, 40.235034 ] } } ] } ] } , @@ -33859,7 +33859,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12426 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444756", "POINTID": "1102654000619", "FULLNAME": "Tilden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.438885, 39.821433 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444756", "POINTID": "1102654000619", "FULLNAME": "Tilden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.438882, 39.821433 ] } } ] } ] } , @@ -33917,7 +33917,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8516, "y": 12409 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443358", "POINTID": "1102653998262", "FULLNAME": "Shepherd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431385, 39.967264 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443358", "POINTID": "1102653998262", "FULLNAME": "Shepherd", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.431383, 39.967264 ] } } ] } ] } , @@ -34113,7 +34113,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12452 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605820 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605818 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110268055695", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.422960, 39.604355 ] } } ] } @@ -34121,7 +34121,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8517, "y": 12451 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605820 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267819612", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.419766, 39.605818 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110267817819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.418385, 39.606054 ] } } ] } @@ -34347,7 +34347,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12527 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451021", "POINTID": "1102654013271", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.417212, 38.967273 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451021", "POINTID": "1102654013271", "FULLNAME": "Hawkins Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.417212, 38.967271 ] } } ] } ] } , @@ -34483,7 +34483,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8518, "y": 12439 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707760 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707758 ] } } ] } ] } , @@ -34637,7 +34637,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12588 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451594", "POINTID": "1102654001272", "FULLNAME": "Valeene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.397206, 38.438947 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451594", "POINTID": "1102654001272", "FULLNAME": "Valeene", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.397203, 38.438947 ] } } ] } ] } , @@ -34723,7 +34723,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110269196881", "FULLNAME": "Hospital", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.405443, 39.426582 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434468", "POINTID": "1102653978788", "FULLNAME": "Fewell Rhoades", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399437, 39.421436 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434468", "POINTID": "1102653978788", "FULLNAME": "Fewell Rhoades", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.399437, 39.421434 ] } } ] } ] } , @@ -34785,7 +34785,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12441 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526177", "FULLNAME": "Indiana Boys Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.402232, 39.696437 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526177", "FULLNAME": "Indiana Boys Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.402230, 39.696437 ] } } ] } ] } , @@ -34799,7 +34799,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12439 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707760 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110265526185", "FULLNAME": "Franklin Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.407398, 39.707758 ] } } ] } ] } , @@ -35083,7 +35083,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8519, "y": 12209 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103776264534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402632, 41.631619 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103776264534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.402629, 41.631619 ] } } ] } ] } , @@ -35189,7 +35189,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12470 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452357", "POINTID": "1102653960416", "FULLNAME": "Martinsville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.387494, 39.450879 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452357", "POINTID": "1102653960416", "FULLNAME": "Martinsville Country Club", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.387491, 39.450879 ] } } ] } ] } , @@ -35357,7 +35357,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8520, "y": 12433 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394430, 39.766152 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264190169", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.394427, 39.766152 ] } } ] } ] } , @@ -35687,7 +35687,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949759", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385131, 39.149826 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379412, 39.151881 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.379409, 39.151881 ] } } ] } ] } , @@ -35931,7 +35931,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383092, 39.842358 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383089, 39.842356 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607144706", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385632, 39.833809 ] } } , @@ -35943,7 +35943,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264112803", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.385463, 39.849683 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383092, 39.842358 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102607141638", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.383089, 39.842356 ] } } ] } ] } , @@ -35979,7 +35979,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12418 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384758, 39.887336 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.384755, 39.887336 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.381713, 39.884343 ] } } ] } @@ -36037,7 +36037,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8521, "y": 12309 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433926", "POINTID": "1102654011505", "FULLNAME": "East Sand Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.384441, 40.803650 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433926", "POINTID": "1102654011505", "FULLNAME": "East Sand Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.384441, 40.803648 ] } } ] } ] } , @@ -36081,7 +36081,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102978795725", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.380185, 41.654231 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345010765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378135, 41.652064 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345010765", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.378135, 41.652062 ] } } ] } ] } , @@ -36383,7 +36383,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8522, "y": 12426 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373039, 39.821400 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160537", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.373037, 39.821400 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110264160366", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.370813, 39.817603 ] } } , @@ -37055,7 +37055,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8524, "y": 12356 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445063", "POINTID": "1102654021194", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.347494, 40.410312 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445063", "POINTID": "1102654021194", "FULLNAME": "Union Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.347491, 40.410312 ] } } ] } ] } , @@ -37277,13 +37277,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12450 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340330, 39.619196 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046992244", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.340327, 39.619196 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8525, "y": 12447 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434871", "POINTID": "1102653980076", "FULLNAME": "Friendswood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.332768, 39.646434 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434871", "POINTID": "1102653980076", "FULLNAME": "Friendswood", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.332766, 39.646434 ] } } ] } ] } , @@ -37653,7 +37653,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12441 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096261", "POINTID": "1102654009603", "FULLNAME": "Center Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.325832, 39.697500 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096261", "POINTID": "1102654009603", "FULLNAME": "Center Friends Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.325830, 39.697500 ] } } ] } ] } , @@ -37801,7 +37801,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8526, "y": 12411 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954954402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.321050, 39.950707 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11016954954402", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.321047, 39.950707 ] } } ] } ] } , @@ -38009,7 +38009,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12450 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311491, 39.622755 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198415", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.311491, 39.622753 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104690198478", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.316034, 39.621468 ] } } , @@ -38219,7 +38219,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8527, "y": 12329 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433385", "POINTID": "1102653975294", "FULLNAME": "Deacon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317217, 40.633926 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433385", "POINTID": "1102653975294", "FULLNAME": "Deacon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.317214, 40.633926 ] } } ] } ] } , @@ -38575,7 +38575,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442417", "POINTID": "1102653997241", "FULLNAME": "Russell Lake", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.301658, 39.948651 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103372163498", "FULLNAME": "Befair Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301545, 39.943716 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103372163498", "FULLNAME": "Befair Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.301542, 39.943716 ] } } ] } ] } , @@ -38879,7 +38879,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446210", "POINTID": "1102654003152", "FULLNAME": "Wiser", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.293600, 39.612268 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046991927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291940, 39.609234 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046991927", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.291940, 39.609232 ] } } ] } ] } , @@ -39191,7 +39191,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12619 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431494", "POINTID": "1102654008343", "FULLNAME": "Brewer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279140, 38.171455 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431494", "POINTID": "1102654008343", "FULLNAME": "Brewer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.279140, 38.171453 ] } } ] } ] } , @@ -39313,7 +39313,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12443 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066758724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278285, 39.681845 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066758724", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.278282, 39.681845 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105013837505", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.280463, 39.678019 ] } } ] } @@ -39357,13 +39357,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12432 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284996, 39.774466 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476140960", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.284993, 39.774466 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12431 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278878, 39.783378 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278875, 39.783378 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988975180", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.286474, 39.777233 ] } } , @@ -39373,7 +39373,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8530, "y": 12430 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278878, 39.783378 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434394", "POINTID": "1102653978486", "FULLNAME": "Farleys Addition", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.278875, 39.783378 ] } } ] } ] } , @@ -39893,7 +39893,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8531, "y": 12424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051986511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268315, 39.835045 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051986511", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268315, 39.835043 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104984199637", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.265008, 39.833726 ] } } ] } @@ -39961,7 +39961,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083250", "FULLNAME": "Zionsville High School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.274146, 39.960282 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268428, 39.960159 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268425, 39.960159 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066083253", "FULLNAME": "Eagle Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.268919, 39.954100 ] } } ] } @@ -39975,7 +39975,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066060012", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.269517, 39.964299 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268428, 39.960159 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066059682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.268425, 39.960159 ] } } ] } ] } , @@ -40127,7 +40127,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8532, "y": 12610 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449857", "POINTID": "1102653962534", "FULLNAME": "Sharps Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.257197, 38.254786 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449857", "POINTID": "1102653962534", "FULLNAME": "Sharps Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.257195, 38.254786 ] } } ] } ] } , @@ -40367,7 +40367,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985770", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.263471, 39.858218 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258568, 39.857053 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051985782", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.258568, 39.857051 ] } } ] } ] } , @@ -40739,7 +40739,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12484 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101152174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252849, 39.327768 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110101152174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.252849, 39.327766 ] } } ] } ] } , @@ -40775,7 +40775,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8533, "y": 12442 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096272", "POINTID": "1102654015505", "FULLNAME": "Mars-Beeler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.243330, 39.689723 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096272", "POINTID": "1102654015505", "FULLNAME": "Mars-Beeler Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.243330, 39.689721 ] } } ] } ] } , @@ -41027,7 +41027,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452802", "POINTID": "1102654020077", "FULLNAME": "Southlawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.249727, 41.603103 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246262, 41.599986 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509702", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.246262, 41.599984 ] } } ] } ] } , @@ -41191,7 +41191,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12438 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499732238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.238961, 39.716474 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104499732238", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.238961, 39.716472 ] } } ] } ] } , @@ -41269,7 +41269,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12419 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440018", "POINTID": "1102653992292", "FULLNAME": "New Augusta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.238599, 39.883374 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440018", "POINTID": "1102653992292", "FULLNAME": "New Augusta", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.238596, 39.883374 ] } } ] } ] } , @@ -41321,7 +41321,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12386 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443938", "POINTID": "1102654020129", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.241657, 40.161704 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443938", "POINTID": "1102654020129", "FULLNAME": "Spencer Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.241657, 40.161702 ] } } ] } ] } , @@ -41417,7 +41417,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8534, "y": 12205 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052173560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240192, 41.662156 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052173560", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.240192, 41.662154 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452551", "POINTID": "1102654008201", "FULLNAME": "Bowman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.233894, 41.657269 ] } } ] } @@ -41511,7 +41511,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12573 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443694", "POINTID": "1102653954697", "FULLNAME": "Smith Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226371, 38.568668 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443694", "POINTID": "1102653954697", "FULLNAME": "Smith Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.226368, 38.568668 ] } } ] } ] } , @@ -41625,7 +41625,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12430 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449433", "POINTID": "1102653955632", "FULLNAME": "Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.231097, 39.785045 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449433", "POINTID": "1102653955632", "FULLNAME": "Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.231097, 39.785043 ] } } ] } ] } , @@ -41745,7 +41745,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12411 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231014, 39.947675 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533587", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231011, 39.947675 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977533397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.223970, 39.945842 ] } } ] } @@ -41795,7 +41795,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8535, "y": 12403 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444339", "POINTID": "1102654020545", "FULLNAME": "Sugar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.231378, 40.015594 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444339", "POINTID": "1102654020545", "FULLNAME": "Sugar Grove Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.231376, 40.015594 ] } } ] } ] } , @@ -41909,7 +41909,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509138", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.230142, 41.607353 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607118 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607116 ] } } ] } ] } , @@ -41919,7 +41919,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047508889", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.229284, 41.615266 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607118 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047509145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.231242, 41.607116 ] } } ] } ] } , @@ -41951,7 +41951,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222543, 41.634195 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222540, 41.631731 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047502351", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.222540, 41.631729 ] } } ] } ] } , @@ -42003,7 +42003,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872708", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225376, 41.738619 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225687, 41.734884 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732872649", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.225687, 41.734882 ] } } ] } ] } , @@ -42041,7 +42041,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12602 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443207", "POINTID": "1102653954599", "FULLNAME": "Seigs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.219976, 38.317285 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443207", "POINTID": "1102653954599", "FULLNAME": "Seigs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.219974, 38.317285 ] } } ] } ] } , @@ -42203,7 +42203,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12452 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219896, 39.599040 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051949763", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.219896, 39.599038 ] } } ] } ] } , @@ -42295,7 +42295,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431548", "POINTID": "1102653969719", "FULLNAME": "Broadmoor", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.214153, 39.848931 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209658, 39.843246 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209655, 39.843246 ] } } ] } ] } , @@ -42311,7 +42311,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977483272", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.216570, 39.869552 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014171524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211710, 39.873545 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014171524", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.211707, 39.873545 ] } } ] } ] } , @@ -42399,7 +42399,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936769", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.213550, 39.983093 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209569, 39.979556 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209567, 39.979556 ] } } ] } ] } , @@ -42445,7 +42445,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8536, "y": 12343 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292296", "FULLNAME": "Hartman Farms Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.213716, 40.520858 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292296", "FULLNAME": "Hartman Farms Fld", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.213713, 40.520858 ] } } ] } ] } , @@ -42641,7 +42641,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12593 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430458", "POINTID": "1102653950756", "FULLNAME": "Ball Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.205382, 38.400669 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430458", "POINTID": "1102653950756", "FULLNAME": "Ball Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.205380, 38.400669 ] } } ] } ] } , @@ -42677,7 +42677,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12560 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441627", "POINTID": "1102653995767", "FULLNAME": "Prowsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201665, 38.680043 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441627", "POINTID": "1102653995767", "FULLNAME": "Prowsville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.201665, 38.680041 ] } } ] } ] } , @@ -42877,7 +42877,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12423 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209658, 39.843246 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051996075", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209655, 39.843246 ] } } ] } ] } , @@ -42941,7 +42941,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12410 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977544999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206297, 39.959180 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977544999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.206297, 39.959178 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105580091490", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203752, 39.956662 ] } } ] } @@ -42963,7 +42963,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8537, "y": 12407 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209569, 39.979556 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579936820", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.209567, 39.979556 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105579947305", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.203553, 39.979541 ] } } ] } @@ -43621,13 +43621,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12279 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328439837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195024, 41.052862 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328439837", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.195021, 41.052862 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12277 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767211", "FULLNAME": "Woodlawn Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.195638, 41.063399 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110328767211", "FULLNAME": "Woodlawn Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.195638, 41.063397 ] } } ] } ] } , @@ -43689,7 +43689,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8538, "y": 12195 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.194635, 41.742689 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122349", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.194632, 41.742689 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052122348", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.190485, 41.744785 ] } } ] } @@ -43757,7 +43757,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12537 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437406", "POINTID": "1102653959662", "FULLNAME": "Knobs Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.179199, 38.874156 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437406", "POINTID": "1102653959662", "FULLNAME": "Knobs Overlook", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.179199, 38.874154 ] } } ] } ] } , @@ -44031,7 +44031,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12418 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184705, 39.891633 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014590", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.184705, 39.891631 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052014953", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181723, 39.889818 ] } } ] } @@ -44241,7 +44241,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8539, "y": 12195 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746590 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746588 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732862556", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.176659, 41.739179 ] } } ] } @@ -44251,7 +44251,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732704313", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.180921, 41.754570 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746590 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441555", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.181229, 41.746588 ] } } ] } ] } , @@ -44291,13 +44291,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12580 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923632", "POINTID": "1102654014353", "FULLNAME": "Kansas Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.173032, 38.513115 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923632", "POINTID": "1102654014353", "FULLNAME": "Kansas Church Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.173032, 38.513112 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12570 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119095818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167789, 38.593898 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119095818", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.167786, 38.593898 ] } } ] } ] } , @@ -44825,7 +44825,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12232 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170565, 41.440694 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110136304523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170562, 41.440694 ] } } ] } ] } , @@ -44857,7 +44857,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047504165", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172622, 41.643586 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170143, 41.642716 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047503898", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.170143, 41.642714 ] } } ] } ] } , @@ -44883,7 +44883,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8540, "y": 12199 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730614975", "FULLNAME": "Vanderbilt Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171745, 41.712803 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730614975", "FULLNAME": "Vanderbilt Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.171742, 41.712801 ] } } ] } ] } , @@ -44921,7 +44921,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047441441", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.172922, 41.747730 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168717, 41.746602 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047438912", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.168717, 41.746600 ] } } ] } ] } , @@ -45157,7 +45157,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066763442", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.161751, 39.639624 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113585029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162207, 39.632909 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113585029", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.162204, 39.632909 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105045860234", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.160246, 39.632680 ] } } ] } @@ -45175,7 +45175,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052150664", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163816, 39.672786 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154603, 39.668554 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151010", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154603, 39.668552 ] } } ] } ] } , @@ -45323,7 +45323,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977588480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.157076, 39.998961 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001842 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001840 ] } } ] } ] } , @@ -45457,7 +45457,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097315", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.163585, 40.673622 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159817, 40.674554 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067098193", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.159817, 40.674552 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067097343", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154740, 40.672253 ] } } ] } @@ -45483,7 +45483,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8541, "y": 12230 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292644", "FULLNAME": "Bremen Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.158374, 41.456862 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292644", "FULLNAME": "Bremen Community Hosp", "MTFCC": "K2460" }, "geometry": { "type": "Point", "coordinates": [ -86.158374, 41.456860 ] } } ] } ] } , @@ -45613,7 +45613,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12516 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451209", "POINTID": "1102654015794", "FULLNAME": "McKinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153876, 39.056440 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451209", "POINTID": "1102654015794", "FULLNAME": "McKinney Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.153876, 39.056438 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452118", "POINTID": "1102653970470", "FULLNAME": "Buffalo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.144984, 39.056715 ] } } ] } @@ -45629,7 +45629,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12509 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451276", "POINTID": "1102653953771", "FULLNAME": "Nickerson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.145545, 39.116995 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451276", "POINTID": "1102653953771", "FULLNAME": "Nickerson Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.145542, 39.116995 ] } } ] } ] } , @@ -45735,7 +45735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113530065", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.151596, 39.608470 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436016", "POINTID": "1102653983187", "FULLNAME": "Hendricks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.148316, 39.608102 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436016", "POINTID": "1102653983187", "FULLNAME": "Hendricks", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.148316, 39.608100 ] } } ] } ] } , @@ -45793,7 +45793,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107778", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.153833, 39.680905 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147849, 39.680732 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052107904", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.147849, 39.680730 ] } } ] } ] } , @@ -45893,7 +45893,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8542, "y": 12405 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001842 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052043452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.154705, 40.001840 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296193683", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.146682, 40.001186 ] } } , @@ -46205,7 +46205,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12571 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923560", "POINTID": "1102654010219", "FULLNAME": "Coggswell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.142479, 38.588114 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "01923560", "POINTID": "1102654010219", "FULLNAME": "Coggswell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.142479, 38.588112 ] } } ] } ] } , @@ -46425,7 +46425,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12407 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259094029", "FULLNAME": "Wilson Terrace Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138560, 39.977712 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259094029", "FULLNAME": "Wilson Terrace Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.138560, 39.977710 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379836", "FULLNAME": "Meadowlark Park", "MTFCC": "K2190" }, "geometry": { "type": "Point", "coordinates": [ -86.134253, 39.981967 ] } } ] } @@ -46527,7 +46527,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8543, "y": 12306 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437435", "POINTID": "1102654014641", "FULLNAME": "Koontz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.138048, 40.825318 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437435", "POINTID": "1102654014641", "FULLNAME": "Koontz Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.138045, 40.825316 ] } } ] } ] } , @@ -46653,7 +46653,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8544, "y": 12615 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212010 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212008 ] } } ] } ] } , @@ -46779,7 +46779,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052394053", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.130895, 39.625059 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449454", "POINTID": "1102653960317", "FULLNAME": "Margate Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.122832, 39.629180 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449454", "POINTID": "1102653960317", "FULLNAME": "Margate Plaza", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.122829, 39.629180 ] } } ] } ] } , @@ -47159,7 +47159,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12615 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212010 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433003", "POINTID": "1102653973993", "FULLNAME": "Corydon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.121915, 38.212008 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436196", "POINTID": "1102653983619", "FULLNAME": "Hillcrest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.118581, 38.203679 ] } } ] } @@ -47221,7 +47221,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12487 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441896", "POINTID": "1102653954197", "FULLNAME": "Renner Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.119713, 39.306158 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441896", "POINTID": "1102653954197", "FULLNAME": "Renner Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -86.119710, 39.306158 ] } } ] } ] } , @@ -47281,7 +47281,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046973903", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.120144, 39.596459 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116295, 39.596279 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046041269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116293, 39.596279 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046040780", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.113385, 39.590808 ] } } ] } @@ -47679,7 +47679,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12307 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115547, 40.822262 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115544, 40.822262 ] } } ] } ] } , @@ -47687,13 +47687,13 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435406", "POINTID": "1102654012846", "FULLNAME": "Green Lawn Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.117492, 40.829485 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115547, 40.822262 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439059", "POINTID": "1102653990387", "FULLNAME": "Mexico", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.115544, 40.822262 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8545, "y": 12304 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114694, 40.839112 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067094334", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.114691, 40.839112 ] } } ] } ] } , @@ -47731,7 +47731,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110345007176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.121118, 41.647771 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116277, 41.645899 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110344855901", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.116274, 41.645899 ] } } ] } ] } , @@ -47875,7 +47875,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12549 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439241", "POINTID": "1102653990826", "FULLNAME": "Millport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.103314, 38.771442 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439241", "POINTID": "1102653990826", "FULLNAME": "Millport", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.103311, 38.771442 ] } } ] } ] } , @@ -47919,7 +47919,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019836", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100572, 39.553067 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100634, 39.550499 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047019924", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.100634, 39.550497 ] } } ] } ] } , @@ -47969,7 +47969,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559493", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.110775, 39.630719 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106784, 39.626720 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113559479", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.106784, 39.626718 ] } } ] } ] } , @@ -48039,7 +48039,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12418 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108096, 39.890081 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052151145", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.108093, 39.890081 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441233", "POINTID": "1102653995159", "FULLNAME": "Pleasant Acres", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.102758, 39.891151 ] } } ] } @@ -48141,7 +48141,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8546, "y": 12402 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109837, 40.020444 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105319759251", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.109834, 40.020444 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104472482333", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.103230, 40.026462 ] } } ] } @@ -48399,7 +48399,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12601 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310930173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095334, 38.327084 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108310930173", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.095331, 38.327084 ] } } ] } ] } , @@ -48633,7 +48633,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12447 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092805, 39.646250 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435426", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.092802, 39.646250 ] } } ] } ] } , @@ -48761,7 +48761,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12406 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099475, 39.993534 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977546499", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.099475, 39.993532 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.090334, 39.986385 ] } } ] } @@ -48833,7 +48833,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8547, "y": 12391 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433464", "POINTID": "1102653975543", "FULLNAME": "Deming", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.098596, 40.115315 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433464", "POINTID": "1102653975543", "FULLNAME": "Deming", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.098596, 40.115313 ] } } ] } ] } , @@ -49131,7 +49131,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12462 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520988 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520986 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046727464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.077991, 39.514706 ] } } ] } @@ -49139,7 +49139,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12461 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520988 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052414174", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.079812, 39.520986 ] } } ] } ] } , @@ -49233,7 +49233,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8548, "y": 12447 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088038, 39.646824 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435424", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.088038, 39.646822 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108296190253", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.081041, 39.644323 ] } } ] } @@ -50369,7 +50369,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104979664311", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065156, 39.889906 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061763860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.061965, 39.885370 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107061763860", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.061962, 39.885370 ] } } ] } ] } , @@ -50445,7 +50445,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259088152", "FULLNAME": "Shiloh Falls", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066932, 39.979502 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064346, 39.985296 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977541654", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064344, 39.985296 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977542861", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.056211, 39.984916 ] } } , @@ -50489,7 +50489,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052516592", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.065108, 40.021681 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052468097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060350, 40.019442 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052468097", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.060350, 40.019440 ] } } ] } ] } , @@ -50533,7 +50533,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12395 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066168, 40.085318 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289544", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066168, 40.085316 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066289533", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.064934, 40.078595 ] } } , @@ -50553,7 +50553,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066251, 40.095965 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977536268", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066248, 40.095965 ] } } ] } ] } , @@ -50589,7 +50589,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12346 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442889", "POINTID": "1102654019222", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.059988, 40.496705 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442889", "POINTID": "1102654019222", "FULLNAME": "Salem Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.059988, 40.496703 ] } } ] } ] } , @@ -50607,7 +50607,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8550, "y": 12325 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441767", "POINTID": "1102654018280", "FULLNAME": "Rankin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.063633, 40.664951 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441767", "POINTID": "1102654018280", "FULLNAME": "Rankin Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.063630, 40.664951 ] } } ] } ] } , @@ -50725,7 +50725,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103732921579", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.066763, 41.755402 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814300507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057214, 41.759648 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012814300507", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.057212, 41.759648 ] } } ] } ] } , @@ -50789,7 +50789,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12537 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111101330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054253, 38.875956 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110111101330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054253, 38.875954 ] } } ] } ] } , @@ -50889,7 +50889,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12441 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054591, 39.697597 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11012813435269", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054591, 39.697595 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104988971669", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.045322, 39.690634 ] } } ] } @@ -50897,7 +50897,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12440 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055935, 39.702855 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500325", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.055932, 39.702855 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977500147", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.054621, 39.705742 ] } } , @@ -50991,7 +50991,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977545279", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.053736, 39.940156 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935223 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935221 ] } } ] } ] } , @@ -51043,7 +51043,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8551, "y": 12403 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445597", "POINTID": "1102654021606", "FULLNAME": "Weaver Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.046647, 40.014483 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445597", "POINTID": "1102654021606", "FULLNAME": "Weaver Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.046647, 40.014481 ] } } ] } ] } , @@ -51433,7 +51433,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12446 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762540380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039284, 39.656479 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762540380", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.039281, 39.656479 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104762540323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.041674, 39.655413 ] } } ] } @@ -51531,7 +51531,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104486627372", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035459, 39.943459 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935223 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292297", "FULLNAME": "Indianapolis Metropolitan Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -86.044903, 39.935221 ] } } ] } ] } , @@ -51643,7 +51643,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8552, "y": 12390 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860420682", "FULLNAME": "Sunfish Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036781, 40.120905 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860420682", "FULLNAME": "Sunfish Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.036781, 40.120903 ] } } ] } ] } , @@ -51657,7 +51657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11067473285", "FULLNAME": "County Hosp", "MTFCC": "K1231" }, "geometry": { "type": "Point", "coordinates": [ -86.043007, 40.271837 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035075, 40.277612 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262960819", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.035073, 40.277612 ] } } ] } ] } , @@ -51787,13 +51787,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12630 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023019, 38.082569 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12629 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023019, 38.082569 ] } } ] } ] } , @@ -51973,7 +51973,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12440 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277146035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029891, 39.706099 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107277146035", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.029888, 39.706099 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504212563", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.027074, 39.706852 ] } } ] } @@ -52065,7 +52065,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12411 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023472, 39.947672 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066284342", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.023470, 39.947672 ] } } ] } ] } , @@ -52075,7 +52075,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107292826235", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032900, 39.958880 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066286336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026007, 39.958833 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066286336", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.026007, 39.958831 ] } } ] } ] } , @@ -52267,7 +52267,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8553, "y": 12221 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032648, 41.532491 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047022466", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.032648, 41.532489 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110333252865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.025090, 41.531224 ] } } ] } @@ -52323,13 +52323,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12630 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023019, 38.082569 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12629 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023022, 38.082569 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447935", "POINTID": "1102653996275", "FULLNAME": "Rehoboth", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.023019, 38.082569 ] } } ] } ] } , @@ -52473,7 +52473,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066759616", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.021407, 39.678666 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096256", "POINTID": "1102654007610", "FULLNAME": "Big Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.018207, 39.674304 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096256", "POINTID": "1102654007610", "FULLNAME": "Big Run Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.018207, 39.674301 ] } } ] } ] } , @@ -52535,7 +52535,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341699", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.020736, 39.792642 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.014709, 39.795263 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052341676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.014707, 39.795263 ] } } ] } ] } , @@ -52689,7 +52689,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8554, "y": 12391 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860722555", "FULLNAME": "Quarter Path Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022295, 40.119740 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110860722555", "FULLNAME": "Quarter Path Rd", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.022292, 40.119740 ] } } ] } ] } , @@ -53087,7 +53087,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066379843", "FULLNAME": "Elem Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -86.011271, 40.050296 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440192", "POINTID": "1102653993192", "FULLNAME": "Noblesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.008591, 40.045592 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440192", "POINTID": "1102653993192", "FULLNAME": "Noblesville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.008589, 40.045592 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433219", "POINTID": "1102654011029", "FULLNAME": "Crownland Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -86.001368, 40.052538 ] } } ] } @@ -53097,19 +53097,19 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006655, 40.061236 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005721, 40.061222 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005719, 40.061222 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12397 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.007915, 40.067062 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066293719", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.007913, 40.067062 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066300834", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.004147, 40.069178 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495488", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.006655, 40.061236 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005721, 40.061222 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977495487", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005719, 40.061222 ] } } ] } ] } , @@ -53163,7 +53163,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12231 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101916202547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010383, 41.448692 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1101916202547", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.010380, 41.448692 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439936", "POINTID": "1102653992045", "FULLNAME": "Nappanee", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -86.001384, 41.442825 ] } } ] } @@ -53177,7 +53177,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8555, "y": 12220 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005689, 41.539918 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046960523", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -86.005687, 41.539918 ] } } ] } ] } , @@ -53439,7 +53439,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12406 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995545, 39.990877 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723680", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995542, 39.990877 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977723681", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.995288, 39.991775 ] } } ] } @@ -53497,7 +53497,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105578902928", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.992989, 40.070013 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989920, 40.071046 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989918, 40.071046 ] } } ] } ] } , @@ -53515,7 +53515,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8556, "y": 12370 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442990", "POINTID": "1102654019274", "FULLNAME": "Sandbank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.990258, 40.291982 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442990", "POINTID": "1102654019274", "FULLNAME": "Sandbank Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.990258, 40.291980 ] } } ] } ] } , @@ -53843,7 +53843,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449451", "POINTID": "1102653963471", "FULLNAME": "Washington Shoppes", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.988987, 39.773753 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980066, 39.769422 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977468566", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.980066, 39.769420 ] } } ] } ] } , @@ -53861,7 +53861,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12429 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989330, 39.796246 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977469160", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989328, 39.796246 ] } } ] } ] } , @@ -53897,7 +53897,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478084", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.988866, 39.876050 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981490, 39.876106 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066772841", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.981488, 39.876106 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105014478122", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.988826, 39.874949 ] } } , @@ -54039,7 +54039,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8557, "y": 12396 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989920, 40.071046 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052090727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.989918, 40.071046 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977692828", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.983486, 40.072866 ] } } ] } @@ -54227,7 +54227,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12605 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089463398", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.975630, 38.294618 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089463398", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.975627, 38.294618 ] } } ] } ] } , @@ -54279,7 +54279,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010881935862", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.975152, 39.181169 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100053051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971065, 39.172989 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100053051", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.971065, 39.172987 ] } } ] } ] } , @@ -54399,7 +54399,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12438 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096260", "POINTID": "1102654008767", "FULLNAME": "Buck Creek Christian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.974994, 39.717501 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "02096260", "POINTID": "1102654008767", "FULLNAME": "Buck Creek Christian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.974994, 39.717499 ] } } ] } ] } , @@ -54599,7 +54599,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8558, "y": 12403 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886860480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973125, 40.015968 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010886860480", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.973125, 40.015966 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104745595447", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.969774, 40.012527 ] } } ] } @@ -55107,7 +55107,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12394 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259024500", "FULLNAME": "Hall Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.965856, 40.090922 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259024500", "FULLNAME": "Hall Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.965853, 40.090922 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104259024426", "FULLNAME": "Sylvan Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.964858, 40.089707 ] } } , @@ -55167,7 +55167,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8559, "y": 12231 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966368, 41.447620 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047305713", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.966365, 41.447620 ] } } ] } ] } , @@ -55355,7 +55355,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12494 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100050705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951605, 39.242426 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100050705", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.951602, 39.242426 ] } } ] } ] } , @@ -55381,7 +55381,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8560, "y": 12489 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100066933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952549, 39.287514 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100066933", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.952547, 39.287514 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103723366600", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949111, 39.284106 ] } } ] } @@ -55591,7 +55591,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622626", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.957042, 39.964914 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954177, 39.965878 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977622627", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.954175, 39.965878 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104469977491", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.949068, 39.966826 ] } } , @@ -56217,7 +56217,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12370 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292470", "FULLNAME": "Ellison Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.941204, 40.293913 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292470", "FULLNAME": "Ellison Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.941201, 40.293913 ] } } ] } ] } , @@ -56289,7 +56289,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12231 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292220", "FULLNAME": "Nappanee Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.936043, 41.446154 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292220", "FULLNAME": "Nappanee Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.936040, 41.446154 ] } } ] } ] } , @@ -56315,7 +56315,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8561, "y": 12210 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620544 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620542 ] } } ] } ] } , @@ -56419,7 +56419,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12601 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108274909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931840, 38.330556 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108274909", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.931840, 38.330554 ] } } ] } ] } , @@ -56525,7 +56525,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12450 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622485 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622483 ] } } ] } ] } , @@ -56535,7 +56535,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052159267", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.932272, 39.624716 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622485 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436523", "POINTID": "1102654013852", "FULLNAME": "House Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.925802, 39.622483 ] } } ] } ] } , @@ -56567,7 +56567,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443071", "POINTID": "1102654019354", "FULLNAME": "Schildmeier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.933031, 39.731711 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928890, 39.731991 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110127926", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.928890, 39.731989 ] } } ] } ] } , @@ -56647,7 +56647,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110107340", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.930850, 39.926035 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.929418, 39.925432 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110174270", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.929418, 39.925430 ] } } ] } ] } , @@ -56789,9 +56789,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8562, "y": 12210 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620544 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892788766", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.935142, 41.620542 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892783178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933409, 41.620544 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108892783178", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.933409, 41.620542 ] } } ] } ] } , @@ -56963,7 +56963,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8563, "y": 12506 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445368", "POINTID": "1102654001728", "FULLNAME": "Walesboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.914430, 39.145330 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445368", "POINTID": "1102654001728", "FULLNAME": "Walesboro", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.914430, 39.145328 ] } } ] } ] } , @@ -57153,7 +57153,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439557", "POINTID": "1102653991644", "FULLNAME": "Mt Comfort", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.915253, 39.830876 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098026501", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.915165, 39.826954 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109098026501", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.915165, 39.826952 ] } } ] } ] } , @@ -57575,7 +57575,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440895", "POINTID": "1102653994491", "FULLNAME": "Parkside", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.911377, 39.238382 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440238", "POINTID": "1102653993259", "FULLNAME": "North Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.908322, 39.233383 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440238", "POINTID": "1102653993259", "FULLNAME": "North Columbus", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.908322, 39.233381 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262914993", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901939, 39.233292 ] } } ] } @@ -57685,7 +57685,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473517", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.907080, 39.943439 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912405, 39.942850 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977473469", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.912405, 39.942848 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977476793", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901928, 39.937174 ] } } ] } @@ -57857,7 +57857,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8564, "y": 12198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047029085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910795, 41.720671 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047029085", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.910793, 41.720671 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052326482", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.907416, 41.716687 ] } } ] } @@ -58007,7 +58007,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12496 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262915987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898173, 39.232403 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262915987", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898170, 39.232403 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262916054", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.901306, 39.231462 ] } } , @@ -58217,9 +58217,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12408 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898495, 39.972201 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104977486452", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.898495, 39.972199 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060014308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895456, 39.969899 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107060014308", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.895453, 39.969899 ] } } ] } ] } , @@ -58279,7 +58279,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12213 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444307", "POINTID": "1102654020541", "FULLNAME": "Stutsman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.900828, 41.596714 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444307", "POINTID": "1102654020541", "FULLNAME": "Stutsman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.900826, 41.596714 ] } } ] } ] } , @@ -58309,7 +58309,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8565, "y": 12206 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304635", "FULLNAME": "Blossom Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896738, 41.648916 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304635", "FULLNAME": "Blossom Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.896738, 41.648914 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730304480", "FULLNAME": "Forsythia Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.893125, 41.649282 ] } } ] } @@ -58757,7 +58757,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880301, 41.615111 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880299, 41.615111 ] } } ] } ] } , @@ -58809,7 +58809,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8566, "y": 12199 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072906098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885676, 41.712036 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072906098", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.885676, 41.712034 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103729795476", "FULLNAME": "Country Rd 10", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880240, 41.706654 ] } } ] } @@ -58855,7 +58855,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12603 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476604985", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879591, 38.309256 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476604985", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879588, 38.309256 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106081579209", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.874610, 38.308075 ] } } ] } @@ -58957,7 +58957,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717522", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.879727, 39.232394 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877767, 39.230950 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717529", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877767, 39.230948 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449409", "POINTID": "1102653958966", "FULLNAME": "Holiday Center Shopping Ctr", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.875819, 39.224771 ] } } ] } @@ -58981,7 +58981,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046717409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.878931, 39.243808 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100079535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872539, 39.243189 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110100079535", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.872536, 39.243189 ] } } ] } ] } , @@ -59119,9 +59119,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8567, "y": 12211 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880301, 41.615111 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730297718", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.880299, 41.615111 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687137865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877423, 41.612968 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103687137865", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.877421, 41.612968 ] } } ] } ] } , @@ -59201,7 +59201,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12598 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442688", "POINTID": "1102653997356", "FULLNAME": "Saint Marys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.864685, 38.355899 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442688", "POINTID": "1102653997356", "FULLNAME": "Saint Marys", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.864685, 38.355897 ] } } ] } ] } , @@ -59225,7 +59225,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047930696", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.865793, 38.436459 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047931464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.860802, 38.439974 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047931464", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.860802, 38.439972 ] } } ] } ] } , @@ -59477,7 +59477,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8568, "y": 12378 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439664", "POINTID": "1102654016491", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.863588, 40.226149 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439664", "POINTID": "1102654016491", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.863586, 40.226149 ] } } ] } ] } , @@ -59697,7 +59697,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8569, "y": 12512 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091720 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091718 ] } } ] } ] } , @@ -60061,7 +60061,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12600 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888794849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842825, 38.336119 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888794849", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842823, 38.336119 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888794848", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.840959, 38.337024 ] } } ] } @@ -60069,7 +60069,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12599 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476314364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837651, 38.349810 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476314364", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.837649, 38.349810 ] } } ] } ] } , @@ -60129,7 +60129,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12512 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091720 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430372", "POINTID": "1102653966218", "FULLNAME": "Azalia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.847200, 39.091718 ] } } ] } ] } , @@ -60253,13 +60253,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12370 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836512, 40.293662 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108476487330", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.836509, 40.293662 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12368 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432764", "POINTID": "1102653973517", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.841922, 40.305870 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432764", "POINTID": "1102653973517", "FULLNAME": "College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.841919, 40.305870 ] } } ] } ] } , @@ -60325,13 +60325,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12256 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262941397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842276, 41.242372 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262941397", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.842273, 41.242372 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8570, "y": 12255 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440486", "POINTID": "1102654017119", "FULLNAME": "Oakwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.840267, 41.246154 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440486", "POINTID": "1102654017119", "FULLNAME": "Oakwood Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.840264, 41.246154 ] } } ] } ] } , @@ -60471,7 +60471,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12602 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888810021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835262, 38.320317 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888810021", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.835262, 38.320315 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010888816101", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.834993, 38.315923 ] } } ] } @@ -60493,7 +60493,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12597 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430447", "POINTID": "1102653950700", "FULLNAME": "Bald Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.827464, 38.361731 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430447", "POINTID": "1102653950700", "FULLNAME": "Bald Knob", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -85.827462, 38.361731 ] } } ] } ] } , @@ -60615,13 +60615,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12425 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444329", "POINTID": "1102654020543", "FULLNAME": "Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.825807, 39.825598 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444329", "POINTID": "1102654020543", "FULLNAME": "Sugar Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.825807, 39.825596 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8571, "y": 12417 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110117682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832802, 39.901136 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110117682", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832799, 39.901136 ] } } ] } ] } , @@ -60867,7 +60867,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479341", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.832679, 41.647048 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830045, 41.646573 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047479357", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.830045, 41.646571 ] } } ] } ] } , @@ -61763,7 +61763,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12541 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433006", "POINTID": "1102654010693", "FULLNAME": "Coryell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.796914, 38.844500 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433006", "POINTID": "1102654010693", "FULLNAME": "Coryell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.796914, 38.844498 ] } } ] } ] } , @@ -61851,7 +61851,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885187", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.793811, 39.795999 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.792126, 39.796207 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104492885106", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.792126, 39.796205 ] } } ] } ] } , @@ -61899,7 +61899,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12264 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135090863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802260, 41.177477 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011135090863", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.802260, 41.177475 ] } } ] } ] } , @@ -61945,7 +61945,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8574, "y": 12221 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292236", "FULLNAME": "Goshen Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.792883, 41.525696 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292236", "FULLNAME": "Goshen Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.792883, 41.525694 ] } } ] } ] } , @@ -62021,7 +62021,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12597 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.782304, 38.366501 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107051948831", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.782304, 38.366499 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108271749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781607, 38.360848 ] } } ] } @@ -62219,7 +62219,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12424 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110161155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781502, 39.836276 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110161155", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.781499, 39.836276 ] } } ] } ] } , @@ -62251,7 +62251,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8575, "y": 12390 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435636", "POINTID": "1102653982154", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.784976, 40.123095 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435636", "POINTID": "1102653982154", "FULLNAME": "Hamilton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.784973, 40.123095 ] } } ] } ] } , @@ -62429,7 +62429,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047966802", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.776776, 38.319162 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047967548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773123, 38.316144 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047967548", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.773123, 38.316142 ] } } ] } ] } , @@ -62479,7 +62479,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12592 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443665", "POINTID": "1102654019930", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.773852, 38.409507 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443665", "POINTID": "1102654019930", "FULLNAME": "Smith Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.773850, 38.409507 ] } } ] } ] } , @@ -62491,7 +62491,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12588 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471420868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774789, 38.444165 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104471420868", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.774786, 38.444165 ] } } ] } ] } , @@ -62597,7 +62597,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12487 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439422", "POINTID": "1102654016216", "FULLNAME": "Moravian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.774982, 39.300882 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439422", "POINTID": "1102654016216", "FULLNAME": "Moravian Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.774979, 39.300882 ] } } ] } ] } , @@ -62663,7 +62663,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12438 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504184811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779107, 39.722345 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504184811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.779104, 39.722345 ] } } ] } ] } , @@ -62701,7 +62701,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12426 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015681769764", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.780351, 39.824731 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015681769764", "MTFCC": "C3062" }, "geometry": { "type": "Point", "coordinates": [ -85.780351, 39.824729 ] } } ] } ] } , @@ -62817,7 +62817,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12246 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776932, 41.327268 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776929, 41.327268 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11011229133790", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.771658, 41.324251 ] } } ] } @@ -62827,13 +62827,13 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430769", "POINTID": "1102653967451", "FULLNAME": "Bell Rohr Park", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.781097, 41.331711 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776932, 41.327268 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444232", "POINTID": "1102653999654", "FULLNAME": "Stony Ridge", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.776929, 41.327268 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12244 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777801, 41.341658 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262936721", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.777798, 41.341658 ] } } ] } ] } , @@ -62885,7 +62885,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8576, "y": 12207 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648443 ] } } ] } ] } , @@ -62893,7 +62893,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439980", "POINTID": "1102654016695", "FULLNAME": "Neff Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.772769, 41.655882 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648443 ] } } ] } ] } , @@ -63223,13 +63223,13 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432947", "POINTID": "1102653973819", "FULLNAME": "Cooper Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.871709 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432945", "POINTID": "1102654010583", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.761919, 39.871431 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432945", "POINTID": "1102654010583", "FULLNAME": "Cooper Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.761917, 39.871431 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12416 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434004", "POINTID": "1102653977110", "FULLNAME": "Eden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.906154 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434004", "POINTID": "1102653977110", "FULLNAME": "Eden", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.769974, 39.906152 ] } } ] } ] } , @@ -63335,7 +63335,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8577, "y": 12207 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648443 ] } } ] } ] } , @@ -63343,7 +63343,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230959", "FULLNAME": "Crystal Spring Drive", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770288, 41.652581 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648445 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1103730230805", "FULLNAME": "Crystal Spring Ct", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.770159, 41.648443 ] } } ] } ] } , @@ -63411,7 +63411,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12596 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047294672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757864, 38.371220 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047294672", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757864, 38.371218 ] } } ] } ] } , @@ -63467,7 +63467,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12509 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113314182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757397, 39.115988 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113314182", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.757397, 39.115985 ] } } ] } ] } , @@ -63535,7 +63535,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12447 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440979", "POINTID": "1102654017731", "FULLNAME": "Pelham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.758030, 39.646713 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440979", "POINTID": "1102654017731", "FULLNAME": "Pelham Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.758030, 39.646711 ] } } ] } ] } , @@ -63553,7 +63553,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8578, "y": 12432 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.752081, 39.774491 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110110176248", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.752081, 39.774489 ] } } ] } ] } , @@ -63783,7 +63783,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12564 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648949 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648946 ] } } ] } ] } , @@ -63945,7 +63945,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8579, "y": 12330 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436915", "POINTID": "1102653985228", "FULLNAME": "Jalapa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.745534, 40.627817 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436915", "POINTID": "1102653985228", "FULLNAME": "Jalapa", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.745531, 40.627817 ] } } ] } ] } , @@ -64093,7 +64093,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12600 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735266, 38.339504 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048119676", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735266, 38.339502 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103629999", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.735038, 38.332932 ] } } ] } @@ -64145,7 +64145,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12564 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648949 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436447", "POINTID": "1102654013789", "FULLNAME": "Hopewell Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.737466, 38.648946 ] } } ] } ] } , @@ -64229,7 +64229,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12416 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432912", "POINTID": "1102654010540", "FULLNAME": "Cook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728585, 39.908654 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432912", "POINTID": "1102654010540", "FULLNAME": "Cook Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.728585, 39.908652 ] } } ] } ] } , @@ -64319,7 +64319,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8580, "y": 12281 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437841", "POINTID": "1102653987928", "FULLNAME": "Liberty Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.735816, 41.033656 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437841", "POINTID": "1102653987928", "FULLNAME": "Liberty Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.735813, 41.033656 ] } } ] } ] } , @@ -64781,7 +64781,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12605 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048134377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714978, 38.298176 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105048134377", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.714978, 38.298174 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110103620749", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.707374, 38.289985 ] } } ] } @@ -65011,7 +65011,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8582, "y": 12261 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441110", "POINTID": "1102653994935", "FULLNAME": "Pierceton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.705539, 41.200322 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441110", "POINTID": "1102653994935", "FULLNAME": "Pierceton", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.705537, 41.200322 ] } } ] } ] } , @@ -65715,7 +65715,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12390 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433028", "POINTID": "1102653974062", "FULLNAME": "Country Club Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687196, 40.122818 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433028", "POINTID": "1102653974062", "FULLNAME": "Country Club Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687193, 40.122818 ] } } ] } ] } , @@ -65733,7 +65733,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12372 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108483640599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684277, 40.276853 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1108483640599", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.684277, 40.276851 ] } } ] } ] } , @@ -65745,7 +65745,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8584, "y": 12250 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089440843", "FULLNAME": "Lakeview Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687354, 41.286709 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089440843", "FULLNAME": "Lakeview Spring", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.687354, 41.286707 ] } } ] } ] } , @@ -66027,13 +66027,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12374 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262785 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262783 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8585, "y": 12373 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262785 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430066", "POINTID": "1102653964381", "FULLNAME": "Alexandria", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.675780, 40.262783 ] } } ] } ] } , @@ -66179,7 +66179,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8586, "y": 12589 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244553", "FULLNAME": "Charlestown Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.670609, 38.435226 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110104244553", "FULLNAME": "Charlestown Mid Schl", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.670609, 38.435224 ] } } ] } ] } , @@ -66611,7 +66611,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8587, "y": 12355 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066212431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.658145, 40.416326 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11066212431", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.658142, 40.416326 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434304", "POINTID": "1102653978292", "FULLNAME": "Fairmount", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.650527, 40.415316 ] } } ] } @@ -67153,13 +67153,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12393 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631956, 40.103331 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631953, 40.103331 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8589, "y": 12392 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631956, 40.103331 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015503775376", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.631953, 40.103331 ] } } ] } ] } , @@ -67255,7 +67255,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8590, "y": 12522 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440310", "POINTID": "1102653993444", "FULLNAME": "North Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.623576, 39.006166 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440310", "POINTID": "1102653993444", "FULLNAME": "North Vernon", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.623576, 39.006164 ] } } ] } ] } , @@ -67433,7 +67433,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8591, "y": 12583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107120229757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.609227, 38.485876 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107120229757", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.609227, 38.485874 ] } } ] } ] } , @@ -68055,7 +68055,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12455 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436372", "POINTID": "1102653984116", "FULLNAME": "Homer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.578027, 39.578101 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436372", "POINTID": "1102653984116", "FULLNAME": "Homer", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.578024, 39.578101 ] } } ] } ] } , @@ -68103,7 +68103,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8594, "y": 12333 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435674", "POINTID": "1102653982280", "FULLNAME": "Hanfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.580251, 40.604486 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435674", "POINTID": "1102653982280", "FULLNAME": "Hanfield", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.580248, 40.604486 ] } } ] } ] } , @@ -68343,7 +68343,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8596, "y": 12404 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449694", "POINTID": "1102653990120", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.557194, 40.005045 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449694", "POINTID": "1102653990120", "FULLNAME": "Mechanicsburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.557192, 40.005045 ] } } ] } ] } , @@ -68755,7 +68755,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8599, "y": 12581 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436086", "POINTID": "1102653983348", "FULLNAME": "Hibernia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.525512, 38.502007 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436086", "POINTID": "1102653983348", "FULLNAME": "Hibernia", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.525512, 38.502005 ] } } ] } ] } , @@ -68965,7 +68965,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8600, "y": 12548 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439959", "POINTID": "1102654016662", "FULLNAME": "Neavill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.513571, 38.784781 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439959", "POINTID": "1102654016662", "FULLNAME": "Neavill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.513571, 38.784779 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439960", "POINTID": "1102653992132", "FULLNAME": "Neavill Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.511626, 38.783390 ] } } ] } @@ -69257,7 +69257,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12537 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112799604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.496241, 38.874348 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110112799604", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.496238, 38.874348 ] } } ] } ] } , @@ -69269,7 +69269,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8601, "y": 12490 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439650", "POINTID": "1102654016466", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501638, 39.282551 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439650", "POINTID": "1102654016466", "FULLNAME": "Mount Pleasant Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.501635, 39.282551 ] } } ] } ] } , @@ -69687,7 +69687,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12260 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.494967, 41.211187 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046683050", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.494967, 41.211185 ] } } ] } ] } , @@ -69699,7 +69699,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8602, "y": 12257 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433111", "POINTID": "1102653974309", "FULLNAME": "Cresco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.491644, 41.235880 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00433111", "POINTID": "1102653974309", "FULLNAME": "Cresco", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.491644, 41.235878 ] } } ] } ] } , @@ -69897,7 +69897,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046698534", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.483549, 40.203258 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.475789, 40.197269 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046700317", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.475789, 40.197267 ] } } ] } ] } , @@ -70093,7 +70093,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12551 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292313", "FULLNAME": "Madison Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.464693, 38.759915 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292313", "FULLNAME": "Madison Municipal Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.464690, 38.759915 ] } } ] } ] } , @@ -70151,7 +70151,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12470 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446089", "POINTID": "1102654002954", "FULLNAME": "Williamstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.469135, 39.452828 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446089", "POINTID": "1102654002954", "FULLNAME": "Williamstown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.469135, 39.452826 ] } } ] } ] } , @@ -70227,7 +70227,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8604, "y": 12360 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440637", "POINTID": "1102654017437", "FULLNAME": "Olive Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.472745, 40.378653 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440637", "POINTID": "1102654017437", "FULLNAME": "Olive Branch Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.472745, 40.378651 ] } } ] } ] } , @@ -70597,7 +70597,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8606, "y": 12451 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442410", "POINTID": "1102653997229", "FULLNAME": "Rushville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.446355, 39.609214 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442410", "POINTID": "1102653997229", "FULLNAME": "Rushville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.446355, 39.609211 ] } } ] } ] } , @@ -70873,7 +70873,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12377 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.436750, 40.236485 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696821", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.436747, 40.236485 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105046696908", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.434768, 40.233987 ] } } ] } @@ -70923,7 +70923,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12251 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292647", "FULLNAME": "Shaffer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.437310, 41.281979 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292647", "FULLNAME": "Shaffer Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.437310, 41.281977 ] } } ] } ] } , @@ -70989,7 +70989,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8607, "y": 12195 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444073", "POINTID": "1102653999386", "FULLNAME": "Star Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.437479, 41.745329 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444073", "POINTID": "1102653999386", "FULLNAME": "Star Mill", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.437479, 41.745327 ] } } ] } ] } , @@ -71149,7 +71149,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.429771, 41.390831 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.428730, 41.390803 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202339422", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.428727, 41.390803 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1102202752365", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.423771, 41.389435 ] } } ] } @@ -71177,7 +71177,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436547", "POINTID": "1102653984373", "FULLNAME": "Howe", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.420533, 41.721440 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418591, 41.715049 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418589, 41.715049 ] } } ] } ] } , @@ -71223,7 +71223,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12485 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438817", "POINTID": "1102653989958", "FULLNAME": "McCoy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.414412, 39.323106 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00438817", "POINTID": "1102653989958", "FULLNAME": "McCoy", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.414410, 39.323106 ] } } ] } ] } , @@ -71285,7 +71285,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12325 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441837", "POINTID": "1102654018341", "FULLNAME": "Redmen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.413594, 40.671049 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441837", "POINTID": "1102654018341", "FULLNAME": "Redmen Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.413592, 40.671049 ] } } ] } ] } , @@ -71395,7 +71395,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8609, "y": 12198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418591, 41.715049 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451933", "POINTID": "1102654018601", "FULLNAME": "Riverside Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.418589, 41.715049 ] } } ] } ] } , @@ -71671,7 +71671,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8611, "y": 12376 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292276", "FULLNAME": "Delaware County Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.395747, 40.242470 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292276", "FULLNAME": "Delaware County Regional Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.395744, 40.242470 ] } } ] } ] } , @@ -72613,7 +72613,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8615, "y": 12402 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437721", "POINTID": "1102654014913", "FULLNAME": "Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.352188, 40.026436 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437721", "POINTID": "1102654014913", "FULLNAME": "Lebanon Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.352188, 40.026433 ] } } ] } ] } , @@ -72929,7 +72929,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8616, "y": 12207 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432538", "FULLNAME": "Plato", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.331602, 41.641604 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432538", "FULLNAME": "Plato", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.331602, 41.641602 ] } } ] } ] } , @@ -73053,7 +73053,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8617, "y": 12307 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063103370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.328359, 40.820279 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11063103370", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.328356, 40.820279 ] } } ] } ] } , @@ -73385,7 +73385,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047954", "FULLNAME": "Indian Kentucky Church", "MTFCC": "K3544" }, "geometry": { "type": "Point", "coordinates": [ -85.307052, 38.873141 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297755, 38.865989 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297752, 38.865989 ] } } ] } ] } , @@ -73571,7 +73571,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8619, "y": 12281 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302604, 41.029910 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013551", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.302604, 41.029908 ] } } ] } ] } , @@ -73649,7 +73649,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12538 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297755, 38.865989 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110113047911", "FULLNAME": "Canaan Elem School", "MTFCC": "K2543" }, "geometry": { "type": "Point", "coordinates": [ -85.297752, 38.865989 ] } } ] } ] } , @@ -73787,7 +73787,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013345", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.297508, 41.020590 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.289910, 41.019064 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052013335", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.289907, 41.019064 ] } } ] } ] } , @@ -73857,7 +73857,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8620, "y": 12256 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504291993", "FULLNAME": "Tropria Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.296197, 41.244202 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504291993", "FULLNAME": "Tropria Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.296194, 41.244202 ] } } ] } ] } , @@ -73979,7 +73979,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8621, "y": 12296 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436530", "POINTID": "1102654013857", "FULLNAME": "Hoverstock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.280246, 40.912825 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436530", "POINTID": "1102654013857", "FULLNAME": "Hoverstock Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.280246, 40.912823 ] } } ] } ] } , @@ -74117,7 +74117,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00451919", "POINTID": "1102654016160", "FULLNAME": "Mongo Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.283306, 41.683662 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432669", "FULLNAME": "Mongo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280235, 41.684451 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105089432669", "FULLNAME": "Mongo", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.280235, 41.684449 ] } } ] } ] } , @@ -74293,7 +74293,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052009486", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.273966, 41.060841 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264716, 41.059006 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052006449", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264713, 41.059006 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052007983", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.264748, 41.054429 ] } } ] } @@ -74681,7 +74681,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12514 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445260", "POINTID": "1102654001482", "FULLNAME": "Versailles", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251903, 39.071999 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445260", "POINTID": "1102654001482", "FULLNAME": "Versailles", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251903, 39.071997 ] } } ] } ] } , @@ -74737,7 +74737,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12405 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439408", "POINTID": "1102653991366", "FULLNAME": "Mooreland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251074, 39.997545 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439408", "POINTID": "1102653991366", "FULLNAME": "Mooreland", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.251071, 39.997545 ] } } ] } ] } , @@ -74755,7 +74755,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8624, "y": 12374 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292286", "FULLNAME": "Chuck's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.252023, 40.259473 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292286", "FULLNAME": "Chuck's Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.252023, 40.259471 ] } } ] } ] } , @@ -74999,7 +74999,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8625, "y": 12487 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436629", "POINTID": "1102653984570", "FULLNAME": "Huntersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.233017, 39.303662 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436629", "POINTID": "1102653984570", "FULLNAME": "Huntersville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.233015, 39.303662 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110108915025", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.238832, 39.300179 ] } } ] } @@ -75445,7 +75445,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8626, "y": 12194 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435437", "POINTID": "1102653981655", "FULLNAME": "Greenfield Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.225526, 41.750606 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435437", "POINTID": "1102653981655", "FULLNAME": "Greenfield Mills", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.225526, 41.750604 ] } } ] } ] } , @@ -75517,7 +75517,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12485 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072997019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.215658, 39.319421 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1109072997019", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.215655, 39.319421 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11010866122784", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.211428, 39.318479 ] } } ] } @@ -75531,7 +75531,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8627, "y": 12469 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439123", "POINTID": "1102653990556", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.216629, 39.459770 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439123", "POINTID": "1102653990556", "FULLNAME": "Midway", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.216626, 39.459770 ] } } ] } ] } , @@ -75777,7 +75777,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8628, "y": 12388 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444497", "POINTID": "1102654020671", "FULLNAME": "Swingley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203296, 40.144766 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444497", "POINTID": "1102654020671", "FULLNAME": "Swingley Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.203296, 40.144764 ] } } ] } ] } , @@ -76085,7 +76085,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8629, "y": 12279 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.196697, 41.047313 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005726", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.196695, 41.047313 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052005727", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.193047, 41.047813 ] } } ] } @@ -76415,7 +76415,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8631, "y": 12552 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434549", "POINTID": "1102653978957", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.174953, 38.746729 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434549", "POINTID": "1102653978957", "FULLNAME": "Five Points", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.174950, 38.746729 ] } } ] } ] } , @@ -76837,7 +76837,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12427 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432120", "POINTID": "1102654009262", "FULLNAME": "Capitol Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.156907, 39.809766 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432120", "POINTID": "1102654009262", "FULLNAME": "Capitol Hill Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.156904, 39.809766 ] } } ] } ] } , @@ -76849,7 +76849,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8632, "y": 12418 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292522", "FULLNAME": "Hagerstown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.162054, 39.888595 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292522", "FULLNAME": "Hagerstown Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -85.162051, 39.888595 ] } } ] } ] } , @@ -77341,7 +77341,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12265 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062795884", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144303, 41.170405 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062795884", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.144303, 41.170403 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11062790409", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.151204, 41.166328 ] } } ] } @@ -77383,7 +77383,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8633, "y": 12260 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.152808, 41.204750 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1105047774651", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.152808, 41.204748 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015501438150", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.146119, 41.210341 ] } } ] } @@ -77625,7 +77625,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8634, "y": 12265 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142994, 41.166811 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042812", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.142994, 41.166809 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052042278", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.138268, 41.163610 ] } } ] } @@ -77803,7 +77803,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12456 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439735", "POINTID": "1102654016562", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.126072, 39.570325 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00439735", "POINTID": "1102654016562", "FULLNAME": "Mount Zion Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.126069, 39.570325 ] } } ] } ] } , @@ -77865,7 +77865,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8635, "y": 12384 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452093", "POINTID": "1102653980552", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.129133, 40.170876 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452093", "POINTID": "1102653980552", "FULLNAME": "Georgetown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.129130, 40.170876 ] } } ] } ] } , @@ -77955,7 +77955,7 @@ , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052044677", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.129248, 41.180626 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.124122, 41.180879 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052039387", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.124122, 41.180877 ] } } ] } ] } , @@ -78277,7 +78277,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12529 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441759", "POINTID": "1102654018274", "FULLNAME": "Rand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.103842, 38.942836 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441759", "POINTID": "1102654018274", "FULLNAME": "Rand Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.103842, 38.942834 ] } } ] } ] } , @@ -78359,7 +78359,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8637, "y": 12354 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445973", "POINTID": "1102654021924", "FULLNAME": "Whiteman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.105245, 40.428376 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445973", "POINTID": "1102654021924", "FULLNAME": "Whiteman Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.105242, 40.428376 ] } } ] } ] } , @@ -78453,7 +78453,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432869", "POINTID": "1102653973723", "FULLNAME": "Concordia Gardens", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.106634, 41.145604 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.101388, 41.138254 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061124", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.101388, 41.138252 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052081574", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.102198, 41.137151 ] } } ] } @@ -78845,7 +78845,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00440397", "POINTID": "1102653993613", "FULLNAME": "Oak Forest", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.085236, 39.384772 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446246", "POINTID": "1102654022142", "FULLNAME": "Wolf Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.079681, 39.383661 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00446246", "POINTID": "1102654022142", "FULLNAME": "Wolf Creek Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.079678, 39.383661 ] } } ] } ] } , @@ -78953,7 +78953,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435430", "POINTID": "1102653981621", "FULLNAME": "Greendale", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.088854, 41.113380 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078004, 41.115957 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052061227", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.078002, 41.115957 ] } } ] } ] } , @@ -79131,7 +79131,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8640, "y": 12471 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447630", "POINTID": "1102654003436", "FULLNAME": "Yellow Bank", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.069124, 39.437550 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00447630", "POINTID": "1102654003436", "FULLNAME": "Yellow Bank", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.069124, 39.437548 ] } } ] } ] } , @@ -79737,7 +79737,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8642, "y": 12497 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449744", "POINTID": "1102654002162", "FULLNAME": "Weisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.046065, 39.218109 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00449744", "POINTID": "1102654002162", "FULLNAME": "Weisburg", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.046065, 39.218107 ] } } ] } ] } , @@ -79981,7 +79981,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12518 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444856", "POINTID": "1102654021002", "FULLNAME": "Transier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.041620, 39.040613 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00444856", "POINTID": "1102654021002", "FULLNAME": "Transier Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.041620, 39.040611 ] } } ] } ] } , @@ -80061,7 +80061,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12354 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442455", "POINTID": "1102654018832", "FULLNAME": "Sager Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.039689, 40.423933 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442455", "POINTID": "1102654018832", "FULLNAME": "Sager Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.039686, 40.423933 ] } } ] } ] } , @@ -80187,7 +80187,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8643, "y": 12258 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483520826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034850, 41.225368 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015483520826", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034848, 41.225368 ] } } ] } ] } , @@ -80409,7 +80409,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8644, "y": 12270 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034268, 41.126573 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065667", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.034266, 41.126573 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052065668", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033407, 41.127252 ] } } , @@ -80453,7 +80453,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062347", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.024355, 41.160745 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023998, 41.155718 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1107052062344", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.023998, 41.155716 ] } } ] } ] } , @@ -80537,7 +80537,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11019626213286", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033662, 41.365994 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033469, 41.362457 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1106262911265", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.033469, 41.362455 ] } } ] } ] } , @@ -80689,7 +80689,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12334 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435825", "POINTID": "1102654013208", "FULLNAME": "Hartford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021632, 40.593100 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00435825", "POINTID": "1102654013208", "FULLNAME": "Hartford Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021630, 40.593100 ] } } ] } ] } , @@ -80755,13 +80755,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12271 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431398", "POINTID": "1102654008158", "FULLNAME": "Bowers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021909, 41.120048 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431398", "POINTID": "1102654008158", "FULLNAME": "Bowers Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -85.021909, 41.120046 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12269 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022477, 41.136886 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104482271636", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.022475, 41.136886 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "1104975878930", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -85.016963, 41.129625 ] } } ] } @@ -80837,7 +80837,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8645, "y": 12251 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436444", "POINTID": "1102653984319", "FULLNAME": "Hopewell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.020519, 41.281161 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00436444", "POINTID": "1102653984319", "FULLNAME": "Hopewell", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.020519, 41.281159 ] } } ] } ] } , @@ -80985,7 +80985,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8646, "y": 12455 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452138", "POINTID": "1102653962132", "FULLNAME": "Quakertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.001626, 39.580048 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00452138", "POINTID": "1102653962132", "FULLNAME": "Quakertown", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -85.001626, 39.580046 ] } } ] } ] } , @@ -81493,7 +81493,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12343 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441166", "POINTID": "1102654017854", "FULLNAME": "Pingrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.988298, 40.519490 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441166", "POINTID": "1102654017854", "FULLNAME": "Pingrey Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.988298, 40.519488 ] } } ] } ] } , @@ -81549,7 +81549,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12234 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986629, 41.426161 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986627, 41.426161 ] } } ] } ] } , @@ -81557,7 +81557,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11015504292112", "FULLNAME": "Walker/rowe Waterloo Arprt", "MTFCC": "K2451" }, "geometry": { "type": "Point", "coordinates": [ -84.981627, 41.431160 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986629, 41.426161 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00441992", "POINTID": "1102654018534", "FULLNAME": "Ridge Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.986627, 41.426161 ] } } ] } ] } , @@ -81571,7 +81571,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8648, "y": 12208 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348057811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986898, 41.638451 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110348057811", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.986898, 41.638449 ] } } ] } ] } , @@ -81847,7 +81847,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12467 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434966", "POINTID": "1102653952112", "FULLNAME": "Garr Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.957884, 39.472606 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00434966", "POINTID": "1102653952112", "FULLNAME": "Garr Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.957884, 39.472604 ] } } ] } ] } , @@ -81987,7 +81987,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8650, "y": 12246 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432857", "POINTID": "1102654010431", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.963573, 41.325604 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00432857", "POINTID": "1102654010431", "FULLNAME": "Concord Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.963571, 41.325604 ] } } ] } ] } , @@ -82273,7 +82273,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8652, "y": 12508 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437362", "POINTID": "1102653986232", "FULLNAME": "Kirschs Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.936617, 39.122001 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00437362", "POINTID": "1102653986232", "FULLNAME": "Kirschs Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.936617, 39.121999 ] } } ] } ] } , @@ -82521,7 +82521,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8653, "y": 12427 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.929195, 39.815290 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119477776", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.929193, 39.815290 ] } } ] } ] } , @@ -82931,7 +82931,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8655, "y": 12428 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442466", "POINTID": "1102654018835", "FULLNAME": "Saint Andrews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.903567, 39.806158 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00442466", "POINTID": "1102654018835", "FULLNAME": "Saint Andrews Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.903567, 39.806156 ] } } ] } ] } , @@ -83105,7 +83105,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12478 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431931", "POINTID": "1102653951440", "FULLNAME": "Cobbs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.900785, 39.378663 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431931", "POINTID": "1102653951440", "FULLNAME": "Cobbs Hl", "MTFCC": "C3022" }, "geometry": { "type": "Point", "coordinates": [ -84.900785, 39.378661 ] } } ] } ] } , @@ -83125,7 +83125,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "110119455444", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.894651, 39.850725 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443979", "POINTID": "1102653999165", "FULLNAME": "Spring Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.894125, 39.848380 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443979", "POINTID": "1102653999165", "FULLNAME": "Spring Grove", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.894123, 39.848380 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00443981", "POINTID": "1102653999175", "FULLNAME": "Spring Grove Heights", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.892457, 39.843380 ] } } ] } @@ -83179,7 +83179,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12305 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838834 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838832 ] } } , { "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406323", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900718, 40.836724 ] } } , @@ -83191,7 +83191,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8656, "y": 12304 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838834 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "POINTID": "11053406176", "MTFCC": "C3061" }, "geometry": { "type": "Point", "coordinates": [ -84.900584, 40.838832 ] } } ] } ] } , @@ -83509,7 +83509,7 @@ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431459", "POINTID": "1102653969240", "FULLNAME": "Braysville", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.869701, 39.288079 ] } } , -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869395, 39.285052 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869393, 39.285052 ] } } ] } ] } , @@ -83729,7 +83729,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8659, "y": 12489 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869395, 39.285052 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00431460", "POINTID": "1102654008268", "FULLNAME": "Braysville Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.869393, 39.285052 ] } } ] } ] } , @@ -84359,7 +84359,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8661, "y": 12473 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430290", "POINTID": "1102654006757", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.844950, 39.424774 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00430290", "POINTID": "1102654006757", "FULLNAME": "Asbury Cmtry", "MTFCC": "K2582" }, "geometry": { "type": "Point", "coordinates": [ -84.844950, 39.424772 ] } } ] } ] } , @@ -84737,7 +84737,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 15, "x": 8663, "y": 12456 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "tl_2021_18_pointlmshp", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445731", "POINTID": "1102654002252", "FULLNAME": "West College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.815931, 39.567453 ] } } +{ "type": "Feature", "properties": { "STATEFP": "18", "ANSICODE": "00445731", "POINTID": "1102654002252", "FULLNAME": "West College Corner", "MTFCC": "C3081" }, "geometry": { "type": "Point", "coordinates": [ -84.815931, 39.567451 ] } } ] } ] } , diff --git a/tests/single-polygons/out/-Z21_-zg_-D10_-d10.json b/tests/single-polygons/out/-Z21_-zg_-D10_-d10.json index 2899ca948..982ef42b5 100644 --- a/tests/single-polygons/out/-Z21_-zg_-D10_-d10.json +++ b/tests/single-polygons/out/-Z21_-zg_-D10_-d10.json @@ -1,6 +1,6 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "174.721517,-37.166211,174.721564,-37.166209", -"bounds": "174.721517,-37.166211,174.721564,-37.166209", +"antimeridian_adjusted_bounds": "174.721517,-37.166211,174.721564,-37.166210", +"bounds": "174.721517,-37.166211,174.721564,-37.166210", "center": "174.721541,-37.166211,22", "description": "tests/single-polygons/out/-Z21_-zg_-D10_-d10.json.check.mbtiles", "format": "pbf", @@ -9,69 +9,69 @@ "maxzoom": "22", "minzoom": "21", "name": "tests/single-polygons/out/-Z21_-zg_-D10_-d10.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{\"tiny_polygons\":27},{\"tiny_polygons\":1}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{\"tiny_polygons\":27},{\"tiny_polygons\":3}]", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 21, "x": 2066402, "y": 1282091 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 1024 }, "features": [ -{ "type": "Feature", "properties": { "seq": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721518, -37.166209 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166209 ], [ 174.721518, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166209 ], [ 174.721520, -37.166210 ], [ 174.721519, -37.166210 ], [ 174.721519, -37.166209 ], [ 174.721520, -37.166209 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721519, -37.166209 ], [ 174.721519, -37.166210 ], [ 174.721519, -37.166210 ], [ 174.721519, -37.166209 ], [ 174.721519, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721521, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166209 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166209 ], [ 174.721520, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721521, -37.166209 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166209 ], [ 174.721521, -37.166209 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721522, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721527, -37.166210 ], [ 174.721527, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721527, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721533, -37.166210 ], [ 174.721533, -37.166210 ], [ 174.721533, -37.166210 ], [ 174.721533, -37.166210 ], [ 174.721533, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721535, -37.166210 ], [ 174.721535, -37.166210 ], [ 174.721535, -37.166210 ], [ 174.721535, -37.166210 ], [ 174.721535, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721536, -37.166210 ], [ 174.721536, -37.166210 ], [ 174.721536, -37.166210 ], [ 174.721536, -37.166210 ], [ 174.721536, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721543, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721543, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721544, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721544, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721545, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721546, -37.166210 ], [ 174.721546, -37.166211 ], [ 174.721546, -37.166211 ], [ 174.721546, -37.166210 ], [ 174.721546, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721547, -37.166210 ], [ 174.721547, -37.166211 ], [ 174.721547, -37.166211 ], [ 174.721547, -37.166210 ], [ 174.721547, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721557, -37.166210 ], [ 174.721557, -37.166211 ], [ 174.721556, -37.166211 ], [ 174.721556, -37.166210 ], [ 174.721557, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721557, -37.166210 ], [ 174.721557, -37.166211 ], [ 174.721557, -37.166211 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721559, -37.166210 ], [ 174.721560, -37.166211 ], [ 174.721559, -37.166211 ], [ 174.721559, -37.166210 ], [ 174.721559, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721559, -37.166210 ], [ 174.721559, -37.166211 ], [ 174.721558, -37.166211 ], [ 174.721558, -37.166210 ], [ 174.721559, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721564, -37.166210 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166210 ], [ 174.721564, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721559, -37.166210 ], [ 174.721560, -37.166211 ], [ 174.721559, -37.166211 ], [ 174.721559, -37.166210 ], [ 174.721559, -37.166210 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 22, "x": 4132805, "y": 2564182 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 1024 }, "features": [ -{ "type": "Feature", "properties": { "seq": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721517, -37.166209 ], [ 174.721517, -37.166210 ], [ 174.721517, -37.166209 ], [ 174.721517, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721518, -37.166209 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166209 ], [ 174.721518, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721519, -37.166210 ], [ 174.721520, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721519, -37.166209 ], [ 174.721519, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166209 ], [ 174.721519, -37.166209 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721519, -37.166210 ], [ 174.721519, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721518, -37.166210 ], [ 174.721519, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721519, -37.166210 ], [ 174.721520, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ], [ 174.721520, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721522, -37.166210 ], [ 174.721522, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721521, -37.166210 ], [ 174.721522, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721523, -37.166210 ], [ 174.721524, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721523, -37.166210 ], [ 174.721524, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721525, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ], [ 174.721524, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ], [ 174.721525, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ], [ 174.721526, -37.166210 ] ] ] } } , @@ -83,15 +83,15 @@ , { "type": "Feature", "properties": { "seq": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721537, -37.166210 ], [ 174.721537, -37.166210 ], [ 174.721536, -37.166210 ], [ 174.721536, -37.166210 ], [ 174.721537, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ], [ 174.721538, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ], [ 174.721540, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721541, -37.166210 ], [ 174.721541, -37.166210 ], [ 174.721541, -37.166210 ], [ 174.721541, -37.166210 ], [ 174.721541, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721541, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721541, -37.166210 ], [ 174.721541, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ], [ 174.721542, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721544, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721544, -37.166210 ], [ 174.721543, -37.166210 ], [ 174.721544, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ], [ 174.721545, -37.166210 ] ] ] } } , @@ -99,19 +99,19 @@ , { "type": "Feature", "properties": { "seq": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721547, -37.166210 ], [ 174.721547, -37.166210 ], [ 174.721547, -37.166210 ], [ 174.721547, -37.166210 ], [ 174.721547, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721548, -37.166210 ], [ 174.721548, -37.166210 ], [ 174.721549, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721548, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721548, -37.166210 ], [ 174.721548, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721550, -37.166210 ], [ 174.721550, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721549, -37.166210 ], [ 174.721550, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721556, -37.166210 ], [ 174.721556, -37.166210 ], [ 174.721556, -37.166210 ], [ 174.721556, -37.166210 ], [ 174.721556, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166211 ], [ 174.721557, -37.166210 ], [ 174.721557, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721559, -37.166210 ], [ 174.721559, -37.166210 ], [ 174.721558, -37.166210 ], [ 174.721558, -37.166210 ], [ 174.721559, -37.166210 ] ] ] } } , { "type": "Feature", "properties": { "seq": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721559, -37.166210 ], [ 174.721559, -37.166211 ], [ 174.721559, -37.166211 ], [ 174.721559, -37.166210 ], [ 174.721559, -37.166210 ] ] ] } } , -{ "type": "Feature", "properties": { "seq": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721564, -37.166210 ], [ 174.721564, -37.166210 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166210 ] ] ] } } +{ "type": "Feature", "properties": { "seq": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.721564, -37.166210 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166211 ], [ 174.721564, -37.166210 ], [ 174.721564, -37.166210 ] ] ] } } ] } ] } ] } diff --git a/tests/tl_2015_us_county/out/-z8.json b/tests/tl_2015_us_county/out/-z8.json index 1d033570c..5d0089db5 100644 --- a/tests/tl_2015_us_county/out/-z8.json +++ b/tests/tl_2015_us_county/out/-z8.json @@ -100,7 +100,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900044 ], [ -70.257568, 45.114723 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.364685, 45.157348 ], [ -70.363312, 45.152506 ], [ -70.363998, 45.152022 ], [ -70.418243, 45.143789 ], [ -70.473175, 45.353110 ], [ -70.518494, 45.512121 ], [ -70.505447, 45.513565 ], [ -70.533600, 45.602029 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.665886 ], [ -70.545273, 45.666846 ], [ -70.541840, 45.666366 ], [ -70.532913, 45.670684 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.668765 ], [ -70.519867, 45.671164 ], [ -70.510941, 45.677881 ], [ -70.510254, 45.679320 ], [ -70.505447, 45.681239 ], [ -70.502014, 45.681719 ], [ -70.502701, 45.682678 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686036 ], [ -70.494461, 45.687475 ], [ -70.493774, 45.688914 ], [ -70.490341, 45.689394 ], [ -70.484161, 45.693711 ], [ -70.479355, 45.694670 ], [ -70.473862, 45.698986 ], [ -70.469055, 45.701384 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.465622, 45.706179 ], [ -70.461502, 45.705220 ], [ -70.456009, 45.707138 ], [ -70.450516, 45.703782 ], [ -70.449142, 45.704261 ], [ -70.445023, 45.703782 ], [ -70.440903, 45.705220 ], [ -70.438843, 45.703782 ], [ -70.428543, 45.707138 ], [ -70.428543, 45.708097 ], [ -70.425797, 45.707138 ], [ -70.426483, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429230, 45.710015 ], [ -70.428543, 45.709536 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423050, 45.711454 ], [ -70.417557, 45.713371 ], [ -70.412750, 45.715289 ], [ -70.412750, 45.716248 ], [ -70.407257, 45.716728 ], [ -70.405884, 45.717686 ], [ -70.400391, 45.719604 ], [ -70.399704, 45.720563 ], [ -70.400391, 45.721522 ], [ -70.397644, 45.722960 ], [ -70.396957, 45.725356 ], [ -70.397644, 45.726794 ], [ -70.396957, 45.728712 ], [ -70.394897, 45.729670 ], [ -70.390091, 45.728232 ], [ -70.385284, 45.733505 ], [ -70.383911, 45.733984 ], [ -70.385971, 45.734463 ], [ -70.384598, 45.735422 ], [ -70.385284, 45.735901 ], [ -70.390091, 45.735901 ], [ -70.390091, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.737818 ], [ -70.391464, 45.739256 ], [ -70.393524, 45.739735 ], [ -70.392838, 45.741173 ], [ -70.394211, 45.742131 ], [ -70.394211, 45.744048 ], [ -70.388031, 45.748360 ], [ -70.388031, 45.750277 ], [ -70.394211, 45.754589 ], [ -70.395584, 45.756505 ], [ -70.400391, 45.757463 ], [ -70.407257, 45.762254 ], [ -70.405197, 45.769918 ], [ -70.407257, 45.771834 ], [ -70.407257, 45.773270 ], [ -70.405197, 45.776623 ], [ -70.407257, 45.778060 ], [ -70.410004, 45.784285 ], [ -70.414810, 45.784285 ], [ -70.415497, 45.785243 ], [ -70.414124, 45.790509 ], [ -70.417557, 45.793861 ], [ -70.416870, 45.795297 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797691 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.795776 ], [ -70.401077, 45.795776 ], [ -70.396957, 45.797691 ], [ -70.395584, 45.799127 ], [ -70.395584, 45.802478 ], [ -70.397644, 45.803435 ], [ -70.396271, 45.805829 ], [ -70.396957, 45.807743 ], [ -70.388031, 45.813965 ], [ -70.387344, 45.819229 ], [ -70.376358, 45.826885 ], [ -70.372238, 45.827842 ], [ -70.368805, 45.831191 ], [ -70.370178, 45.831670 ], [ -70.369492, 45.832627 ], [ -70.371552, 45.834062 ], [ -70.370865, 45.835019 ], [ -70.368805, 45.835976 ], [ -70.367432, 45.835976 ], [ -70.366745, 45.834540 ], [ -70.363998, 45.834540 ], [ -70.361938, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.355759, 45.837889 ], [ -70.356445, 45.838846 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.349579, 45.844586 ], [ -70.348892, 45.846978 ], [ -70.345459, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.261002, 45.888574 ], [ -70.258942, 45.890964 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.257568, 45.900044 ] ] ], [ [ [ -70.257568, 46.100376 ], [ -70.257568, 45.952104 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.963084 ], [ -70.315933, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317307, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.276794, 46.174125 ], [ -70.279541, 46.176502 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258942, 45.927752 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 45.915810 ], [ -70.257568, 45.908644 ], [ -70.259628, 45.909600 ], [ -70.259628, 45.910555 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.257568, 45.915810 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236378 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900044 ], [ -70.257568, 45.114723 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.364685, 45.157348 ], [ -70.363312, 45.152506 ], [ -70.363998, 45.152022 ], [ -70.418243, 45.143789 ], [ -70.473175, 45.353110 ], [ -70.518494, 45.512121 ], [ -70.505447, 45.513565 ], [ -70.533600, 45.602029 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.665886 ], [ -70.545273, 45.666846 ], [ -70.541840, 45.666366 ], [ -70.532913, 45.670684 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.668765 ], [ -70.519867, 45.671164 ], [ -70.510941, 45.677881 ], [ -70.510254, 45.679320 ], [ -70.505447, 45.681239 ], [ -70.502014, 45.681719 ], [ -70.502701, 45.682678 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686036 ], [ -70.494461, 45.687475 ], [ -70.493774, 45.688914 ], [ -70.490341, 45.689394 ], [ -70.484161, 45.693711 ], [ -70.479355, 45.694670 ], [ -70.473862, 45.698986 ], [ -70.469055, 45.701384 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.465622, 45.706179 ], [ -70.461502, 45.705220 ], [ -70.456009, 45.707138 ], [ -70.450516, 45.703782 ], [ -70.449142, 45.704261 ], [ -70.445023, 45.703782 ], [ -70.440903, 45.705220 ], [ -70.438843, 45.703782 ], [ -70.428543, 45.707138 ], [ -70.428543, 45.708097 ], [ -70.425797, 45.707138 ], [ -70.426483, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429230, 45.710015 ], [ -70.428543, 45.709536 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423050, 45.711454 ], [ -70.417557, 45.713371 ], [ -70.412750, 45.715289 ], [ -70.412750, 45.716248 ], [ -70.407257, 45.716728 ], [ -70.405884, 45.717686 ], [ -70.400391, 45.719604 ], [ -70.399704, 45.720563 ], [ -70.400391, 45.721522 ], [ -70.397644, 45.722960 ], [ -70.396957, 45.725356 ], [ -70.397644, 45.726794 ], [ -70.396957, 45.728712 ], [ -70.394897, 45.729670 ], [ -70.390091, 45.728232 ], [ -70.385284, 45.733505 ], [ -70.383911, 45.733984 ], [ -70.385971, 45.734463 ], [ -70.384598, 45.735422 ], [ -70.385284, 45.735901 ], [ -70.390091, 45.735901 ], [ -70.390091, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.737818 ], [ -70.391464, 45.739256 ], [ -70.393524, 45.739735 ], [ -70.392838, 45.741173 ], [ -70.394211, 45.742131 ], [ -70.394211, 45.744048 ], [ -70.388031, 45.748360 ], [ -70.388031, 45.750277 ], [ -70.394211, 45.754589 ], [ -70.395584, 45.756505 ], [ -70.400391, 45.757463 ], [ -70.407257, 45.762254 ], [ -70.405197, 45.769918 ], [ -70.407257, 45.771834 ], [ -70.407257, 45.773270 ], [ -70.405197, 45.776623 ], [ -70.407257, 45.778060 ], [ -70.410004, 45.784285 ], [ -70.414810, 45.784285 ], [ -70.415497, 45.785243 ], [ -70.414124, 45.790509 ], [ -70.417557, 45.793861 ], [ -70.416870, 45.795297 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797691 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.795776 ], [ -70.401077, 45.795776 ], [ -70.396957, 45.797691 ], [ -70.395584, 45.799127 ], [ -70.395584, 45.802478 ], [ -70.397644, 45.803435 ], [ -70.396271, 45.805829 ], [ -70.396957, 45.807743 ], [ -70.388031, 45.813965 ], [ -70.387344, 45.819229 ], [ -70.376358, 45.826885 ], [ -70.372238, 45.827842 ], [ -70.368805, 45.831191 ], [ -70.370178, 45.831670 ], [ -70.369492, 45.832627 ], [ -70.371552, 45.834062 ], [ -70.370865, 45.835019 ], [ -70.368805, 45.835976 ], [ -70.367432, 45.835976 ], [ -70.366745, 45.834540 ], [ -70.363998, 45.834540 ], [ -70.361938, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.355759, 45.837889 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.349579, 45.844586 ], [ -70.348892, 45.846978 ], [ -70.345459, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.261002, 45.888574 ], [ -70.258942, 45.890964 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.257568, 45.900044 ] ] ], [ [ [ -70.257568, 46.100376 ], [ -70.257568, 45.952104 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.963084 ], [ -70.315933, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317307, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.276794, 46.174125 ], [ -70.279541, 46.176502 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258942, 45.927752 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 45.915810 ], [ -70.257568, 45.908644 ], [ -70.259628, 45.909600 ], [ -70.259628, 45.910555 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.257568, 45.915810 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236378 ] ] ] ] } } ] } ] } , @@ -120,13 +120,13 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.239716, 46.137501 ], [ -70.240402, 46.137977 ], [ -70.240402, 46.138928 ], [ -70.239029, 46.139404 ], [ -70.239029, 46.143210 ], [ -70.236282, 46.145113 ], [ -70.238342, 46.148443 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.150821 ], [ -70.241089, 46.150821 ], [ -70.241089, 46.149870 ], [ -70.242462, 46.149394 ], [ -70.243835, 46.151297 ], [ -70.245895, 46.150821 ], [ -70.246582, 46.151773 ], [ -70.247955, 46.151773 ], [ -70.247269, 46.153200 ], [ -70.250015, 46.154151 ], [ -70.249329, 46.155578 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159383 ], [ -70.256882, 46.159383 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.278168, 46.175076 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.256882, 46.240177 ], [ -70.256882, 46.242077 ], [ -70.255508, 46.243026 ], [ -70.255508, 46.244451 ], [ -70.254135, 46.245401 ], [ -70.255508, 46.245876 ], [ -70.250702, 46.248725 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253948 ], [ -70.252762, 46.254897 ], [ -70.252762, 46.258695 ], [ -70.252075, 46.260120 ], [ -70.250015, 46.260594 ], [ -70.250015, 46.262968 ], [ -70.247955, 46.265816 ], [ -70.247955, 46.267715 ], [ -70.243149, 46.271512 ], [ -70.243149, 46.272936 ], [ -70.240402, 46.272936 ], [ -70.240402, 46.274834 ], [ -70.239029, 46.275784 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.279106 ], [ -70.234909, 46.281479 ], [ -70.234222, 46.283377 ], [ -70.232162, 46.284326 ], [ -70.231476, 46.290969 ], [ -70.228729, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.220490, 46.292867 ], [ -70.216370, 46.294290 ], [ -70.217056, 46.295239 ], [ -70.214996, 46.294764 ], [ -70.213623, 46.296188 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210190, 46.298085 ], [ -70.205383, 46.299983 ], [ -70.206757, 46.300932 ], [ -70.205383, 46.302355 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.309944 ], [ -70.203323, 46.312790 ], [ -70.202637, 46.314687 ], [ -70.207443, 46.319430 ], [ -70.206070, 46.324646 ], [ -70.208817, 46.329387 ], [ -70.195770, 46.340765 ], [ -70.195770, 46.343610 ], [ -70.193024, 46.346928 ], [ -70.190964, 46.347876 ], [ -70.192337, 46.348824 ], [ -70.191650, 46.349771 ], [ -70.187531, 46.349771 ], [ -70.184784, 46.351667 ], [ -70.181351, 46.352141 ], [ -70.180664, 46.354511 ], [ -70.177231, 46.355459 ], [ -70.175171, 46.357828 ], [ -70.173111, 46.359250 ], [ -70.170364, 46.359250 ], [ -70.165558, 46.357354 ], [ -70.164871, 46.358302 ], [ -70.162125, 46.359724 ], [ -70.161438, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359250 ], [ -70.158005, 46.360671 ], [ -70.155258, 46.361145 ], [ -70.153885, 46.359724 ], [ -70.147705, 46.358776 ], [ -70.144272, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140152, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138092, 46.366358 ], [ -70.137405, 46.369200 ], [ -70.136032, 46.369674 ], [ -70.133972, 46.368727 ], [ -70.129166, 46.369200 ], [ -70.128479, 46.370622 ], [ -70.127106, 46.370622 ], [ -70.127792, 46.379149 ], [ -70.125732, 46.381518 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115433, 46.386254 ], [ -70.116806, 46.387201 ], [ -70.116806, 46.388149 ], [ -70.114746, 46.388149 ], [ -70.114059, 46.385307 ], [ -70.110626, 46.386254 ], [ -70.112000, 46.388149 ], [ -70.111313, 46.388149 ], [ -70.109940, 46.387201 ], [ -70.109940, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.109940, 46.390043 ], [ -70.109253, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.106506, 46.390517 ], [ -70.107193, 46.392411 ], [ -70.104446, 46.393832 ], [ -70.101700, 46.396673 ], [ -70.100327, 46.398568 ], [ -70.101013, 46.400935 ], [ -70.098953, 46.400462 ], [ -70.099640, 46.402356 ], [ -70.098953, 46.402829 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403303 ], [ -70.098267, 46.403303 ], [ -70.097580, 46.404250 ], [ -70.099640, 46.404250 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405670 ], [ -70.094833, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094147, 46.408037 ], [ -70.096893, 46.408984 ], [ -70.096207, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.408984 ], [ -70.082474, 46.410405 ], [ -70.079041, 46.410405 ], [ -70.076294, 46.409458 ], [ -70.072174, 46.410878 ], [ -70.068054, 46.411352 ], [ -70.063934, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.056381, 46.415612 ], [ -70.022736, 46.573495 ], [ -69.816055, 46.573023 ], [ -69.720612, 46.573967 ], [ -69.719238, 46.393832 ], [ -69.732285, 46.393832 ], [ -69.728165, 45.976924 ], [ -69.683533, 45.983604 ], [ -69.646454, 45.863716 ], [ -69.646454, 45.862759 ], [ -69.647827, 45.863716 ], [ -69.648514, 45.862759 ], [ -69.649200, 45.863238 ], [ -69.651260, 45.862759 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863716 ], [ -69.654694, 45.861803 ], [ -69.656067, 45.862281 ], [ -69.656754, 45.861325 ], [ -69.656067, 45.859890 ], [ -69.658127, 45.860847 ], [ -69.659500, 45.860369 ], [ -69.659500, 45.860847 ], [ -69.662247, 45.860847 ], [ -69.662933, 45.859890 ], [ -69.664307, 45.860369 ], [ -69.663620, 45.861325 ], [ -69.664993, 45.861803 ], [ -69.669800, 45.860847 ], [ -69.673233, 45.862281 ], [ -69.673233, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.672546, 45.859412 ], [ -69.673920, 45.856543 ], [ -69.674606, 45.851760 ], [ -69.675980, 45.851282 ], [ -69.675980, 45.852717 ], [ -69.677353, 45.852717 ], [ -69.678040, 45.851760 ], [ -69.681473, 45.851282 ], [ -69.682159, 45.852239 ], [ -69.683533, 45.850804 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853673 ], [ -69.689713, 45.854152 ], [ -69.689026, 45.857978 ], [ -69.691772, 45.858934 ], [ -69.691086, 45.860847 ], [ -69.693832, 45.861803 ], [ -69.692459, 45.862281 ], [ -69.693146, 45.864194 ], [ -69.693832, 45.863716 ], [ -69.696579, 45.864194 ], [ -69.696579, 45.867063 ], [ -69.699326, 45.868497 ], [ -69.698639, 45.869931 ], [ -69.701385, 45.872322 ], [ -69.700012, 45.873756 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.878537 ], [ -69.701385, 45.879493 ], [ -69.697952, 45.880449 ], [ -69.697266, 45.885707 ], [ -69.702759, 45.885707 ], [ -69.706192, 45.884751 ], [ -69.708252, 45.885707 ], [ -69.710999, 45.884751 ], [ -69.712372, 45.882839 ], [ -69.715805, 45.883317 ], [ -69.717178, 45.882361 ], [ -69.721985, 45.881405 ], [ -69.723358, 45.879493 ], [ -69.724045, 45.879493 ], [ -69.724045, 45.879015 ], [ -69.726791, 45.879971 ], [ -69.729538, 45.879493 ], [ -69.731598, 45.878059 ], [ -69.732971, 45.879971 ], [ -69.735031, 45.879971 ], [ -69.735718, 45.880927 ], [ -69.736404, 45.880449 ], [ -69.736404, 45.881883 ], [ -69.737778, 45.883317 ], [ -69.737778, 45.879971 ], [ -69.733658, 45.879015 ], [ -69.734344, 45.878537 ], [ -69.733658, 45.877103 ], [ -69.729538, 45.876146 ], [ -69.728165, 45.875190 ], [ -69.726791, 45.875668 ], [ -69.726791, 45.874712 ], [ -69.724731, 45.873756 ], [ -69.724731, 45.871844 ], [ -69.723358, 45.871366 ], [ -69.724045, 45.867541 ], [ -69.725418, 45.867063 ], [ -69.724731, 45.865628 ], [ -69.717178, 45.865628 ], [ -69.715118, 45.862281 ], [ -69.710999, 45.860847 ], [ -69.711685, 45.857978 ], [ -69.710999, 45.856065 ], [ -69.708939, 45.855586 ], [ -69.708252, 45.854152 ], [ -69.705505, 45.853673 ], [ -69.708252, 45.850804 ], [ -69.707565, 45.846978 ], [ -69.706192, 45.846021 ], [ -69.704132, 45.846021 ], [ -69.706879, 45.842194 ], [ -69.707565, 45.838368 ], [ -69.708939, 45.837411 ], [ -69.708252, 45.835976 ], [ -69.711685, 45.833584 ], [ -69.711685, 45.832148 ], [ -69.715118, 45.831670 ], [ -69.717178, 45.832627 ], [ -69.717865, 45.833584 ], [ -69.717178, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719238, 45.834062 ], [ -69.717865, 45.831191 ], [ -69.718552, 45.829756 ], [ -69.715805, 45.828799 ], [ -69.715118, 45.825450 ], [ -69.712372, 45.823057 ], [ -69.712372, 45.818751 ], [ -69.709625, 45.815401 ], [ -69.708252, 45.811093 ], [ -69.712372, 45.806307 ], [ -69.713745, 45.801999 ], [ -69.717178, 45.798648 ], [ -69.716492, 45.798170 ], [ -69.718552, 45.794818 ], [ -69.719925, 45.788594 ], [ -69.723358, 45.785243 ], [ -69.722672, 45.783327 ], [ -69.728851, 45.782848 ], [ -69.732971, 45.783327 ], [ -69.737778, 45.782848 ], [ -69.737778, 45.781412 ], [ -69.735718, 45.780454 ], [ -69.735718, 45.779017 ], [ -69.728851, 45.775665 ], [ -69.725418, 45.771355 ], [ -69.724045, 45.766565 ], [ -69.726105, 45.762254 ], [ -69.729538, 45.760338 ], [ -69.732285, 45.756026 ], [ -69.736404, 45.754589 ], [ -69.740524, 45.755547 ], [ -69.743271, 45.759859 ], [ -69.747391, 45.759380 ], [ -69.746704, 45.761296 ], [ -69.749451, 45.763212 ], [ -69.750824, 45.765607 ], [ -69.750137, 45.763212 ], [ -69.752884, 45.761296 ], [ -69.757004, 45.761296 ], [ -69.759750, 45.762254 ], [ -69.762497, 45.760817 ], [ -69.768677, 45.761296 ], [ -69.767303, 45.762733 ], [ -69.769363, 45.762733 ], [ -69.772797, 45.765128 ], [ -69.774170, 45.764649 ], [ -69.773483, 45.766086 ], [ -69.776230, 45.767523 ], [ -69.776917, 45.770397 ], [ -69.781723, 45.775665 ], [ -69.780350, 45.776623 ], [ -69.781036, 45.778060 ], [ -69.782410, 45.778539 ], [ -69.783783, 45.776623 ], [ -69.785156, 45.777102 ], [ -69.784470, 45.778060 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.779496 ], [ -69.784470, 45.780454 ], [ -69.786530, 45.780454 ], [ -69.787903, 45.777581 ], [ -69.789276, 45.777581 ], [ -69.787216, 45.776623 ], [ -69.787216, 45.774707 ], [ -69.785843, 45.774707 ], [ -69.785843, 45.775665 ], [ -69.782410, 45.775186 ], [ -69.783096, 45.774228 ], [ -69.784470, 45.774228 ], [ -69.783783, 45.772792 ], [ -69.781036, 45.773270 ], [ -69.783783, 45.772313 ], [ -69.781723, 45.769439 ], [ -69.784470, 45.769439 ], [ -69.785843, 45.768481 ], [ -69.787903, 45.768960 ], [ -69.789963, 45.768002 ], [ -69.789276, 45.766565 ], [ -69.791336, 45.765607 ], [ -69.791336, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.792709, 45.761775 ], [ -69.792709, 45.758422 ], [ -69.791336, 45.758422 ], [ -69.792709, 45.756984 ], [ -69.792023, 45.756026 ], [ -69.789276, 45.755547 ], [ -69.792023, 45.751235 ], [ -69.790649, 45.749798 ], [ -69.788589, 45.749319 ], [ -69.789276, 45.747881 ], [ -69.787903, 45.746444 ], [ -69.789276, 45.746923 ], [ -69.792023, 45.745485 ], [ -69.796143, 45.745965 ], [ -69.800949, 45.748839 ], [ -69.803696, 45.748839 ], [ -69.811935, 45.745485 ], [ -69.812622, 45.746923 ], [ -69.817429, 45.746923 ], [ -69.820862, 45.745006 ], [ -69.822235, 45.743569 ], [ -69.824982, 45.743089 ], [ -69.825668, 45.741173 ], [ -69.823608, 45.742131 ], [ -69.818802, 45.738777 ], [ -69.811249, 45.737339 ], [ -69.809875, 45.735901 ], [ -69.812622, 45.735901 ], [ -69.809189, 45.733025 ], [ -69.800262, 45.733025 ], [ -69.793396, 45.728232 ], [ -69.791336, 45.728232 ], [ -69.792023, 45.725356 ], [ -69.794769, 45.725356 ], [ -69.795456, 45.724398 ], [ -69.796829, 45.723918 ], [ -69.798203, 45.724877 ], [ -69.799576, 45.723439 ], [ -69.799576, 45.722480 ], [ -69.802322, 45.723918 ], [ -69.804382, 45.722480 ], [ -69.803009, 45.720563 ], [ -69.804382, 45.720563 ], [ -69.805069, 45.721522 ], [ -69.805756, 45.721042 ], [ -69.807129, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.814682, 45.721042 ], [ -69.808502, 45.722480 ], [ -69.805069, 45.719604 ], [ -69.805069, 45.717207 ], [ -69.803009, 45.714810 ], [ -69.797516, 45.714810 ], [ -69.789963, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789276, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.698507 ], [ -69.784470, 45.697068 ], [ -69.785156, 45.692272 ], [ -69.783096, 45.690353 ], [ -69.778976, 45.689874 ], [ -69.776230, 45.687955 ], [ -69.774857, 45.687475 ], [ -69.773483, 45.685557 ], [ -69.768677, 45.684597 ], [ -69.765244, 45.682678 ], [ -69.759750, 45.682199 ], [ -69.756317, 45.679320 ], [ -69.754257, 45.679320 ], [ -69.747391, 45.681239 ], [ -69.742584, 45.680759 ], [ -69.738464, 45.679320 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.677401 ], [ -69.737778, 45.676442 ], [ -69.736404, 45.676442 ], [ -69.738464, 45.675002 ], [ -69.738464, 45.671164 ], [ -69.740524, 45.668765 ], [ -69.739151, 45.666846 ], [ -69.741211, 45.666846 ], [ -69.744644, 45.663487 ], [ -69.744644, 45.661087 ], [ -69.741211, 45.660127 ], [ -69.741211, 45.657248 ], [ -69.739151, 45.656768 ], [ -69.742584, 45.654848 ], [ -69.743958, 45.651968 ], [ -69.741211, 45.651968 ], [ -69.737778, 45.650528 ], [ -69.735718, 45.650528 ], [ -69.733658, 45.654368 ], [ -69.731598, 45.655808 ], [ -69.732285, 45.656768 ], [ -69.735031, 45.656768 ], [ -69.734344, 45.657728 ], [ -69.728851, 45.656288 ], [ -69.721985, 45.657248 ], [ -69.719238, 45.655808 ], [ -69.712372, 45.655328 ], [ -69.706879, 45.652928 ], [ -69.700699, 45.651488 ], [ -69.699326, 45.650048 ], [ -69.691772, 45.645248 ], [ -69.693832, 45.640928 ], [ -69.696579, 45.640448 ], [ -69.700012, 45.644288 ], [ -69.705505, 45.644768 ], [ -69.706192, 45.646688 ], [ -69.709625, 45.649568 ], [ -69.713058, 45.650528 ], [ -69.712372, 45.647648 ], [ -69.713745, 45.647168 ], [ -69.713745, 45.648128 ], [ -69.715118, 45.648128 ], [ -69.716492, 45.647648 ], [ -69.718552, 45.639488 ], [ -69.714432, 45.639488 ], [ -69.710999, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.636127 ], [ -69.706879, 45.632286 ], [ -69.701385, 45.627964 ], [ -69.702759, 45.626044 ], [ -69.702759, 45.620281 ], [ -69.704819, 45.619320 ], [ -69.704132, 45.618360 ], [ -69.708252, 45.616439 ], [ -69.709625, 45.613077 ], [ -69.710999, 45.612596 ], [ -69.711685, 45.614037 ], [ -69.713745, 45.612596 ], [ -69.714432, 45.612596 ], [ -69.717178, 45.612116 ], [ -69.719238, 45.614518 ], [ -69.717178, 45.608754 ], [ -69.717865, 45.607793 ], [ -69.719925, 45.607793 ], [ -69.719925, 45.604431 ], [ -69.721298, 45.602989 ], [ -69.717178, 45.597224 ], [ -69.714432, 45.596744 ], [ -69.713058, 45.594822 ], [ -69.712372, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589537 ], [ -69.714432, 45.585212 ], [ -69.717178, 45.584731 ], [ -69.719238, 45.582809 ], [ -69.723358, 45.581367 ], [ -69.726105, 45.577042 ], [ -69.726105, 45.574158 ], [ -69.728165, 45.572236 ], [ -69.728165, 45.569832 ], [ -69.731598, 45.566468 ], [ -69.743271, 45.562622 ], [ -69.744644, 45.560699 ], [ -69.747391, 45.560218 ], [ -69.750824, 45.557814 ], [ -69.754257, 45.557333 ], [ -69.759750, 45.553968 ], [ -69.764557, 45.554449 ], [ -69.769363, 45.553487 ], [ -69.773483, 45.554449 ], [ -69.774857, 45.553487 ], [ -69.774857, 45.549159 ], [ -69.772797, 45.545312 ], [ -69.779663, 45.542427 ], [ -69.731598, 45.387360 ], [ -69.700012, 45.292279 ], [ -69.708252, 45.291313 ], [ -69.705505, 45.278269 ], [ -69.683533, 45.212520 ], [ -69.686966, 45.207682 ], [ -69.656067, 45.104062 ], [ -69.654694, 45.099700 ], [ -69.645767, 45.101154 ], [ -69.631348, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128289 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.365372, 45.157348 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152022 ], [ -70.367432, 45.835019 ], [ -70.363998, 45.834540 ], [ -70.362625, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.838846 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.350266, 45.844586 ], [ -70.349579, 45.846978 ], [ -70.346146, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.259628, 45.890008 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.253448, 45.902433 ], [ -70.253448, 45.907211 ], [ -70.259628, 45.909600 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.256882, 45.916288 ], [ -70.256882, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258255, 45.928230 ], [ -70.255508, 45.928707 ], [ -70.251389, 45.933483 ], [ -70.246582, 45.935871 ], [ -70.243149, 45.936826 ], [ -70.239029, 45.939691 ], [ -70.240402, 45.942556 ], [ -70.239029, 45.943988 ], [ -70.244522, 45.944466 ], [ -70.241776, 45.946375 ], [ -70.248642, 45.950195 ], [ -70.247955, 45.950672 ], [ -70.248642, 45.952582 ], [ -70.250702, 45.952582 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.954969 ], [ -70.255508, 45.952582 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.308380, 45.979309 ], [ -70.309067, 45.980741 ], [ -70.307693, 45.980741 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317993, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ], [ -70.256882, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252762, 46.103709 ], [ -70.252075, 46.105613 ], [ -70.252762, 46.107041 ], [ -70.254822, 46.108469 ], [ -70.255508, 46.110374 ], [ -70.254135, 46.110850 ], [ -70.253448, 46.112278 ], [ -70.254135, 46.113706 ], [ -70.252075, 46.114658 ], [ -70.250702, 46.117990 ], [ -70.251389, 46.119417 ], [ -70.249329, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247269, 46.125605 ], [ -70.245209, 46.126080 ], [ -70.244522, 46.128460 ], [ -70.243149, 46.128460 ], [ -70.243835, 46.130839 ], [ -70.242462, 46.131315 ], [ -70.242462, 46.133218 ], [ -70.241089, 46.134646 ], [ -70.241776, 46.135122 ], [ -70.239716, 46.136549 ], [ -70.239716, 46.137501 ] ], [ [ -69.787903, 45.784285 ], [ -69.787216, 45.783327 ], [ -69.784470, 45.783327 ], [ -69.783783, 45.782369 ], [ -69.783783, 45.781412 ], [ -69.781723, 45.780933 ], [ -69.781723, 45.781891 ], [ -69.783783, 45.783327 ], [ -69.783783, 45.783806 ], [ -69.784470, 45.785243 ], [ -69.787903, 45.784764 ], [ -69.787903, 45.784285 ] ], [ [ -69.800949, 45.785243 ], [ -69.799576, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.796829, 45.782848 ], [ -69.796143, 45.783327 ], [ -69.795456, 45.783327 ], [ -69.795456, 45.784285 ], [ -69.795456, 45.785243 ], [ -69.797516, 45.785243 ], [ -69.797516, 45.784764 ], [ -69.800949, 45.785243 ] ], [ [ -69.825668, 45.741173 ], [ -69.827042, 45.739735 ], [ -69.833221, 45.738297 ], [ -69.829102, 45.737818 ], [ -69.827728, 45.738777 ], [ -69.827042, 45.737818 ], [ -69.827042, 45.738777 ], [ -69.825668, 45.739256 ], [ -69.825668, 45.741173 ] ], [ [ -69.719238, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.723358, 45.833584 ], [ -69.719238, 45.834062 ] ], [ [ -69.789963, 45.783806 ], [ -69.792023, 45.785243 ], [ -69.792023, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.795456, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.793396, 45.782848 ], [ -69.793396, 45.783327 ], [ -69.793396, 45.783806 ], [ -69.795456, 45.783327 ] ], [ [ -69.723358, 45.833584 ], [ -69.725418, 45.834540 ], [ -69.724731, 45.833105 ], [ -69.723358, 45.833584 ] ], [ [ -70.107880, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.388149 ], [ -70.107193, 46.387675 ], [ -70.107880, 46.388622 ] ], [ [ -69.787903, 45.784285 ], [ -69.788589, 45.783327 ], [ -69.787903, 45.782848 ], [ -69.787903, 45.784285 ] ] ], [ [ [ -69.498825, 45.050240 ], [ -69.499512, 45.053636 ], [ -69.355316, 45.073521 ], [ -69.349136, 45.050240 ], [ -69.498825, 45.050240 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.239716, 46.137501 ], [ -70.240402, 46.137977 ], [ -70.240402, 46.138928 ], [ -70.239029, 46.139404 ], [ -70.239029, 46.143210 ], [ -70.236282, 46.145113 ], [ -70.238342, 46.148443 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.150821 ], [ -70.241089, 46.150821 ], [ -70.241089, 46.149870 ], [ -70.242462, 46.149394 ], [ -70.243835, 46.151297 ], [ -70.245895, 46.150821 ], [ -70.246582, 46.151773 ], [ -70.247955, 46.151773 ], [ -70.247269, 46.153200 ], [ -70.250015, 46.154151 ], [ -70.249329, 46.155578 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159383 ], [ -70.256882, 46.159383 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.278168, 46.175076 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.256882, 46.240177 ], [ -70.256882, 46.242077 ], [ -70.255508, 46.243026 ], [ -70.255508, 46.244451 ], [ -70.254135, 46.245401 ], [ -70.255508, 46.245876 ], [ -70.250702, 46.248725 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253473 ], [ -70.252762, 46.254897 ], [ -70.252762, 46.258695 ], [ -70.252075, 46.260120 ], [ -70.250015, 46.260594 ], [ -70.250015, 46.262968 ], [ -70.247955, 46.265816 ], [ -70.247955, 46.267715 ], [ -70.243149, 46.271512 ], [ -70.243149, 46.272936 ], [ -70.240402, 46.272936 ], [ -70.240402, 46.274834 ], [ -70.239029, 46.275784 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.279106 ], [ -70.234909, 46.281479 ], [ -70.234222, 46.283377 ], [ -70.232162, 46.284326 ], [ -70.231476, 46.290969 ], [ -70.228729, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.220490, 46.292867 ], [ -70.216370, 46.294290 ], [ -70.217056, 46.295239 ], [ -70.214996, 46.294764 ], [ -70.213623, 46.296188 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210190, 46.298085 ], [ -70.205383, 46.299983 ], [ -70.206757, 46.300932 ], [ -70.205383, 46.302355 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.309944 ], [ -70.203323, 46.312790 ], [ -70.202637, 46.314687 ], [ -70.207443, 46.319430 ], [ -70.206070, 46.324646 ], [ -70.208817, 46.329387 ], [ -70.195770, 46.340765 ], [ -70.195770, 46.343610 ], [ -70.193024, 46.346928 ], [ -70.190964, 46.347876 ], [ -70.192337, 46.348824 ], [ -70.191650, 46.349771 ], [ -70.187531, 46.349771 ], [ -70.184784, 46.351667 ], [ -70.181351, 46.352141 ], [ -70.180664, 46.354511 ], [ -70.177231, 46.355459 ], [ -70.175171, 46.357828 ], [ -70.173111, 46.359250 ], [ -70.170364, 46.359250 ], [ -70.165558, 46.357354 ], [ -70.164871, 46.358302 ], [ -70.162125, 46.359724 ], [ -70.161438, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359250 ], [ -70.158005, 46.360671 ], [ -70.155258, 46.361145 ], [ -70.153885, 46.359724 ], [ -70.147705, 46.358776 ], [ -70.144272, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140152, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138092, 46.366358 ], [ -70.137405, 46.369200 ], [ -70.136032, 46.369674 ], [ -70.133972, 46.368727 ], [ -70.129166, 46.369200 ], [ -70.128479, 46.370622 ], [ -70.127106, 46.370622 ], [ -70.127792, 46.379149 ], [ -70.125732, 46.381518 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115433, 46.386254 ], [ -70.116806, 46.387201 ], [ -70.116806, 46.388149 ], [ -70.114746, 46.388149 ], [ -70.114059, 46.385307 ], [ -70.110626, 46.386254 ], [ -70.112000, 46.388149 ], [ -70.111313, 46.388149 ], [ -70.109940, 46.387201 ], [ -70.109940, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.109940, 46.390043 ], [ -70.109253, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.106506, 46.390517 ], [ -70.107193, 46.392411 ], [ -70.104446, 46.393832 ], [ -70.101700, 46.396673 ], [ -70.100327, 46.398568 ], [ -70.101013, 46.400935 ], [ -70.098953, 46.400462 ], [ -70.099640, 46.402356 ], [ -70.098953, 46.402829 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403303 ], [ -70.098267, 46.403303 ], [ -70.097580, 46.404250 ], [ -70.099640, 46.404250 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405670 ], [ -70.094833, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094147, 46.408037 ], [ -70.096893, 46.408984 ], [ -70.096207, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.408984 ], [ -70.082474, 46.410405 ], [ -70.079041, 46.410405 ], [ -70.076294, 46.409458 ], [ -70.072174, 46.410878 ], [ -70.068054, 46.411352 ], [ -70.063934, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.056381, 46.415612 ], [ -70.022736, 46.573495 ], [ -69.816055, 46.573023 ], [ -69.720612, 46.573967 ], [ -69.719238, 46.393832 ], [ -69.732285, 46.393832 ], [ -69.728165, 45.976924 ], [ -69.683533, 45.983604 ], [ -69.646454, 45.863716 ], [ -69.646454, 45.862759 ], [ -69.647827, 45.863716 ], [ -69.648514, 45.862759 ], [ -69.649200, 45.863238 ], [ -69.651260, 45.862759 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863716 ], [ -69.654694, 45.861803 ], [ -69.656067, 45.862281 ], [ -69.656754, 45.861325 ], [ -69.656067, 45.859890 ], [ -69.658127, 45.860847 ], [ -69.659500, 45.860369 ], [ -69.659500, 45.860847 ], [ -69.662247, 45.860847 ], [ -69.662933, 45.859890 ], [ -69.664307, 45.860369 ], [ -69.663620, 45.861325 ], [ -69.664993, 45.861803 ], [ -69.669800, 45.860847 ], [ -69.673233, 45.862281 ], [ -69.673233, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.672546, 45.859412 ], [ -69.673920, 45.856543 ], [ -69.674606, 45.851760 ], [ -69.675980, 45.851282 ], [ -69.675980, 45.852717 ], [ -69.677353, 45.852717 ], [ -69.678040, 45.851760 ], [ -69.681473, 45.851282 ], [ -69.682159, 45.852239 ], [ -69.683533, 45.850804 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853673 ], [ -69.689713, 45.854152 ], [ -69.689026, 45.857978 ], [ -69.691772, 45.858934 ], [ -69.691086, 45.860847 ], [ -69.693832, 45.861803 ], [ -69.692459, 45.862281 ], [ -69.693146, 45.864194 ], [ -69.693832, 45.863716 ], [ -69.696579, 45.864194 ], [ -69.696579, 45.867063 ], [ -69.699326, 45.868497 ], [ -69.698639, 45.869931 ], [ -69.701385, 45.872322 ], [ -69.700012, 45.873756 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.878537 ], [ -69.701385, 45.879493 ], [ -69.697952, 45.880449 ], [ -69.697266, 45.885707 ], [ -69.702759, 45.885707 ], [ -69.706192, 45.884751 ], [ -69.708252, 45.885707 ], [ -69.710999, 45.884751 ], [ -69.712372, 45.882839 ], [ -69.715805, 45.883317 ], [ -69.717178, 45.882361 ], [ -69.721985, 45.881405 ], [ -69.723358, 45.879493 ], [ -69.724045, 45.879493 ], [ -69.724045, 45.879015 ], [ -69.726791, 45.879971 ], [ -69.729538, 45.879493 ], [ -69.731598, 45.878059 ], [ -69.732971, 45.879971 ], [ -69.735031, 45.879971 ], [ -69.735718, 45.880927 ], [ -69.736404, 45.880449 ], [ -69.736404, 45.881883 ], [ -69.737778, 45.883317 ], [ -69.737778, 45.879971 ], [ -69.733658, 45.879015 ], [ -69.734344, 45.878537 ], [ -69.733658, 45.877103 ], [ -69.729538, 45.876146 ], [ -69.728165, 45.875190 ], [ -69.726791, 45.875668 ], [ -69.726791, 45.874712 ], [ -69.724731, 45.873756 ], [ -69.724731, 45.871844 ], [ -69.723358, 45.871366 ], [ -69.724045, 45.867541 ], [ -69.725418, 45.867063 ], [ -69.724731, 45.865628 ], [ -69.717178, 45.865628 ], [ -69.715118, 45.862281 ], [ -69.710999, 45.860847 ], [ -69.711685, 45.857978 ], [ -69.710999, 45.856065 ], [ -69.708939, 45.855586 ], [ -69.708252, 45.854152 ], [ -69.705505, 45.853673 ], [ -69.708252, 45.850804 ], [ -69.707565, 45.846978 ], [ -69.706192, 45.846021 ], [ -69.704132, 45.846021 ], [ -69.706879, 45.842194 ], [ -69.707565, 45.838368 ], [ -69.708939, 45.837411 ], [ -69.708252, 45.835976 ], [ -69.711685, 45.833584 ], [ -69.711685, 45.832148 ], [ -69.715118, 45.831670 ], [ -69.717178, 45.832627 ], [ -69.717865, 45.833584 ], [ -69.717178, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719238, 45.834062 ], [ -69.717865, 45.831191 ], [ -69.718552, 45.829756 ], [ -69.715805, 45.828799 ], [ -69.715118, 45.825450 ], [ -69.712372, 45.823057 ], [ -69.712372, 45.818751 ], [ -69.709625, 45.815401 ], [ -69.708252, 45.811093 ], [ -69.712372, 45.806307 ], [ -69.713745, 45.801999 ], [ -69.717178, 45.798648 ], [ -69.716492, 45.798170 ], [ -69.718552, 45.794818 ], [ -69.719925, 45.788594 ], [ -69.723358, 45.785243 ], [ -69.722672, 45.783327 ], [ -69.728851, 45.782848 ], [ -69.732971, 45.783327 ], [ -69.737778, 45.782848 ], [ -69.737778, 45.781412 ], [ -69.735718, 45.780454 ], [ -69.735718, 45.779017 ], [ -69.728851, 45.775665 ], [ -69.725418, 45.771355 ], [ -69.724045, 45.766565 ], [ -69.726105, 45.762254 ], [ -69.729538, 45.760338 ], [ -69.732285, 45.756026 ], [ -69.736404, 45.754589 ], [ -69.740524, 45.755547 ], [ -69.743271, 45.759859 ], [ -69.747391, 45.759380 ], [ -69.746704, 45.761296 ], [ -69.749451, 45.763212 ], [ -69.750824, 45.765607 ], [ -69.750137, 45.763212 ], [ -69.752884, 45.761296 ], [ -69.757004, 45.761296 ], [ -69.759750, 45.762254 ], [ -69.762497, 45.760817 ], [ -69.768677, 45.761296 ], [ -69.767303, 45.762733 ], [ -69.769363, 45.762733 ], [ -69.772797, 45.765128 ], [ -69.774170, 45.764649 ], [ -69.773483, 45.766086 ], [ -69.776230, 45.767523 ], [ -69.776917, 45.770397 ], [ -69.781723, 45.775665 ], [ -69.780350, 45.776623 ], [ -69.781036, 45.778060 ], [ -69.782410, 45.778539 ], [ -69.783783, 45.776623 ], [ -69.785156, 45.777102 ], [ -69.784470, 45.778060 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.779496 ], [ -69.784470, 45.780454 ], [ -69.786530, 45.780454 ], [ -69.787903, 45.777581 ], [ -69.789276, 45.777581 ], [ -69.787216, 45.776623 ], [ -69.787216, 45.774707 ], [ -69.785843, 45.774707 ], [ -69.785843, 45.775665 ], [ -69.782410, 45.775186 ], [ -69.783096, 45.774228 ], [ -69.784470, 45.774228 ], [ -69.783783, 45.772792 ], [ -69.781036, 45.773270 ], [ -69.783783, 45.772313 ], [ -69.781723, 45.769439 ], [ -69.784470, 45.769439 ], [ -69.785843, 45.768481 ], [ -69.787903, 45.768960 ], [ -69.789963, 45.768002 ], [ -69.789276, 45.766565 ], [ -69.791336, 45.765607 ], [ -69.791336, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.792709, 45.761775 ], [ -69.792709, 45.758422 ], [ -69.791336, 45.758422 ], [ -69.792709, 45.756984 ], [ -69.792023, 45.756026 ], [ -69.789276, 45.755547 ], [ -69.792023, 45.751235 ], [ -69.790649, 45.749798 ], [ -69.788589, 45.749319 ], [ -69.789276, 45.747881 ], [ -69.787903, 45.746444 ], [ -69.789276, 45.746923 ], [ -69.792023, 45.745485 ], [ -69.796143, 45.745965 ], [ -69.800949, 45.748839 ], [ -69.803696, 45.748839 ], [ -69.811935, 45.745485 ], [ -69.812622, 45.746923 ], [ -69.817429, 45.746923 ], [ -69.820862, 45.745006 ], [ -69.822235, 45.743569 ], [ -69.824982, 45.743089 ], [ -69.825668, 45.741173 ], [ -69.823608, 45.742131 ], [ -69.818802, 45.738777 ], [ -69.811249, 45.737339 ], [ -69.809875, 45.735901 ], [ -69.812622, 45.735901 ], [ -69.809189, 45.733025 ], [ -69.800262, 45.733025 ], [ -69.793396, 45.728232 ], [ -69.791336, 45.728232 ], [ -69.792023, 45.725356 ], [ -69.794769, 45.725356 ], [ -69.795456, 45.724398 ], [ -69.796829, 45.723918 ], [ -69.798203, 45.724877 ], [ -69.799576, 45.723439 ], [ -69.799576, 45.722480 ], [ -69.802322, 45.723918 ], [ -69.804382, 45.722480 ], [ -69.803009, 45.720563 ], [ -69.804382, 45.720563 ], [ -69.805069, 45.721522 ], [ -69.805756, 45.721042 ], [ -69.807129, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.814682, 45.721042 ], [ -69.808502, 45.722480 ], [ -69.805069, 45.719604 ], [ -69.805069, 45.717207 ], [ -69.803009, 45.714810 ], [ -69.797516, 45.714810 ], [ -69.789963, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789276, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.698507 ], [ -69.784470, 45.697068 ], [ -69.785156, 45.692272 ], [ -69.783096, 45.690353 ], [ -69.778976, 45.689874 ], [ -69.776230, 45.687955 ], [ -69.774857, 45.687475 ], [ -69.773483, 45.685557 ], [ -69.768677, 45.684597 ], [ -69.765244, 45.682678 ], [ -69.759750, 45.682199 ], [ -69.756317, 45.679320 ], [ -69.754257, 45.679320 ], [ -69.747391, 45.681239 ], [ -69.742584, 45.680759 ], [ -69.738464, 45.679320 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.677401 ], [ -69.737778, 45.676442 ], [ -69.736404, 45.676442 ], [ -69.738464, 45.675002 ], [ -69.738464, 45.671164 ], [ -69.740524, 45.668765 ], [ -69.739151, 45.666846 ], [ -69.741211, 45.666846 ], [ -69.744644, 45.663487 ], [ -69.744644, 45.661087 ], [ -69.741211, 45.660127 ], [ -69.741211, 45.657248 ], [ -69.739151, 45.656768 ], [ -69.742584, 45.654848 ], [ -69.743958, 45.651968 ], [ -69.741211, 45.651968 ], [ -69.737778, 45.650528 ], [ -69.735718, 45.650528 ], [ -69.733658, 45.654368 ], [ -69.731598, 45.655808 ], [ -69.732285, 45.656768 ], [ -69.735031, 45.656768 ], [ -69.734344, 45.657728 ], [ -69.728851, 45.656288 ], [ -69.721985, 45.657248 ], [ -69.719238, 45.655808 ], [ -69.712372, 45.655328 ], [ -69.706879, 45.652928 ], [ -69.700699, 45.651488 ], [ -69.699326, 45.650048 ], [ -69.691772, 45.645248 ], [ -69.693832, 45.640928 ], [ -69.696579, 45.640448 ], [ -69.700012, 45.644288 ], [ -69.705505, 45.644768 ], [ -69.706192, 45.646688 ], [ -69.709625, 45.649568 ], [ -69.713058, 45.650528 ], [ -69.712372, 45.647648 ], [ -69.713745, 45.647168 ], [ -69.713745, 45.648128 ], [ -69.715118, 45.648128 ], [ -69.716492, 45.647648 ], [ -69.718552, 45.639488 ], [ -69.714432, 45.639488 ], [ -69.710999, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.636127 ], [ -69.706879, 45.632286 ], [ -69.701385, 45.627964 ], [ -69.702759, 45.626044 ], [ -69.702759, 45.620281 ], [ -69.704819, 45.619320 ], [ -69.704132, 45.618360 ], [ -69.708252, 45.616439 ], [ -69.709625, 45.613077 ], [ -69.710999, 45.612596 ], [ -69.711685, 45.614037 ], [ -69.713745, 45.612596 ], [ -69.714432, 45.612596 ], [ -69.717178, 45.612116 ], [ -69.719238, 45.614518 ], [ -69.717178, 45.608754 ], [ -69.717865, 45.607793 ], [ -69.719925, 45.607793 ], [ -69.719925, 45.604431 ], [ -69.721298, 45.602989 ], [ -69.717178, 45.597224 ], [ -69.714432, 45.596744 ], [ -69.713058, 45.594822 ], [ -69.712372, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589537 ], [ -69.714432, 45.585212 ], [ -69.717178, 45.584731 ], [ -69.719238, 45.582809 ], [ -69.723358, 45.581367 ], [ -69.726105, 45.577042 ], [ -69.726105, 45.574158 ], [ -69.728165, 45.572236 ], [ -69.728165, 45.569832 ], [ -69.731598, 45.566468 ], [ -69.743271, 45.562622 ], [ -69.744644, 45.560699 ], [ -69.747391, 45.560218 ], [ -69.750824, 45.557814 ], [ -69.754257, 45.557333 ], [ -69.759750, 45.553968 ], [ -69.764557, 45.554449 ], [ -69.769363, 45.553487 ], [ -69.773483, 45.554449 ], [ -69.774857, 45.553487 ], [ -69.774857, 45.549159 ], [ -69.772797, 45.545312 ], [ -69.779663, 45.542427 ], [ -69.731598, 45.387360 ], [ -69.700012, 45.292279 ], [ -69.708252, 45.291313 ], [ -69.705505, 45.278269 ], [ -69.683533, 45.212520 ], [ -69.686966, 45.207682 ], [ -69.656067, 45.104062 ], [ -69.654694, 45.099700 ], [ -69.645767, 45.101154 ], [ -69.631348, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128289 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.365372, 45.157348 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152022 ], [ -70.367432, 45.835019 ], [ -70.363998, 45.834540 ], [ -70.362625, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.350266, 45.844586 ], [ -70.349579, 45.846978 ], [ -70.346146, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.259628, 45.890008 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.253448, 45.902433 ], [ -70.253448, 45.907211 ], [ -70.259628, 45.909600 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.256882, 45.916288 ], [ -70.256882, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258255, 45.928230 ], [ -70.255508, 45.928707 ], [ -70.251389, 45.933483 ], [ -70.246582, 45.935871 ], [ -70.243149, 45.936826 ], [ -70.239029, 45.939691 ], [ -70.240402, 45.942556 ], [ -70.239029, 45.943988 ], [ -70.244522, 45.944466 ], [ -70.241776, 45.946375 ], [ -70.248642, 45.950195 ], [ -70.247955, 45.950672 ], [ -70.248642, 45.952582 ], [ -70.250702, 45.952582 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.954969 ], [ -70.255508, 45.952582 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.308380, 45.979309 ], [ -70.309067, 45.980741 ], [ -70.307693, 45.980741 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317993, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ], [ -70.256882, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252762, 46.103709 ], [ -70.252075, 46.105613 ], [ -70.252762, 46.107041 ], [ -70.254822, 46.108469 ], [ -70.255508, 46.110374 ], [ -70.254135, 46.110850 ], [ -70.253448, 46.112278 ], [ -70.254135, 46.113706 ], [ -70.252075, 46.114658 ], [ -70.250702, 46.117990 ], [ -70.251389, 46.119417 ], [ -70.249329, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247269, 46.125605 ], [ -70.245209, 46.126080 ], [ -70.244522, 46.128460 ], [ -70.243149, 46.128460 ], [ -70.243835, 46.130839 ], [ -70.242462, 46.131315 ], [ -70.242462, 46.133218 ], [ -70.241089, 46.134646 ], [ -70.241776, 46.135122 ], [ -70.239716, 46.136549 ], [ -70.239716, 46.137501 ] ], [ [ -69.787903, 45.784285 ], [ -69.787216, 45.783327 ], [ -69.784470, 45.783327 ], [ -69.783783, 45.782369 ], [ -69.783783, 45.781412 ], [ -69.781723, 45.780933 ], [ -69.781723, 45.781891 ], [ -69.783783, 45.783327 ], [ -69.783783, 45.783806 ], [ -69.784470, 45.785243 ], [ -69.787903, 45.784764 ], [ -69.787903, 45.784285 ] ], [ [ -69.800949, 45.785243 ], [ -69.799576, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.796829, 45.782848 ], [ -69.796143, 45.783327 ], [ -69.795456, 45.783327 ], [ -69.795456, 45.784285 ], [ -69.795456, 45.785243 ], [ -69.797516, 45.785243 ], [ -69.797516, 45.784764 ], [ -69.800949, 45.785243 ] ], [ [ -69.825668, 45.741173 ], [ -69.827042, 45.739735 ], [ -69.833221, 45.738297 ], [ -69.829102, 45.737818 ], [ -69.827728, 45.738777 ], [ -69.827042, 45.737818 ], [ -69.827042, 45.738777 ], [ -69.825668, 45.739256 ], [ -69.825668, 45.741173 ] ], [ [ -69.719238, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.723358, 45.833584 ], [ -69.719238, 45.834062 ] ], [ [ -69.789963, 45.783806 ], [ -69.792023, 45.785243 ], [ -69.792023, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.795456, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.793396, 45.782848 ], [ -69.793396, 45.783327 ], [ -69.793396, 45.783806 ], [ -69.795456, 45.783327 ] ], [ [ -69.723358, 45.833584 ], [ -69.725418, 45.834540 ], [ -69.724731, 45.833105 ], [ -69.723358, 45.833584 ] ], [ [ -70.107880, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.388149 ], [ -70.107193, 46.387675 ], [ -70.107880, 46.388622 ] ], [ [ -69.787903, 45.784285 ], [ -69.788589, 45.783327 ], [ -69.787903, 45.782848 ], [ -69.787903, 45.784285 ] ] ], [ [ [ -69.498825, 45.050240 ], [ -69.499512, 45.053636 ], [ -69.355316, 45.073521 ], [ -69.349136, 45.050240 ], [ -69.498825, 45.050240 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871605 ], [ -70.285034, 45.111089 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162916 ], [ -70.312500, 45.164611 ], [ -70.365028, 45.157590 ], [ -70.363655, 45.152506 ], [ -70.364342, 45.152264 ], [ -70.374298, 45.151053 ], [ -70.418587, 45.144031 ], [ -70.457039, 45.289139 ], [ -70.473175, 45.353110 ], [ -70.496521, 45.434117 ], [ -70.502014, 45.454833 ], [ -70.518837, 45.512121 ], [ -70.505791, 45.513805 ], [ -70.533943, 45.602269 ], [ -70.536690, 45.613557 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.666126 ], [ -70.545616, 45.666366 ], [ -70.545273, 45.666846 ], [ -70.542183, 45.666366 ], [ -70.538406, 45.668765 ], [ -70.536003, 45.669725 ], [ -70.534973, 45.669725 ], [ -70.533943, 45.670924 ], [ -70.532913, 45.670924 ], [ -70.530167, 45.669485 ], [ -70.527763, 45.666846 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.669005 ], [ -70.519867, 45.669725 ], [ -70.519180, 45.669725 ], [ -70.519180, 45.670204 ], [ -70.519867, 45.671404 ], [ -70.517807, 45.672603 ], [ -70.517464, 45.673803 ], [ -70.512314, 45.676921 ], [ -70.511971, 45.677641 ], [ -70.510941, 45.677881 ], [ -70.510597, 45.679320 ], [ -70.505791, 45.681239 ], [ -70.502357, 45.681719 ], [ -70.502701, 45.682918 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686276 ], [ -70.496521, 45.686276 ], [ -70.496521, 45.686996 ], [ -70.494461, 45.687715 ], [ -70.494118, 45.688914 ], [ -70.490341, 45.689634 ], [ -70.484848, 45.692991 ], [ -70.484505, 45.693711 ], [ -70.482445, 45.693711 ], [ -70.479355, 45.694910 ], [ -70.477638, 45.696348 ], [ -70.474892, 45.697787 ], [ -70.475235, 45.698267 ], [ -70.474205, 45.698986 ], [ -70.469055, 45.701624 ], [ -70.470428, 45.702583 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.466652, 45.705940 ], [ -70.465622, 45.706419 ], [ -70.462875, 45.706179 ], [ -70.461502, 45.705460 ], [ -70.460472, 45.705700 ], [ -70.459785, 45.706419 ], [ -70.458412, 45.706419 ], [ -70.456009, 45.707138 ], [ -70.453949, 45.706419 ], [ -70.452919, 45.704980 ], [ -70.452232, 45.705220 ], [ -70.450859, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.443306, 45.704261 ], [ -70.442963, 45.704741 ], [ -70.440903, 45.705460 ], [ -70.440216, 45.704261 ], [ -70.439186, 45.703782 ], [ -70.430946, 45.707138 ], [ -70.428886, 45.707378 ], [ -70.428886, 45.708097 ], [ -70.428200, 45.707378 ], [ -70.425797, 45.707138 ], [ -70.425453, 45.707618 ], [ -70.426826, 45.708337 ], [ -70.428886, 45.708577 ], [ -70.429573, 45.710255 ], [ -70.428543, 45.709776 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423393, 45.711693 ], [ -70.417900, 45.713371 ], [ -70.413094, 45.715529 ], [ -70.413094, 45.716488 ], [ -70.407600, 45.716728 ], [ -70.406227, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400391, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721522 ], [ -70.397987, 45.723199 ], [ -70.396957, 45.725356 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395241, 45.729670 ], [ -70.390434, 45.728472 ], [ -70.385628, 45.732786 ], [ -70.385628, 45.733505 ], [ -70.383911, 45.734224 ], [ -70.384254, 45.734703 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735661 ], [ -70.385628, 45.736141 ], [ -70.390091, 45.736141 ], [ -70.390434, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.738058 ], [ -70.392494, 45.738537 ], [ -70.391808, 45.739256 ], [ -70.393524, 45.739495 ], [ -70.393867, 45.739975 ], [ -70.393867, 45.740933 ], [ -70.392838, 45.741412 ], [ -70.394554, 45.742371 ], [ -70.394211, 45.744048 ], [ -70.393181, 45.744287 ], [ -70.392151, 45.745725 ], [ -70.389061, 45.747162 ], [ -70.388031, 45.748360 ], [ -70.388718, 45.749079 ], [ -70.388374, 45.750277 ], [ -70.394554, 45.754589 ], [ -70.395927, 45.756745 ], [ -70.400734, 45.757463 ], [ -70.403137, 45.758901 ], [ -70.405884, 45.761775 ], [ -70.407257, 45.762493 ], [ -70.406227, 45.764649 ], [ -70.406570, 45.768481 ], [ -70.406227, 45.769678 ], [ -70.405540, 45.770157 ], [ -70.405884, 45.770876 ], [ -70.407600, 45.772073 ], [ -70.407600, 45.773510 ], [ -70.406914, 45.775186 ], [ -70.405540, 45.776623 ], [ -70.407600, 45.778060 ], [ -70.409317, 45.782848 ], [ -70.410347, 45.784285 ], [ -70.411034, 45.784764 ], [ -70.414810, 45.784285 ], [ -70.415840, 45.785243 ], [ -70.414467, 45.790509 ], [ -70.414810, 45.791467 ], [ -70.416870, 45.793621 ], [ -70.417213, 45.793382 ], [ -70.417900, 45.793861 ], [ -70.417213, 45.795297 ], [ -70.416527, 45.795776 ], [ -70.414810, 45.795776 ], [ -70.410690, 45.796733 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797930 ], [ -70.405540, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401077, 45.796015 ], [ -70.397301, 45.797691 ], [ -70.395927, 45.799127 ], [ -70.395927, 45.799606 ], [ -70.396614, 45.799845 ], [ -70.396614, 45.801520 ], [ -70.395927, 45.801999 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803675 ], [ -70.396614, 45.805829 ], [ -70.397301, 45.807025 ], [ -70.396957, 45.807982 ], [ -70.390434, 45.812290 ], [ -70.390091, 45.813247 ], [ -70.388031, 45.813965 ], [ -70.387688, 45.814444 ], [ -70.388374, 45.817315 ], [ -70.387688, 45.819229 ], [ -70.381508, 45.823057 ], [ -70.380135, 45.824732 ], [ -70.376701, 45.826885 ], [ -70.374985, 45.827603 ], [ -70.372581, 45.827842 ], [ -70.371895, 45.829278 ], [ -70.369148, 45.831191 ], [ -70.370522, 45.831909 ], [ -70.369835, 45.832866 ], [ -70.371895, 45.834062 ], [ -70.370865, 45.835258 ], [ -70.369148, 45.835976 ], [ -70.367775, 45.835976 ], [ -70.367088, 45.834780 ], [ -70.363998, 45.834780 ], [ -70.362282, 45.835736 ], [ -70.359192, 45.835497 ], [ -70.356102, 45.837889 ], [ -70.356789, 45.839085 ], [ -70.354042, 45.840281 ], [ -70.352325, 45.840520 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842434 ], [ -70.351639, 45.844108 ], [ -70.350952, 45.844108 ], [ -70.349922, 45.844825 ], [ -70.349236, 45.845782 ], [ -70.349236, 45.847217 ], [ -70.348206, 45.847456 ], [ -70.345802, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.343056, 45.851282 ], [ -70.342026, 45.852239 ], [ -70.337563, 45.852717 ], [ -70.336876, 45.853195 ], [ -70.335159, 45.853434 ], [ -70.333443, 45.853195 ], [ -70.330696, 45.854152 ], [ -70.329666, 45.853913 ], [ -70.328636, 45.854391 ], [ -70.328979, 45.854869 ], [ -70.328293, 45.855108 ], [ -70.326576, 45.854869 ], [ -70.322800, 45.855347 ], [ -70.321426, 45.856304 ], [ -70.319366, 45.855586 ], [ -70.314903, 45.857260 ], [ -70.314217, 45.857978 ], [ -70.312500, 45.858217 ], [ -70.309067, 45.858456 ], [ -70.307693, 45.858934 ], [ -70.304260, 45.861564 ], [ -70.303574, 45.862998 ], [ -70.296707, 45.864911 ], [ -70.290527, 45.868975 ], [ -70.289841, 45.868975 ], [ -70.287781, 45.870888 ], [ -70.285034, 45.871605 ] ] ], [ [ [ -70.285034, 46.048216 ], [ -70.285034, 45.995292 ], [ -70.286751, 45.994338 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994338 ], [ -70.288124, 45.995054 ], [ -70.289841, 45.995292 ], [ -70.290184, 45.994815 ], [ -70.291214, 45.994815 ], [ -70.291214, 45.995292 ], [ -70.290527, 45.995292 ], [ -70.290184, 45.995769 ], [ -70.291557, 45.996008 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.296364, 45.997677 ], [ -70.298080, 45.997677 ], [ -70.298424, 45.998154 ], [ -70.300484, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002924 ], [ -70.304604, 46.002924 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.005070 ], [ -70.305290, 46.006024 ], [ -70.305290, 46.007216 ], [ -70.306320, 46.010316 ], [ -70.307693, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309753, 46.010793 ], [ -70.309753, 46.011509 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012462 ], [ -70.311127, 46.013654 ], [ -70.310440, 46.013893 ], [ -70.310440, 46.014847 ], [ -70.310783, 46.015562 ], [ -70.312157, 46.015323 ], [ -70.311813, 46.016039 ], [ -70.312500, 46.016754 ], [ -70.314560, 46.016277 ], [ -70.315247, 46.016992 ], [ -70.315247, 46.018185 ], [ -70.317650, 46.018661 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019615 ], [ -70.315247, 46.020092 ], [ -70.314903, 46.021284 ], [ -70.312500, 46.022714 ], [ -70.309753, 46.024145 ], [ -70.308723, 46.024145 ], [ -70.305977, 46.025098 ], [ -70.303230, 46.027005 ], [ -70.301514, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300140, 46.028912 ], [ -70.298424, 46.030819 ], [ -70.301857, 46.031534 ], [ -70.302200, 46.032726 ], [ -70.301857, 46.033441 ], [ -70.301170, 46.033441 ], [ -70.300827, 46.033918 ], [ -70.301170, 46.034871 ], [ -70.299797, 46.035824 ], [ -70.299797, 46.037731 ], [ -70.297394, 46.039876 ], [ -70.297394, 46.040829 ], [ -70.294304, 46.041067 ], [ -70.291901, 46.043451 ], [ -70.290184, 46.044165 ], [ -70.290527, 46.044880 ], [ -70.289841, 46.046072 ], [ -70.287437, 46.047025 ], [ -70.285378, 46.048455 ], [ -70.285034, 46.048216 ] ] ], [ [ [ -70.285034, 45.994577 ], [ -70.285034, 45.964515 ], [ -70.287781, 45.964277 ], [ -70.289154, 45.963084 ], [ -70.290527, 45.963561 ], [ -70.292244, 45.963561 ], [ -70.293961, 45.962845 ], [ -70.296021, 45.962845 ], [ -70.297050, 45.963561 ], [ -70.298424, 45.962845 ], [ -70.298767, 45.963561 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303917, 45.964993 ], [ -70.305290, 45.964993 ], [ -70.307007, 45.964038 ], [ -70.308380, 45.963799 ], [ -70.309753, 45.962606 ], [ -70.310440, 45.962845 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.315933, 45.962845 ], [ -70.316277, 45.963322 ], [ -70.315247, 45.964515 ], [ -70.314217, 45.964515 ], [ -70.312500, 45.965470 ], [ -70.311813, 45.965947 ], [ -70.311813, 45.966902 ], [ -70.312500, 45.968572 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.970958 ], [ -70.311470, 45.971913 ], [ -70.310440, 45.972390 ], [ -70.310783, 45.973583 ], [ -70.312157, 45.973822 ], [ -70.312157, 45.974538 ], [ -70.311470, 45.975253 ], [ -70.310097, 45.975731 ], [ -70.310097, 45.977162 ], [ -70.308723, 45.977401 ], [ -70.307007, 45.978355 ], [ -70.308037, 45.979309 ], [ -70.308723, 45.979309 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980741 ], [ -70.308037, 45.980741 ], [ -70.307350, 45.982411 ], [ -70.305290, 45.983604 ], [ -70.304604, 45.983365 ], [ -70.303917, 45.983842 ], [ -70.302200, 45.983842 ], [ -70.300827, 45.985274 ], [ -70.300140, 45.985274 ], [ -70.299797, 45.985989 ], [ -70.294991, 45.985989 ], [ -70.293274, 45.987898 ], [ -70.291557, 45.988613 ], [ -70.291557, 45.989329 ], [ -70.288467, 45.991476 ], [ -70.286751, 45.991953 ], [ -70.286407, 45.992907 ], [ -70.287094, 45.992907 ], [ -70.287437, 45.993384 ], [ -70.285034, 45.994577 ] ] ], [ [ [ -70.285034, 46.062512 ], [ -70.286751, 46.062750 ], [ -70.287781, 46.062273 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.305290, 46.061321 ], [ -70.307350, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.302887, 46.076803 ], [ -70.302200, 46.077518 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.291557, 46.087281 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062512 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871605 ], [ -70.285034, 45.111089 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162916 ], [ -70.312500, 45.164611 ], [ -70.365028, 45.157590 ], [ -70.363655, 45.152506 ], [ -70.364342, 45.152264 ], [ -70.374298, 45.151053 ], [ -70.418587, 45.144031 ], [ -70.457039, 45.289139 ], [ -70.473175, 45.353110 ], [ -70.496521, 45.434117 ], [ -70.502014, 45.454833 ], [ -70.518837, 45.512121 ], [ -70.505791, 45.513805 ], [ -70.533943, 45.602269 ], [ -70.536690, 45.613557 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.666126 ], [ -70.545616, 45.666366 ], [ -70.545273, 45.666846 ], [ -70.542183, 45.666366 ], [ -70.538406, 45.668765 ], [ -70.536003, 45.669725 ], [ -70.534973, 45.669725 ], [ -70.533943, 45.670924 ], [ -70.532913, 45.670924 ], [ -70.530167, 45.669485 ], [ -70.527763, 45.666846 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.669005 ], [ -70.519867, 45.669725 ], [ -70.519180, 45.669725 ], [ -70.519180, 45.670204 ], [ -70.519867, 45.671404 ], [ -70.517807, 45.672603 ], [ -70.517464, 45.673803 ], [ -70.512314, 45.676921 ], [ -70.511971, 45.677641 ], [ -70.510941, 45.677881 ], [ -70.510597, 45.679320 ], [ -70.505791, 45.681239 ], [ -70.502357, 45.681719 ], [ -70.502701, 45.682918 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686276 ], [ -70.496521, 45.686276 ], [ -70.496521, 45.686996 ], [ -70.494461, 45.687715 ], [ -70.494118, 45.688914 ], [ -70.490341, 45.689634 ], [ -70.484848, 45.692991 ], [ -70.484505, 45.693711 ], [ -70.482445, 45.693711 ], [ -70.479355, 45.694910 ], [ -70.477638, 45.696348 ], [ -70.474892, 45.697787 ], [ -70.475235, 45.698267 ], [ -70.474205, 45.698986 ], [ -70.469055, 45.701624 ], [ -70.470428, 45.702583 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.466652, 45.705940 ], [ -70.465622, 45.706419 ], [ -70.462875, 45.706179 ], [ -70.461502, 45.705460 ], [ -70.460472, 45.705700 ], [ -70.459785, 45.706419 ], [ -70.458412, 45.706419 ], [ -70.456009, 45.707138 ], [ -70.453949, 45.706419 ], [ -70.452919, 45.704980 ], [ -70.452232, 45.705220 ], [ -70.450859, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.443306, 45.704261 ], [ -70.442963, 45.704741 ], [ -70.440903, 45.705460 ], [ -70.440216, 45.704261 ], [ -70.439186, 45.703782 ], [ -70.430946, 45.707138 ], [ -70.428886, 45.707378 ], [ -70.428886, 45.708097 ], [ -70.428200, 45.707378 ], [ -70.425797, 45.707138 ], [ -70.425453, 45.707618 ], [ -70.426826, 45.708337 ], [ -70.428886, 45.708577 ], [ -70.429573, 45.710255 ], [ -70.428543, 45.709776 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423393, 45.711693 ], [ -70.417900, 45.713371 ], [ -70.413094, 45.715529 ], [ -70.413094, 45.716488 ], [ -70.407600, 45.716728 ], [ -70.406227, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400391, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721522 ], [ -70.397987, 45.723199 ], [ -70.396957, 45.725356 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395241, 45.729670 ], [ -70.390434, 45.728472 ], [ -70.385628, 45.732786 ], [ -70.385628, 45.733505 ], [ -70.383911, 45.734224 ], [ -70.384254, 45.734703 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735661 ], [ -70.385628, 45.736141 ], [ -70.390091, 45.736141 ], [ -70.390434, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.738058 ], [ -70.392494, 45.738537 ], [ -70.391808, 45.739256 ], [ -70.393524, 45.739495 ], [ -70.393867, 45.739975 ], [ -70.393867, 45.740933 ], [ -70.392838, 45.741412 ], [ -70.394554, 45.742371 ], [ -70.394211, 45.744048 ], [ -70.393181, 45.744287 ], [ -70.392151, 45.745725 ], [ -70.389061, 45.747162 ], [ -70.388031, 45.748360 ], [ -70.388718, 45.749079 ], [ -70.388374, 45.750277 ], [ -70.394554, 45.754589 ], [ -70.395927, 45.756745 ], [ -70.400734, 45.757463 ], [ -70.403137, 45.758901 ], [ -70.405884, 45.761775 ], [ -70.407257, 45.762493 ], [ -70.406227, 45.764649 ], [ -70.406570, 45.768481 ], [ -70.406227, 45.769678 ], [ -70.405540, 45.770157 ], [ -70.405884, 45.770876 ], [ -70.407600, 45.772073 ], [ -70.407600, 45.773510 ], [ -70.406914, 45.775186 ], [ -70.405540, 45.776623 ], [ -70.407600, 45.778060 ], [ -70.409317, 45.782848 ], [ -70.410347, 45.784285 ], [ -70.411034, 45.784764 ], [ -70.414810, 45.784285 ], [ -70.415840, 45.785243 ], [ -70.414467, 45.790509 ], [ -70.414810, 45.791467 ], [ -70.416870, 45.793621 ], [ -70.417213, 45.793382 ], [ -70.417900, 45.793861 ], [ -70.417213, 45.795297 ], [ -70.416527, 45.795776 ], [ -70.414810, 45.795776 ], [ -70.410690, 45.796733 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797930 ], [ -70.405540, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401077, 45.796015 ], [ -70.397301, 45.797691 ], [ -70.395927, 45.799127 ], [ -70.395927, 45.799606 ], [ -70.396614, 45.799845 ], [ -70.396614, 45.801520 ], [ -70.395927, 45.801999 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803675 ], [ -70.396614, 45.805829 ], [ -70.397301, 45.807025 ], [ -70.396957, 45.807982 ], [ -70.390434, 45.812290 ], [ -70.390091, 45.813247 ], [ -70.388031, 45.813965 ], [ -70.387688, 45.814444 ], [ -70.388374, 45.817315 ], [ -70.387688, 45.819229 ], [ -70.381508, 45.823057 ], [ -70.380135, 45.824732 ], [ -70.376701, 45.826885 ], [ -70.374985, 45.827603 ], [ -70.372581, 45.827842 ], [ -70.371895, 45.829278 ], [ -70.369148, 45.831191 ], [ -70.370522, 45.831909 ], [ -70.369835, 45.832866 ], [ -70.371895, 45.834062 ], [ -70.370865, 45.835258 ], [ -70.369148, 45.835976 ], [ -70.367775, 45.835976 ], [ -70.367088, 45.834780 ], [ -70.363998, 45.834780 ], [ -70.362282, 45.835736 ], [ -70.359192, 45.835497 ], [ -70.356102, 45.837889 ], [ -70.356789, 45.838846 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840520 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842434 ], [ -70.351639, 45.844108 ], [ -70.350952, 45.844108 ], [ -70.349922, 45.844825 ], [ -70.349236, 45.845782 ], [ -70.349236, 45.847217 ], [ -70.348206, 45.847456 ], [ -70.345802, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.343056, 45.851282 ], [ -70.342026, 45.852239 ], [ -70.337563, 45.852717 ], [ -70.336876, 45.853195 ], [ -70.335159, 45.853434 ], [ -70.333443, 45.853195 ], [ -70.330696, 45.854152 ], [ -70.329666, 45.853913 ], [ -70.328636, 45.854391 ], [ -70.328979, 45.854869 ], [ -70.328293, 45.855108 ], [ -70.326576, 45.854869 ], [ -70.322800, 45.855347 ], [ -70.321426, 45.856304 ], [ -70.319366, 45.855586 ], [ -70.314903, 45.857260 ], [ -70.314217, 45.857978 ], [ -70.312500, 45.858217 ], [ -70.309067, 45.858456 ], [ -70.307693, 45.858934 ], [ -70.304260, 45.861564 ], [ -70.303574, 45.862998 ], [ -70.296707, 45.864911 ], [ -70.290527, 45.868975 ], [ -70.289841, 45.868975 ], [ -70.287781, 45.870888 ], [ -70.285034, 45.871605 ] ] ], [ [ [ -70.285034, 46.048216 ], [ -70.285034, 45.995292 ], [ -70.286751, 45.994338 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994338 ], [ -70.288124, 45.995054 ], [ -70.289841, 45.995292 ], [ -70.290184, 45.994815 ], [ -70.291214, 45.994815 ], [ -70.291214, 45.995292 ], [ -70.290527, 45.995292 ], [ -70.290184, 45.995769 ], [ -70.291557, 45.996008 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.296364, 45.997677 ], [ -70.298080, 45.997677 ], [ -70.298424, 45.998154 ], [ -70.300484, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002924 ], [ -70.304604, 46.002924 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.005070 ], [ -70.305290, 46.006024 ], [ -70.305290, 46.007216 ], [ -70.306320, 46.010316 ], [ -70.307693, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309753, 46.010793 ], [ -70.309753, 46.011509 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012462 ], [ -70.311127, 46.013654 ], [ -70.310440, 46.013893 ], [ -70.310440, 46.014847 ], [ -70.310783, 46.015562 ], [ -70.312157, 46.015323 ], [ -70.311813, 46.016039 ], [ -70.312500, 46.016754 ], [ -70.314560, 46.016277 ], [ -70.315247, 46.016992 ], [ -70.315247, 46.018185 ], [ -70.317650, 46.018661 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019615 ], [ -70.315247, 46.020092 ], [ -70.314903, 46.021284 ], [ -70.312500, 46.022714 ], [ -70.309753, 46.024145 ], [ -70.308723, 46.024145 ], [ -70.305977, 46.025098 ], [ -70.303230, 46.027005 ], [ -70.301514, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300140, 46.028912 ], [ -70.298424, 46.030819 ], [ -70.301857, 46.031534 ], [ -70.302200, 46.032726 ], [ -70.301857, 46.033441 ], [ -70.301170, 46.033441 ], [ -70.300827, 46.033918 ], [ -70.301170, 46.034871 ], [ -70.299797, 46.035824 ], [ -70.299797, 46.037731 ], [ -70.297394, 46.039876 ], [ -70.297394, 46.040829 ], [ -70.294304, 46.041067 ], [ -70.291901, 46.043451 ], [ -70.290184, 46.044165 ], [ -70.290527, 46.044880 ], [ -70.289841, 46.046072 ], [ -70.287437, 46.047025 ], [ -70.285378, 46.048455 ], [ -70.285034, 46.048216 ] ] ], [ [ [ -70.285034, 45.994577 ], [ -70.285034, 45.964515 ], [ -70.287781, 45.964277 ], [ -70.289154, 45.963084 ], [ -70.290527, 45.963561 ], [ -70.292244, 45.963561 ], [ -70.293961, 45.962845 ], [ -70.296021, 45.962845 ], [ -70.297050, 45.963561 ], [ -70.298424, 45.962845 ], [ -70.298767, 45.963561 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303917, 45.964993 ], [ -70.305290, 45.964993 ], [ -70.307007, 45.964038 ], [ -70.308380, 45.963799 ], [ -70.309753, 45.962606 ], [ -70.310440, 45.962845 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.315933, 45.962845 ], [ -70.316277, 45.963322 ], [ -70.315247, 45.964515 ], [ -70.314217, 45.964515 ], [ -70.312500, 45.965470 ], [ -70.311813, 45.965947 ], [ -70.311813, 45.966902 ], [ -70.312500, 45.968572 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.970958 ], [ -70.311470, 45.971913 ], [ -70.310440, 45.972390 ], [ -70.310783, 45.973583 ], [ -70.312157, 45.973822 ], [ -70.312157, 45.974538 ], [ -70.311470, 45.975253 ], [ -70.310097, 45.975731 ], [ -70.310097, 45.977162 ], [ -70.308723, 45.977401 ], [ -70.307007, 45.978355 ], [ -70.308037, 45.979309 ], [ -70.308723, 45.979309 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980741 ], [ -70.308037, 45.980741 ], [ -70.307350, 45.982411 ], [ -70.305290, 45.983604 ], [ -70.304604, 45.983365 ], [ -70.303917, 45.983842 ], [ -70.302200, 45.983842 ], [ -70.300827, 45.985274 ], [ -70.300140, 45.985274 ], [ -70.299797, 45.985989 ], [ -70.294991, 45.985989 ], [ -70.293274, 45.987898 ], [ -70.291557, 45.988613 ], [ -70.291557, 45.989329 ], [ -70.288467, 45.991476 ], [ -70.286751, 45.991953 ], [ -70.286407, 45.992907 ], [ -70.287094, 45.992907 ], [ -70.287437, 45.993384 ], [ -70.285034, 45.994577 ] ] ], [ [ [ -70.285034, 46.062512 ], [ -70.286751, 46.062750 ], [ -70.287781, 46.062273 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.305290, 46.061321 ], [ -70.307350, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.302887, 46.076803 ], [ -70.302200, 46.077518 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.291557, 46.087281 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062512 ] ] ] ] } } ] } ] } , @@ -162,7 +162,7 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.720955, 46.573967 ], [ -69.720955, 46.532414 ], [ -69.719238, 46.394069 ], [ -69.732285, 46.394069 ], [ -69.730225, 46.202646 ], [ -69.729538, 46.073231 ], [ -69.729195, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.055841 ], [ -70.278511, 46.057032 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.058700 ], [ -70.278168, 46.059176 ], [ -70.278854, 46.060129 ], [ -70.278511, 46.060606 ], [ -70.279884, 46.060844 ], [ -70.280914, 46.060129 ], [ -70.281601, 46.060606 ], [ -70.282631, 46.060368 ], [ -70.283318, 46.062035 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304604, 46.061797 ], [ -70.306664, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.303230, 46.075851 ], [ -70.302544, 46.077279 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.292587, 46.086567 ], [ -70.291901, 46.086805 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.290527, 46.093710 ], [ -70.289841, 46.094662 ], [ -70.288811, 46.094900 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098710 ], [ -70.286064, 46.099900 ], [ -70.283318, 46.100376 ], [ -70.278168, 46.099900 ], [ -70.275764, 46.101328 ], [ -70.274048, 46.101566 ], [ -70.273361, 46.102280 ], [ -70.271645, 46.101090 ], [ -70.268211, 46.101328 ], [ -70.266495, 46.100614 ], [ -70.265465, 46.100852 ], [ -70.263405, 46.100376 ], [ -70.262375, 46.100376 ], [ -70.262032, 46.100852 ], [ -70.261002, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257225, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252419, 46.101328 ], [ -70.253105, 46.102519 ], [ -70.253105, 46.103947 ], [ -70.252075, 46.105851 ], [ -70.252762, 46.107279 ], [ -70.254478, 46.107755 ], [ -70.255165, 46.108707 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110612 ], [ -70.255165, 46.111088 ], [ -70.254135, 46.111088 ], [ -70.254135, 46.112278 ], [ -70.253448, 46.112516 ], [ -70.254478, 46.113944 ], [ -70.253792, 46.113944 ], [ -70.253448, 46.114658 ], [ -70.252762, 46.114420 ], [ -70.253105, 46.115134 ], [ -70.252419, 46.114896 ], [ -70.251732, 46.117990 ], [ -70.251045, 46.117990 ], [ -70.251389, 46.119655 ], [ -70.250702, 46.119655 ], [ -70.250359, 46.120369 ], [ -70.249672, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247955, 46.124177 ], [ -70.247269, 46.124177 ], [ -70.247612, 46.125605 ], [ -70.246925, 46.125367 ], [ -70.245552, 46.126080 ], [ -70.245552, 46.126794 ], [ -70.244865, 46.127032 ], [ -70.245209, 46.127270 ], [ -70.244522, 46.127270 ], [ -70.244865, 46.128460 ], [ -70.243492, 46.128698 ], [ -70.243835, 46.131077 ], [ -70.242805, 46.131077 ], [ -70.242462, 46.131553 ], [ -70.242805, 46.133218 ], [ -70.241432, 46.134646 ], [ -70.242119, 46.135360 ], [ -70.240746, 46.136311 ], [ -70.241089, 46.136549 ], [ -70.240402, 46.136549 ], [ -70.240746, 46.136787 ], [ -70.240059, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137739 ], [ -70.239716, 46.138690 ], [ -70.240402, 46.139166 ], [ -70.240059, 46.139642 ], [ -70.239372, 46.139642 ], [ -70.239372, 46.140355 ], [ -70.240059, 46.140593 ], [ -70.239372, 46.140831 ], [ -70.239372, 46.143210 ], [ -70.237312, 46.144875 ], [ -70.236282, 46.145113 ], [ -70.236626, 46.146540 ], [ -70.237656, 46.146778 ], [ -70.238686, 46.148443 ], [ -70.239372, 46.148919 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.151059 ], [ -70.241432, 46.151059 ], [ -70.241432, 46.149870 ], [ -70.242462, 46.149632 ], [ -70.243835, 46.150584 ], [ -70.243835, 46.151535 ], [ -70.245895, 46.150821 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.247612, 46.153200 ], [ -70.250359, 46.154151 ], [ -70.249672, 46.155578 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159621 ], [ -70.257225, 46.159621 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.161048 ], [ -70.258255, 46.161999 ], [ -70.259285, 46.162474 ], [ -70.259972, 46.163426 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.263405, 46.164377 ], [ -70.264778, 46.164852 ], [ -70.264435, 46.167706 ], [ -70.265808, 46.168181 ], [ -70.266151, 46.169132 ], [ -70.267525, 46.169370 ], [ -70.268211, 46.170321 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.170796 ], [ -70.269928, 46.171034 ], [ -70.270615, 46.171272 ], [ -70.270958, 46.171985 ], [ -70.273705, 46.172223 ], [ -70.275421, 46.173412 ], [ -70.274734, 46.173887 ], [ -70.275078, 46.174363 ], [ -70.277138, 46.174363 ], [ -70.278168, 46.175076 ], [ -70.279198, 46.176502 ], [ -70.279884, 46.176502 ], [ -70.279884, 46.177453 ], [ -70.280914, 46.177453 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180306 ], [ -70.284004, 46.180544 ], [ -70.283661, 46.181494 ], [ -70.284691, 46.181732 ], [ -70.284691, 46.182208 ], [ -70.286064, 46.182921 ], [ -70.285378, 46.184347 ], [ -70.286064, 46.184822 ], [ -70.288811, 46.185298 ], [ -70.290527, 46.185060 ], [ -70.290527, 46.187674 ], [ -70.289841, 46.187912 ], [ -70.289841, 46.188863 ], [ -70.292244, 46.190289 ], [ -70.292244, 46.191477 ], [ -70.290184, 46.192666 ], [ -70.288811, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195280 ], [ -70.285721, 46.195280 ], [ -70.285721, 46.197181 ], [ -70.284348, 46.197656 ], [ -70.283661, 46.199082 ], [ -70.281944, 46.199320 ], [ -70.280914, 46.200033 ], [ -70.281258, 46.200983 ], [ -70.279541, 46.201458 ], [ -70.278854, 46.202171 ], [ -70.278854, 46.203122 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204310 ], [ -70.276794, 46.205022 ], [ -70.276108, 46.207636 ], [ -70.275078, 46.207874 ], [ -70.272331, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.271645, 46.210487 ], [ -70.272331, 46.210725 ], [ -70.271988, 46.210962 ], [ -70.270958, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.270615, 46.211675 ], [ -70.271645, 46.212150 ], [ -70.271301, 46.213338 ], [ -70.274391, 46.214526 ], [ -70.272675, 46.216189 ], [ -70.273361, 46.216902 ], [ -70.271645, 46.217139 ], [ -70.271645, 46.216664 ], [ -70.270958, 46.216664 ], [ -70.269585, 46.217139 ], [ -70.268555, 46.217852 ], [ -70.268211, 46.218802 ], [ -70.267525, 46.219040 ], [ -70.267868, 46.220940 ], [ -70.265465, 46.223553 ], [ -70.267181, 46.224740 ], [ -70.267181, 46.225215 ], [ -70.265808, 46.225453 ], [ -70.264435, 46.227115 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.262032, 46.229016 ], [ -70.259972, 46.230441 ], [ -70.260658, 46.231391 ], [ -70.259628, 46.232103 ], [ -70.259628, 46.233765 ], [ -70.257568, 46.236615 ], [ -70.257568, 46.237565 ], [ -70.259285, 46.238752 ], [ -70.256882, 46.240415 ], [ -70.257225, 46.242077 ], [ -70.255852, 46.243264 ], [ -70.255852, 46.244689 ], [ -70.254135, 46.245401 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246113 ], [ -70.252419, 46.248250 ], [ -70.251045, 46.248725 ], [ -70.251045, 46.249912 ], [ -70.251732, 46.250861 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253236 ], [ -70.254478, 46.253948 ], [ -70.254135, 46.254660 ], [ -70.253105, 46.254897 ], [ -70.253105, 46.258933 ], [ -70.252419, 46.260120 ], [ -70.250359, 46.260832 ], [ -70.250359, 46.262019 ], [ -70.249672, 46.262493 ], [ -70.250359, 46.262731 ], [ -70.250359, 46.263205 ], [ -70.249329, 46.263917 ], [ -70.249672, 46.264629 ], [ -70.248642, 46.265104 ], [ -70.248299, 46.265816 ], [ -70.248299, 46.267715 ], [ -70.246582, 46.268664 ], [ -70.245895, 46.269851 ], [ -70.243149, 46.271749 ], [ -70.243492, 46.273173 ], [ -70.242119, 46.273411 ], [ -70.241776, 46.272699 ], [ -70.240746, 46.272936 ], [ -70.240746, 46.274834 ], [ -70.239372, 46.275784 ], [ -70.239372, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.277682 ], [ -70.240059, 46.279106 ], [ -70.238686, 46.280292 ], [ -70.235252, 46.281716 ], [ -70.234566, 46.283377 ], [ -70.232506, 46.284563 ], [ -70.232506, 46.285749 ], [ -70.231819, 46.286698 ], [ -70.231819, 46.290969 ], [ -70.229073, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.227356, 46.292155 ], [ -70.225296, 46.292867 ], [ -70.223923, 46.292629 ], [ -70.222893, 46.293104 ], [ -70.220490, 46.293104 ], [ -70.218773, 46.294053 ], [ -70.216713, 46.294527 ], [ -70.217400, 46.295239 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.214996, 46.295476 ], [ -70.214310, 46.295476 ], [ -70.214653, 46.295951 ], [ -70.213623, 46.296425 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210533, 46.298085 ], [ -70.209160, 46.298797 ], [ -70.206757, 46.299034 ], [ -70.205727, 46.299983 ], [ -70.205727, 46.300457 ], [ -70.206757, 46.300932 ], [ -70.206757, 46.301643 ], [ -70.205383, 46.302592 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.307336 ], [ -70.206070, 46.309944 ], [ -70.204697, 46.310893 ], [ -70.203323, 46.312790 ], [ -70.202980, 46.314687 ], [ -70.204697, 46.316110 ], [ -70.204353, 46.316821 ], [ -70.206070, 46.317770 ], [ -70.207443, 46.319430 ], [ -70.206757, 46.320378 ], [ -70.207100, 46.322512 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207443, 46.327728 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331284 ], [ -70.206413, 46.331758 ], [ -70.205383, 46.332706 ], [ -70.204353, 46.334129 ], [ -70.201950, 46.335314 ], [ -70.200920, 46.336973 ], [ -70.198174, 46.338869 ], [ -70.198174, 46.339343 ], [ -70.195770, 46.340765 ], [ -70.195084, 46.342188 ], [ -70.195770, 46.343610 ], [ -70.193367, 46.345980 ], [ -70.193367, 46.346928 ], [ -70.191307, 46.347876 ], [ -70.191650, 46.349060 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350008 ], [ -70.189590, 46.350482 ], [ -70.188904, 46.350008 ], [ -70.187874, 46.350008 ], [ -70.184784, 46.351904 ], [ -70.183067, 46.351667 ], [ -70.181694, 46.352141 ], [ -70.180664, 46.354748 ], [ -70.177574, 46.355459 ], [ -70.176544, 46.356170 ], [ -70.175514, 46.358065 ], [ -70.173111, 46.359250 ], [ -70.170708, 46.359487 ], [ -70.167274, 46.358065 ], [ -70.166588, 46.357354 ], [ -70.165901, 46.357354 ], [ -70.165215, 46.358539 ], [ -70.162468, 46.359724 ], [ -70.162468, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160408, 46.361145 ], [ -70.159721, 46.360671 ], [ -70.160408, 46.359724 ], [ -70.158348, 46.359250 ], [ -70.157661, 46.359961 ], [ -70.158005, 46.360671 ], [ -70.156631, 46.361382 ], [ -70.155602, 46.361382 ], [ -70.153885, 46.359961 ], [ -70.152855, 46.359961 ], [ -70.151482, 46.359250 ], [ -70.148048, 46.359013 ], [ -70.144615, 46.362330 ], [ -70.141869, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140495, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138435, 46.366358 ], [ -70.137749, 46.369200 ], [ -70.136375, 46.369911 ], [ -70.135345, 46.369911 ], [ -70.135345, 46.369437 ], [ -70.134315, 46.368963 ], [ -70.133286, 46.368963 ], [ -70.131569, 46.369674 ], [ -70.129509, 46.369437 ], [ -70.128479, 46.370859 ], [ -70.127106, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372991 ], [ -70.128136, 46.379149 ], [ -70.125732, 46.381754 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115776, 46.386491 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388149 ], [ -70.115089, 46.388149 ], [ -70.114403, 46.385307 ], [ -70.113716, 46.385307 ], [ -70.112686, 46.386017 ], [ -70.110626, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388149 ], [ -70.111313, 46.388386 ], [ -70.111313, 46.387912 ], [ -70.110283, 46.387438 ], [ -70.109596, 46.387912 ], [ -70.110283, 46.388859 ], [ -70.108223, 46.388859 ], [ -70.108223, 46.388386 ], [ -70.108910, 46.388149 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.387912 ], [ -70.108566, 46.389570 ], [ -70.109940, 46.390280 ], [ -70.109596, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.107193, 46.390517 ], [ -70.106506, 46.390754 ], [ -70.107536, 46.392648 ], [ -70.106506, 46.393358 ], [ -70.105133, 46.393358 ], [ -70.104446, 46.393832 ], [ -70.104103, 46.394779 ], [ -70.101700, 46.396910 ], [ -70.100670, 46.398568 ], [ -70.101013, 46.401172 ], [ -70.100327, 46.401409 ], [ -70.098953, 46.400698 ], [ -70.098953, 46.401409 ], [ -70.099983, 46.402356 ], [ -70.099297, 46.402592 ], [ -70.099297, 46.403066 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403539 ], [ -70.098267, 46.403539 ], [ -70.097923, 46.404486 ], [ -70.099983, 46.404250 ], [ -70.100670, 46.404486 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405907 ], [ -70.095177, 46.406854 ], [ -70.095520, 46.407091 ], [ -70.096550, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094833, 46.407801 ], [ -70.094490, 46.408274 ], [ -70.096893, 46.408984 ], [ -70.096550, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.093803, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.090370, 46.410641 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.409221 ], [ -70.086250, 46.409221 ], [ -70.082817, 46.410641 ], [ -70.079384, 46.410641 ], [ -70.078011, 46.409694 ], [ -70.076637, 46.409458 ], [ -70.073547, 46.410405 ], [ -70.072517, 46.411115 ], [ -70.068054, 46.411588 ], [ -70.065651, 46.412772 ], [ -70.064964, 46.413955 ], [ -70.064278, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.057068, 46.414902 ], [ -70.056381, 46.415612 ], [ -70.056725, 46.416559 ], [ -70.055695, 46.421529 ], [ -70.023079, 46.573495 ], [ -69.920425, 46.573731 ], [ -69.816399, 46.573259 ], [ -69.758720, 46.573967 ], [ -69.720955, 46.573967 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.720955, 46.573967 ], [ -69.720955, 46.532414 ], [ -69.719238, 46.394069 ], [ -69.732285, 46.394069 ], [ -69.730225, 46.202646 ], [ -69.729538, 46.073231 ], [ -69.729195, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.055841 ], [ -70.278511, 46.057032 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.058700 ], [ -70.278168, 46.059176 ], [ -70.278854, 46.060129 ], [ -70.278511, 46.060606 ], [ -70.279884, 46.060844 ], [ -70.280914, 46.060129 ], [ -70.281601, 46.060606 ], [ -70.282631, 46.060368 ], [ -70.283318, 46.062035 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304604, 46.061797 ], [ -70.306664, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.303230, 46.075851 ], [ -70.302544, 46.077279 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.292587, 46.086567 ], [ -70.291901, 46.086805 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.290527, 46.093710 ], [ -70.289841, 46.094662 ], [ -70.288811, 46.094900 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098710 ], [ -70.286064, 46.099900 ], [ -70.283318, 46.100376 ], [ -70.278168, 46.099900 ], [ -70.275764, 46.101328 ], [ -70.274048, 46.101566 ], [ -70.273361, 46.102280 ], [ -70.271645, 46.101090 ], [ -70.268211, 46.101328 ], [ -70.266495, 46.100614 ], [ -70.265465, 46.100852 ], [ -70.263405, 46.100376 ], [ -70.262375, 46.100376 ], [ -70.262032, 46.100852 ], [ -70.261002, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257225, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252419, 46.101328 ], [ -70.253105, 46.102519 ], [ -70.253105, 46.103947 ], [ -70.252075, 46.105851 ], [ -70.252762, 46.107279 ], [ -70.254478, 46.107755 ], [ -70.255165, 46.108707 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110612 ], [ -70.255165, 46.111088 ], [ -70.254135, 46.111088 ], [ -70.254135, 46.112278 ], [ -70.253448, 46.112516 ], [ -70.254478, 46.113944 ], [ -70.253792, 46.113944 ], [ -70.253448, 46.114658 ], [ -70.252762, 46.114420 ], [ -70.253105, 46.115134 ], [ -70.252419, 46.114896 ], [ -70.251732, 46.117990 ], [ -70.251045, 46.117990 ], [ -70.251389, 46.119655 ], [ -70.250702, 46.119655 ], [ -70.250359, 46.120369 ], [ -70.249672, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247955, 46.124177 ], [ -70.247269, 46.124177 ], [ -70.247612, 46.125605 ], [ -70.246925, 46.125367 ], [ -70.245552, 46.126080 ], [ -70.245552, 46.126794 ], [ -70.244865, 46.127032 ], [ -70.245209, 46.127270 ], [ -70.244522, 46.127270 ], [ -70.244865, 46.128460 ], [ -70.243492, 46.128698 ], [ -70.243835, 46.131077 ], [ -70.242805, 46.131077 ], [ -70.242462, 46.131553 ], [ -70.242805, 46.133218 ], [ -70.241432, 46.134646 ], [ -70.242119, 46.135360 ], [ -70.240746, 46.136311 ], [ -70.241089, 46.136549 ], [ -70.240402, 46.136549 ], [ -70.240746, 46.136787 ], [ -70.240059, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137739 ], [ -70.239716, 46.138690 ], [ -70.240402, 46.139166 ], [ -70.240059, 46.139642 ], [ -70.239372, 46.139642 ], [ -70.239372, 46.140355 ], [ -70.240059, 46.140593 ], [ -70.239372, 46.140831 ], [ -70.239372, 46.143210 ], [ -70.237312, 46.144875 ], [ -70.236282, 46.145113 ], [ -70.236626, 46.146540 ], [ -70.237656, 46.146778 ], [ -70.238686, 46.148443 ], [ -70.239372, 46.148919 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.151059 ], [ -70.241432, 46.151059 ], [ -70.241432, 46.149870 ], [ -70.242462, 46.149632 ], [ -70.243835, 46.150584 ], [ -70.243835, 46.151535 ], [ -70.245895, 46.150821 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.247612, 46.153200 ], [ -70.250359, 46.154151 ], [ -70.249672, 46.155578 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159621 ], [ -70.257225, 46.159621 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.161048 ], [ -70.258255, 46.161999 ], [ -70.259285, 46.162474 ], [ -70.259972, 46.163426 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.263405, 46.164377 ], [ -70.264778, 46.164852 ], [ -70.264435, 46.167706 ], [ -70.265808, 46.168181 ], [ -70.266151, 46.169132 ], [ -70.267525, 46.169370 ], [ -70.268211, 46.170321 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.170796 ], [ -70.269928, 46.171034 ], [ -70.270615, 46.171272 ], [ -70.270958, 46.171985 ], [ -70.273705, 46.172223 ], [ -70.275421, 46.173412 ], [ -70.274734, 46.173887 ], [ -70.275078, 46.174363 ], [ -70.277138, 46.174363 ], [ -70.278168, 46.175076 ], [ -70.279198, 46.176502 ], [ -70.279884, 46.176502 ], [ -70.279884, 46.177453 ], [ -70.280914, 46.177453 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180306 ], [ -70.284004, 46.180544 ], [ -70.283661, 46.181494 ], [ -70.284691, 46.181732 ], [ -70.284691, 46.182208 ], [ -70.286064, 46.182921 ], [ -70.285378, 46.184347 ], [ -70.286064, 46.184822 ], [ -70.288811, 46.185298 ], [ -70.290527, 46.185060 ], [ -70.290527, 46.187674 ], [ -70.289841, 46.187912 ], [ -70.289841, 46.188863 ], [ -70.292244, 46.190289 ], [ -70.292244, 46.191477 ], [ -70.290184, 46.192666 ], [ -70.288811, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195280 ], [ -70.285721, 46.195280 ], [ -70.285721, 46.197181 ], [ -70.284348, 46.197656 ], [ -70.283661, 46.199082 ], [ -70.281944, 46.199320 ], [ -70.280914, 46.200033 ], [ -70.281258, 46.200983 ], [ -70.279541, 46.201458 ], [ -70.278854, 46.202171 ], [ -70.278854, 46.203122 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204310 ], [ -70.276794, 46.205022 ], [ -70.276108, 46.207636 ], [ -70.275078, 46.207874 ], [ -70.272331, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.271645, 46.210487 ], [ -70.272331, 46.210725 ], [ -70.271988, 46.210962 ], [ -70.270958, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.270615, 46.211675 ], [ -70.271645, 46.212150 ], [ -70.271301, 46.213338 ], [ -70.274391, 46.214526 ], [ -70.272675, 46.216189 ], [ -70.273361, 46.216902 ], [ -70.271645, 46.217139 ], [ -70.271645, 46.216664 ], [ -70.270958, 46.216664 ], [ -70.269585, 46.217139 ], [ -70.268555, 46.217852 ], [ -70.268211, 46.218802 ], [ -70.267525, 46.219040 ], [ -70.267868, 46.220940 ], [ -70.265465, 46.223553 ], [ -70.267181, 46.224740 ], [ -70.267181, 46.225215 ], [ -70.265808, 46.225453 ], [ -70.264435, 46.227115 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.262032, 46.229016 ], [ -70.259972, 46.230441 ], [ -70.260658, 46.231391 ], [ -70.259628, 46.232103 ], [ -70.259628, 46.233765 ], [ -70.257568, 46.236615 ], [ -70.257568, 46.237565 ], [ -70.259285, 46.238752 ], [ -70.256882, 46.240415 ], [ -70.257225, 46.242077 ], [ -70.255852, 46.243264 ], [ -70.255852, 46.244689 ], [ -70.254135, 46.245401 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246113 ], [ -70.252419, 46.248250 ], [ -70.251045, 46.248725 ], [ -70.251045, 46.249912 ], [ -70.251732, 46.250861 ], [ -70.251389, 46.252048 ], [ -70.254478, 46.253710 ], [ -70.254478, 46.254422 ], [ -70.253105, 46.254897 ], [ -70.253105, 46.258933 ], [ -70.252419, 46.260120 ], [ -70.250359, 46.260832 ], [ -70.250359, 46.262019 ], [ -70.249672, 46.262493 ], [ -70.250359, 46.262731 ], [ -70.250359, 46.263205 ], [ -70.249329, 46.263917 ], [ -70.249672, 46.264629 ], [ -70.248642, 46.265104 ], [ -70.248299, 46.265816 ], [ -70.248299, 46.267715 ], [ -70.246582, 46.268664 ], [ -70.245895, 46.269851 ], [ -70.243149, 46.271749 ], [ -70.243492, 46.273173 ], [ -70.242119, 46.273411 ], [ -70.241776, 46.272699 ], [ -70.240746, 46.272936 ], [ -70.240746, 46.274834 ], [ -70.239372, 46.275784 ], [ -70.239372, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.277682 ], [ -70.240059, 46.279106 ], [ -70.238686, 46.280292 ], [ -70.235252, 46.281716 ], [ -70.234566, 46.283377 ], [ -70.232506, 46.284563 ], [ -70.232506, 46.285749 ], [ -70.231819, 46.286698 ], [ -70.231819, 46.290969 ], [ -70.229073, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.227356, 46.292155 ], [ -70.225296, 46.292867 ], [ -70.223923, 46.292629 ], [ -70.222893, 46.293104 ], [ -70.220490, 46.293104 ], [ -70.218773, 46.294053 ], [ -70.216713, 46.294527 ], [ -70.217400, 46.295239 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.214996, 46.295476 ], [ -70.214310, 46.295476 ], [ -70.214653, 46.295951 ], [ -70.213623, 46.296425 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210533, 46.298085 ], [ -70.209160, 46.298797 ], [ -70.206757, 46.299034 ], [ -70.205727, 46.299983 ], [ -70.205727, 46.300457 ], [ -70.206757, 46.300932 ], [ -70.206757, 46.301643 ], [ -70.205383, 46.302592 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.307336 ], [ -70.206070, 46.309944 ], [ -70.204697, 46.310893 ], [ -70.203323, 46.312790 ], [ -70.202980, 46.314687 ], [ -70.204697, 46.316110 ], [ -70.204353, 46.316821 ], [ -70.206070, 46.317770 ], [ -70.207443, 46.319430 ], [ -70.206757, 46.320378 ], [ -70.207100, 46.322512 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207443, 46.327728 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331284 ], [ -70.206413, 46.331758 ], [ -70.205383, 46.332706 ], [ -70.204353, 46.334129 ], [ -70.201950, 46.335314 ], [ -70.200920, 46.336973 ], [ -70.198174, 46.338869 ], [ -70.198174, 46.339343 ], [ -70.195770, 46.340765 ], [ -70.195084, 46.342188 ], [ -70.195770, 46.343610 ], [ -70.193367, 46.345980 ], [ -70.193367, 46.346928 ], [ -70.191307, 46.347876 ], [ -70.191650, 46.349060 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350008 ], [ -70.189590, 46.350482 ], [ -70.188904, 46.350008 ], [ -70.187874, 46.350008 ], [ -70.184784, 46.351904 ], [ -70.183067, 46.351667 ], [ -70.181694, 46.352141 ], [ -70.180664, 46.354748 ], [ -70.177574, 46.355459 ], [ -70.176544, 46.356170 ], [ -70.175514, 46.358065 ], [ -70.173111, 46.359250 ], [ -70.170708, 46.359487 ], [ -70.167274, 46.358065 ], [ -70.166588, 46.357354 ], [ -70.165901, 46.357354 ], [ -70.165215, 46.358539 ], [ -70.162468, 46.359724 ], [ -70.162468, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160408, 46.361145 ], [ -70.159721, 46.360671 ], [ -70.160408, 46.359724 ], [ -70.158348, 46.359250 ], [ -70.157661, 46.359961 ], [ -70.158005, 46.360671 ], [ -70.156631, 46.361382 ], [ -70.155602, 46.361382 ], [ -70.153885, 46.359961 ], [ -70.152855, 46.359961 ], [ -70.151482, 46.359250 ], [ -70.148048, 46.359013 ], [ -70.144615, 46.362330 ], [ -70.141869, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140495, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138435, 46.366358 ], [ -70.137749, 46.369200 ], [ -70.136375, 46.369911 ], [ -70.135345, 46.369911 ], [ -70.135345, 46.369437 ], [ -70.134315, 46.368963 ], [ -70.133286, 46.368963 ], [ -70.131569, 46.369674 ], [ -70.129509, 46.369437 ], [ -70.128479, 46.370859 ], [ -70.127106, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372991 ], [ -70.128136, 46.379149 ], [ -70.125732, 46.381754 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115776, 46.386491 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388149 ], [ -70.115089, 46.388149 ], [ -70.114403, 46.385307 ], [ -70.113716, 46.385307 ], [ -70.112686, 46.386017 ], [ -70.110626, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388149 ], [ -70.111313, 46.388386 ], [ -70.111313, 46.387912 ], [ -70.110283, 46.387438 ], [ -70.109596, 46.387912 ], [ -70.110283, 46.388859 ], [ -70.108223, 46.388859 ], [ -70.108223, 46.388386 ], [ -70.108910, 46.388149 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.387912 ], [ -70.108566, 46.389570 ], [ -70.109940, 46.390280 ], [ -70.109596, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.107193, 46.390517 ], [ -70.106506, 46.390754 ], [ -70.107536, 46.392648 ], [ -70.106506, 46.393358 ], [ -70.105133, 46.393358 ], [ -70.104446, 46.393832 ], [ -70.104103, 46.394779 ], [ -70.101700, 46.396910 ], [ -70.100670, 46.398568 ], [ -70.101013, 46.401172 ], [ -70.100327, 46.401409 ], [ -70.098953, 46.400698 ], [ -70.098953, 46.401409 ], [ -70.099983, 46.402356 ], [ -70.099297, 46.402592 ], [ -70.099297, 46.403066 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403539 ], [ -70.098267, 46.403539 ], [ -70.097923, 46.404486 ], [ -70.099983, 46.404250 ], [ -70.100670, 46.404486 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405907 ], [ -70.095177, 46.406854 ], [ -70.095520, 46.407091 ], [ -70.096550, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094833, 46.407801 ], [ -70.094490, 46.408274 ], [ -70.096893, 46.408984 ], [ -70.096550, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.093803, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.090370, 46.410641 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.409221 ], [ -70.086250, 46.409221 ], [ -70.082817, 46.410641 ], [ -70.079384, 46.410641 ], [ -70.078011, 46.409694 ], [ -70.076637, 46.409458 ], [ -70.073547, 46.410405 ], [ -70.072517, 46.411115 ], [ -70.068054, 46.411588 ], [ -70.065651, 46.412772 ], [ -70.064964, 46.413955 ], [ -70.064278, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.057068, 46.414902 ], [ -70.056381, 46.415612 ], [ -70.056725, 46.416559 ], [ -70.055695, 46.421529 ], [ -70.023079, 46.573495 ], [ -69.920425, 46.573731 ], [ -69.816399, 46.573259 ], [ -69.758720, 46.573967 ], [ -69.720955, 46.573967 ] ] ] } } ] } ] } , diff --git a/tests/tl_2015_us_county/out/-z8_-pp.json b/tests/tl_2015_us_county/out/-z8_-pp.json index 29e65fd07..b26e5449c 100644 --- a/tests/tl_2015_us_county/out/-z8_-pp.json +++ b/tests/tl_2015_us_county/out/-z8_-pp.json @@ -100,7 +100,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 38, "y": 45 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900044 ], [ -70.257568, 45.114723 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.364685, 45.157348 ], [ -70.363312, 45.152506 ], [ -70.363998, 45.152022 ], [ -70.418243, 45.143789 ], [ -70.473175, 45.353110 ], [ -70.518494, 45.512121 ], [ -70.505447, 45.513565 ], [ -70.533600, 45.602029 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.665886 ], [ -70.545273, 45.666846 ], [ -70.541840, 45.666366 ], [ -70.532913, 45.670684 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.668765 ], [ -70.519867, 45.671164 ], [ -70.510941, 45.677881 ], [ -70.510254, 45.679320 ], [ -70.505447, 45.681239 ], [ -70.502014, 45.681719 ], [ -70.502701, 45.682678 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686036 ], [ -70.494461, 45.687475 ], [ -70.493774, 45.688914 ], [ -70.490341, 45.689394 ], [ -70.484161, 45.693711 ], [ -70.479355, 45.694670 ], [ -70.473862, 45.698986 ], [ -70.469055, 45.701384 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.465622, 45.706179 ], [ -70.461502, 45.705220 ], [ -70.456009, 45.707138 ], [ -70.450516, 45.703782 ], [ -70.449142, 45.704261 ], [ -70.445023, 45.703782 ], [ -70.440903, 45.705220 ], [ -70.438843, 45.703782 ], [ -70.428543, 45.707138 ], [ -70.428543, 45.708097 ], [ -70.425797, 45.707138 ], [ -70.426483, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429230, 45.710015 ], [ -70.428543, 45.709536 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423050, 45.711454 ], [ -70.417557, 45.713371 ], [ -70.412750, 45.715289 ], [ -70.412750, 45.716248 ], [ -70.407257, 45.716728 ], [ -70.405884, 45.717686 ], [ -70.400391, 45.719604 ], [ -70.399704, 45.720563 ], [ -70.400391, 45.721522 ], [ -70.397644, 45.722960 ], [ -70.396957, 45.725356 ], [ -70.397644, 45.726794 ], [ -70.396957, 45.728712 ], [ -70.394897, 45.729670 ], [ -70.390091, 45.728232 ], [ -70.385284, 45.733505 ], [ -70.383911, 45.733984 ], [ -70.385971, 45.734463 ], [ -70.384598, 45.735422 ], [ -70.385284, 45.735901 ], [ -70.390091, 45.735901 ], [ -70.390091, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.737818 ], [ -70.391464, 45.739256 ], [ -70.393524, 45.739735 ], [ -70.392838, 45.741173 ], [ -70.394211, 45.742131 ], [ -70.394211, 45.744048 ], [ -70.388031, 45.748360 ], [ -70.388031, 45.750277 ], [ -70.394211, 45.754589 ], [ -70.395584, 45.756505 ], [ -70.400391, 45.757463 ], [ -70.407257, 45.762254 ], [ -70.405197, 45.769918 ], [ -70.407257, 45.771834 ], [ -70.407257, 45.773270 ], [ -70.405197, 45.776623 ], [ -70.407257, 45.778060 ], [ -70.410004, 45.784285 ], [ -70.414810, 45.784285 ], [ -70.415497, 45.785243 ], [ -70.414124, 45.790509 ], [ -70.417557, 45.793861 ], [ -70.416870, 45.795297 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797691 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.795776 ], [ -70.401077, 45.795776 ], [ -70.396957, 45.797691 ], [ -70.395584, 45.799127 ], [ -70.395584, 45.802478 ], [ -70.397644, 45.803435 ], [ -70.396271, 45.805829 ], [ -70.396957, 45.807743 ], [ -70.388031, 45.813965 ], [ -70.387344, 45.819229 ], [ -70.376358, 45.826885 ], [ -70.372238, 45.827842 ], [ -70.368805, 45.831191 ], [ -70.370178, 45.831670 ], [ -70.369492, 45.832627 ], [ -70.371552, 45.834062 ], [ -70.370865, 45.835019 ], [ -70.368805, 45.835976 ], [ -70.367432, 45.835976 ], [ -70.366745, 45.834540 ], [ -70.363998, 45.834540 ], [ -70.361938, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.355759, 45.837889 ], [ -70.356445, 45.838846 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.349579, 45.844586 ], [ -70.348892, 45.846978 ], [ -70.345459, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.261002, 45.888574 ], [ -70.258942, 45.890964 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.257568, 45.900044 ] ] ], [ [ [ -70.257568, 46.100376 ], [ -70.257568, 45.952104 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.963084 ], [ -70.315933, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317307, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.276794, 46.174125 ], [ -70.279541, 46.176502 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258942, 45.927752 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 45.915810 ], [ -70.257568, 45.908644 ], [ -70.259628, 45.909600 ], [ -70.259628, 45.910555 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.257568, 45.915810 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236378 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.257568, 45.900044 ], [ -70.257568, 45.114723 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.364685, 45.157348 ], [ -70.363312, 45.152506 ], [ -70.363998, 45.152022 ], [ -70.418243, 45.143789 ], [ -70.473175, 45.353110 ], [ -70.518494, 45.512121 ], [ -70.505447, 45.513565 ], [ -70.533600, 45.602029 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.665886 ], [ -70.545273, 45.666846 ], [ -70.541840, 45.666366 ], [ -70.532913, 45.670684 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.668765 ], [ -70.519867, 45.671164 ], [ -70.510941, 45.677881 ], [ -70.510254, 45.679320 ], [ -70.505447, 45.681239 ], [ -70.502014, 45.681719 ], [ -70.502701, 45.682678 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686036 ], [ -70.494461, 45.687475 ], [ -70.493774, 45.688914 ], [ -70.490341, 45.689394 ], [ -70.484161, 45.693711 ], [ -70.479355, 45.694670 ], [ -70.473862, 45.698986 ], [ -70.469055, 45.701384 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.465622, 45.706179 ], [ -70.461502, 45.705220 ], [ -70.456009, 45.707138 ], [ -70.450516, 45.703782 ], [ -70.449142, 45.704261 ], [ -70.445023, 45.703782 ], [ -70.440903, 45.705220 ], [ -70.438843, 45.703782 ], [ -70.428543, 45.707138 ], [ -70.428543, 45.708097 ], [ -70.425797, 45.707138 ], [ -70.426483, 45.708097 ], [ -70.428543, 45.708577 ], [ -70.429230, 45.710015 ], [ -70.428543, 45.709536 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423050, 45.711454 ], [ -70.417557, 45.713371 ], [ -70.412750, 45.715289 ], [ -70.412750, 45.716248 ], [ -70.407257, 45.716728 ], [ -70.405884, 45.717686 ], [ -70.400391, 45.719604 ], [ -70.399704, 45.720563 ], [ -70.400391, 45.721522 ], [ -70.397644, 45.722960 ], [ -70.396957, 45.725356 ], [ -70.397644, 45.726794 ], [ -70.396957, 45.728712 ], [ -70.394897, 45.729670 ], [ -70.390091, 45.728232 ], [ -70.385284, 45.733505 ], [ -70.383911, 45.733984 ], [ -70.385971, 45.734463 ], [ -70.384598, 45.735422 ], [ -70.385284, 45.735901 ], [ -70.390091, 45.735901 ], [ -70.390091, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.737818 ], [ -70.391464, 45.739256 ], [ -70.393524, 45.739735 ], [ -70.392838, 45.741173 ], [ -70.394211, 45.742131 ], [ -70.394211, 45.744048 ], [ -70.388031, 45.748360 ], [ -70.388031, 45.750277 ], [ -70.394211, 45.754589 ], [ -70.395584, 45.756505 ], [ -70.400391, 45.757463 ], [ -70.407257, 45.762254 ], [ -70.405197, 45.769918 ], [ -70.407257, 45.771834 ], [ -70.407257, 45.773270 ], [ -70.405197, 45.776623 ], [ -70.407257, 45.778060 ], [ -70.410004, 45.784285 ], [ -70.414810, 45.784285 ], [ -70.415497, 45.785243 ], [ -70.414124, 45.790509 ], [ -70.417557, 45.793861 ], [ -70.416870, 45.795297 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797691 ], [ -70.405197, 45.796733 ], [ -70.403137, 45.795776 ], [ -70.401077, 45.795776 ], [ -70.396957, 45.797691 ], [ -70.395584, 45.799127 ], [ -70.395584, 45.802478 ], [ -70.397644, 45.803435 ], [ -70.396271, 45.805829 ], [ -70.396957, 45.807743 ], [ -70.388031, 45.813965 ], [ -70.387344, 45.819229 ], [ -70.376358, 45.826885 ], [ -70.372238, 45.827842 ], [ -70.368805, 45.831191 ], [ -70.370178, 45.831670 ], [ -70.369492, 45.832627 ], [ -70.371552, 45.834062 ], [ -70.370865, 45.835019 ], [ -70.368805, 45.835976 ], [ -70.367432, 45.835976 ], [ -70.366745, 45.834540 ], [ -70.363998, 45.834540 ], [ -70.361938, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.355759, 45.837889 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.349579, 45.844586 ], [ -70.348892, 45.846978 ], [ -70.345459, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.261002, 45.888574 ], [ -70.258942, 45.890964 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.257568, 45.900044 ] ] ], [ [ [ -70.257568, 46.100376 ], [ -70.257568, 45.952104 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.963084 ], [ -70.315933, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.309067, 45.980264 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317307, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.276794, 46.174125 ], [ -70.279541, 46.176502 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ] ] ], [ [ [ -70.257568, 45.928707 ], [ -70.257568, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258942, 45.927752 ], [ -70.257568, 45.928707 ] ] ], [ [ [ -70.257568, 45.915810 ], [ -70.257568, 45.908644 ], [ -70.259628, 45.909600 ], [ -70.259628, 45.910555 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.257568, 45.915810 ] ] ], [ [ [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.257568, 46.240177 ], [ -70.257568, 46.236378 ] ] ] ] } } ] } ] } , @@ -120,13 +120,13 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.239716, 46.137501 ], [ -70.240402, 46.137977 ], [ -70.240402, 46.138928 ], [ -70.239029, 46.139404 ], [ -70.239029, 46.143210 ], [ -70.236282, 46.145113 ], [ -70.238342, 46.148443 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.150821 ], [ -70.241089, 46.150821 ], [ -70.241089, 46.149870 ], [ -70.242462, 46.149394 ], [ -70.243835, 46.151297 ], [ -70.245895, 46.150821 ], [ -70.246582, 46.151773 ], [ -70.247955, 46.151773 ], [ -70.247269, 46.153200 ], [ -70.250015, 46.154151 ], [ -70.249329, 46.155578 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159383 ], [ -70.256882, 46.159383 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.278168, 46.175076 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.256882, 46.240177 ], [ -70.256882, 46.242077 ], [ -70.255508, 46.243026 ], [ -70.255508, 46.244451 ], [ -70.254135, 46.245401 ], [ -70.255508, 46.245876 ], [ -70.250702, 46.248725 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253948 ], [ -70.252762, 46.254897 ], [ -70.252762, 46.258695 ], [ -70.252075, 46.260120 ], [ -70.250015, 46.260594 ], [ -70.250015, 46.262968 ], [ -70.247955, 46.265816 ], [ -70.247955, 46.267715 ], [ -70.243149, 46.271512 ], [ -70.243149, 46.272936 ], [ -70.240402, 46.272936 ], [ -70.240402, 46.274834 ], [ -70.239029, 46.275784 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.279106 ], [ -70.234909, 46.281479 ], [ -70.234222, 46.283377 ], [ -70.232162, 46.284326 ], [ -70.231476, 46.290969 ], [ -70.228729, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.220490, 46.292867 ], [ -70.216370, 46.294290 ], [ -70.217056, 46.295239 ], [ -70.214996, 46.294764 ], [ -70.213623, 46.296188 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210190, 46.298085 ], [ -70.205383, 46.299983 ], [ -70.206757, 46.300932 ], [ -70.205383, 46.302355 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.309944 ], [ -70.203323, 46.312790 ], [ -70.202637, 46.314687 ], [ -70.207443, 46.319430 ], [ -70.206070, 46.324646 ], [ -70.208817, 46.329387 ], [ -70.195770, 46.340765 ], [ -70.195770, 46.343610 ], [ -70.193024, 46.346928 ], [ -70.190964, 46.347876 ], [ -70.192337, 46.348824 ], [ -70.191650, 46.349771 ], [ -70.187531, 46.349771 ], [ -70.184784, 46.351667 ], [ -70.181351, 46.352141 ], [ -70.180664, 46.354511 ], [ -70.177231, 46.355459 ], [ -70.175171, 46.357828 ], [ -70.173111, 46.359250 ], [ -70.170364, 46.359250 ], [ -70.165558, 46.357354 ], [ -70.164871, 46.358302 ], [ -70.162125, 46.359724 ], [ -70.161438, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359250 ], [ -70.158005, 46.360671 ], [ -70.155258, 46.361145 ], [ -70.153885, 46.359724 ], [ -70.147705, 46.358776 ], [ -70.144272, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140152, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138092, 46.366358 ], [ -70.137405, 46.369200 ], [ -70.136032, 46.369674 ], [ -70.133972, 46.368727 ], [ -70.129166, 46.369200 ], [ -70.128479, 46.370622 ], [ -70.127106, 46.370622 ], [ -70.127792, 46.379149 ], [ -70.125732, 46.381518 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115433, 46.386254 ], [ -70.116806, 46.387201 ], [ -70.116806, 46.388149 ], [ -70.114746, 46.388149 ], [ -70.114059, 46.385307 ], [ -70.110626, 46.386254 ], [ -70.112000, 46.388149 ], [ -70.111313, 46.388149 ], [ -70.109940, 46.387201 ], [ -70.109940, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.109940, 46.390043 ], [ -70.109253, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.106506, 46.390517 ], [ -70.107193, 46.392411 ], [ -70.104446, 46.393832 ], [ -70.101700, 46.396673 ], [ -70.100327, 46.398568 ], [ -70.101013, 46.400935 ], [ -70.098953, 46.400462 ], [ -70.099640, 46.402356 ], [ -70.098953, 46.402829 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403303 ], [ -70.098267, 46.403303 ], [ -70.097580, 46.404250 ], [ -70.099640, 46.404250 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405670 ], [ -70.094833, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094147, 46.408037 ], [ -70.096893, 46.408984 ], [ -70.096207, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.408984 ], [ -70.082474, 46.410405 ], [ -70.079041, 46.410405 ], [ -70.076294, 46.409458 ], [ -70.072174, 46.410878 ], [ -70.068054, 46.411352 ], [ -70.063934, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.056381, 46.415612 ], [ -70.022736, 46.573495 ], [ -69.816055, 46.573023 ], [ -69.720612, 46.573967 ], [ -69.719238, 46.393832 ], [ -69.732285, 46.393832 ], [ -69.728165, 45.976924 ], [ -69.683533, 45.983604 ], [ -69.646454, 45.863716 ], [ -69.646454, 45.862759 ], [ -69.647827, 45.863716 ], [ -69.648514, 45.862759 ], [ -69.649200, 45.863238 ], [ -69.651260, 45.862759 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863716 ], [ -69.654694, 45.861803 ], [ -69.656067, 45.862281 ], [ -69.656754, 45.861325 ], [ -69.656067, 45.859890 ], [ -69.658127, 45.860847 ], [ -69.659500, 45.860369 ], [ -69.659500, 45.860847 ], [ -69.662247, 45.860847 ], [ -69.662933, 45.859890 ], [ -69.664307, 45.860369 ], [ -69.663620, 45.861325 ], [ -69.664993, 45.861803 ], [ -69.669800, 45.860847 ], [ -69.673233, 45.862281 ], [ -69.673233, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.672546, 45.859412 ], [ -69.673920, 45.856543 ], [ -69.674606, 45.851760 ], [ -69.675980, 45.851282 ], [ -69.675980, 45.852717 ], [ -69.677353, 45.852717 ], [ -69.678040, 45.851760 ], [ -69.681473, 45.851282 ], [ -69.682159, 45.852239 ], [ -69.683533, 45.850804 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853673 ], [ -69.689713, 45.854152 ], [ -69.689026, 45.857978 ], [ -69.691772, 45.858934 ], [ -69.691086, 45.860847 ], [ -69.693832, 45.861803 ], [ -69.692459, 45.862281 ], [ -69.693146, 45.864194 ], [ -69.693832, 45.863716 ], [ -69.696579, 45.864194 ], [ -69.696579, 45.867063 ], [ -69.699326, 45.868497 ], [ -69.698639, 45.869931 ], [ -69.701385, 45.872322 ], [ -69.700012, 45.873756 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.878537 ], [ -69.701385, 45.879493 ], [ -69.697952, 45.880449 ], [ -69.697266, 45.885707 ], [ -69.702759, 45.885707 ], [ -69.706192, 45.884751 ], [ -69.708252, 45.885707 ], [ -69.710999, 45.884751 ], [ -69.712372, 45.882839 ], [ -69.715805, 45.883317 ], [ -69.717178, 45.882361 ], [ -69.721985, 45.881405 ], [ -69.723358, 45.879493 ], [ -69.724045, 45.879493 ], [ -69.724045, 45.879015 ], [ -69.726791, 45.879971 ], [ -69.729538, 45.879493 ], [ -69.731598, 45.878059 ], [ -69.732971, 45.879971 ], [ -69.735031, 45.879971 ], [ -69.735718, 45.880927 ], [ -69.736404, 45.880449 ], [ -69.736404, 45.881883 ], [ -69.737778, 45.883317 ], [ -69.737778, 45.879971 ], [ -69.733658, 45.879015 ], [ -69.734344, 45.878537 ], [ -69.733658, 45.877103 ], [ -69.729538, 45.876146 ], [ -69.728165, 45.875190 ], [ -69.726791, 45.875668 ], [ -69.726791, 45.874712 ], [ -69.724731, 45.873756 ], [ -69.724731, 45.871844 ], [ -69.723358, 45.871366 ], [ -69.724045, 45.867541 ], [ -69.725418, 45.867063 ], [ -69.724731, 45.865628 ], [ -69.717178, 45.865628 ], [ -69.715118, 45.862281 ], [ -69.710999, 45.860847 ], [ -69.711685, 45.857978 ], [ -69.710999, 45.856065 ], [ -69.708939, 45.855586 ], [ -69.708252, 45.854152 ], [ -69.705505, 45.853673 ], [ -69.708252, 45.850804 ], [ -69.707565, 45.846978 ], [ -69.706192, 45.846021 ], [ -69.704132, 45.846021 ], [ -69.706879, 45.842194 ], [ -69.707565, 45.838368 ], [ -69.708939, 45.837411 ], [ -69.708252, 45.835976 ], [ -69.711685, 45.833584 ], [ -69.711685, 45.832148 ], [ -69.715118, 45.831670 ], [ -69.717178, 45.832627 ], [ -69.717865, 45.833584 ], [ -69.717178, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719238, 45.834062 ], [ -69.717865, 45.831191 ], [ -69.718552, 45.829756 ], [ -69.715805, 45.828799 ], [ -69.715118, 45.825450 ], [ -69.712372, 45.823057 ], [ -69.712372, 45.818751 ], [ -69.709625, 45.815401 ], [ -69.708252, 45.811093 ], [ -69.712372, 45.806307 ], [ -69.713745, 45.801999 ], [ -69.717178, 45.798648 ], [ -69.716492, 45.798170 ], [ -69.718552, 45.794818 ], [ -69.719925, 45.788594 ], [ -69.723358, 45.785243 ], [ -69.722672, 45.783327 ], [ -69.728851, 45.782848 ], [ -69.732971, 45.783327 ], [ -69.737778, 45.782848 ], [ -69.737778, 45.781412 ], [ -69.735718, 45.780454 ], [ -69.735718, 45.779017 ], [ -69.728851, 45.775665 ], [ -69.725418, 45.771355 ], [ -69.724045, 45.766565 ], [ -69.726105, 45.762254 ], [ -69.729538, 45.760338 ], [ -69.732285, 45.756026 ], [ -69.736404, 45.754589 ], [ -69.740524, 45.755547 ], [ -69.743271, 45.759859 ], [ -69.747391, 45.759380 ], [ -69.746704, 45.761296 ], [ -69.749451, 45.763212 ], [ -69.750824, 45.765607 ], [ -69.750137, 45.763212 ], [ -69.752884, 45.761296 ], [ -69.757004, 45.761296 ], [ -69.759750, 45.762254 ], [ -69.762497, 45.760817 ], [ -69.768677, 45.761296 ], [ -69.767303, 45.762733 ], [ -69.769363, 45.762733 ], [ -69.772797, 45.765128 ], [ -69.774170, 45.764649 ], [ -69.773483, 45.766086 ], [ -69.776230, 45.767523 ], [ -69.776917, 45.770397 ], [ -69.781723, 45.775665 ], [ -69.780350, 45.776623 ], [ -69.781036, 45.778060 ], [ -69.782410, 45.778539 ], [ -69.783783, 45.776623 ], [ -69.785156, 45.777102 ], [ -69.784470, 45.778060 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.779496 ], [ -69.784470, 45.780454 ], [ -69.786530, 45.780454 ], [ -69.787903, 45.777581 ], [ -69.789276, 45.777581 ], [ -69.787216, 45.776623 ], [ -69.787216, 45.774707 ], [ -69.785843, 45.774707 ], [ -69.785843, 45.775665 ], [ -69.782410, 45.775186 ], [ -69.783096, 45.774228 ], [ -69.784470, 45.774228 ], [ -69.783783, 45.772792 ], [ -69.781036, 45.773270 ], [ -69.783783, 45.772313 ], [ -69.781723, 45.769439 ], [ -69.784470, 45.769439 ], [ -69.785843, 45.768481 ], [ -69.787903, 45.768960 ], [ -69.789963, 45.768002 ], [ -69.789276, 45.766565 ], [ -69.791336, 45.765607 ], [ -69.791336, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.792709, 45.761775 ], [ -69.792709, 45.758422 ], [ -69.791336, 45.758422 ], [ -69.792709, 45.756984 ], [ -69.792023, 45.756026 ], [ -69.789276, 45.755547 ], [ -69.792023, 45.751235 ], [ -69.790649, 45.749798 ], [ -69.788589, 45.749319 ], [ -69.789276, 45.747881 ], [ -69.787903, 45.746444 ], [ -69.789276, 45.746923 ], [ -69.792023, 45.745485 ], [ -69.796143, 45.745965 ], [ -69.800949, 45.748839 ], [ -69.803696, 45.748839 ], [ -69.811935, 45.745485 ], [ -69.812622, 45.746923 ], [ -69.817429, 45.746923 ], [ -69.820862, 45.745006 ], [ -69.822235, 45.743569 ], [ -69.824982, 45.743089 ], [ -69.825668, 45.741173 ], [ -69.823608, 45.742131 ], [ -69.818802, 45.738777 ], [ -69.811249, 45.737339 ], [ -69.809875, 45.735901 ], [ -69.812622, 45.735901 ], [ -69.809189, 45.733025 ], [ -69.800262, 45.733025 ], [ -69.793396, 45.728232 ], [ -69.791336, 45.728232 ], [ -69.792023, 45.725356 ], [ -69.794769, 45.725356 ], [ -69.795456, 45.724398 ], [ -69.796829, 45.723918 ], [ -69.798203, 45.724877 ], [ -69.799576, 45.723439 ], [ -69.799576, 45.722480 ], [ -69.802322, 45.723918 ], [ -69.804382, 45.722480 ], [ -69.803009, 45.720563 ], [ -69.804382, 45.720563 ], [ -69.805069, 45.721522 ], [ -69.805756, 45.721042 ], [ -69.807129, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.814682, 45.721042 ], [ -69.808502, 45.722480 ], [ -69.805069, 45.719604 ], [ -69.805069, 45.717207 ], [ -69.803009, 45.714810 ], [ -69.797516, 45.714810 ], [ -69.789963, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789276, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.698507 ], [ -69.784470, 45.697068 ], [ -69.785156, 45.692272 ], [ -69.783096, 45.690353 ], [ -69.778976, 45.689874 ], [ -69.776230, 45.687955 ], [ -69.774857, 45.687475 ], [ -69.773483, 45.685557 ], [ -69.768677, 45.684597 ], [ -69.765244, 45.682678 ], [ -69.759750, 45.682199 ], [ -69.756317, 45.679320 ], [ -69.754257, 45.679320 ], [ -69.747391, 45.681239 ], [ -69.742584, 45.680759 ], [ -69.738464, 45.679320 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.677401 ], [ -69.737778, 45.676442 ], [ -69.736404, 45.676442 ], [ -69.738464, 45.675002 ], [ -69.738464, 45.671164 ], [ -69.740524, 45.668765 ], [ -69.739151, 45.666846 ], [ -69.741211, 45.666846 ], [ -69.744644, 45.663487 ], [ -69.744644, 45.661087 ], [ -69.741211, 45.660127 ], [ -69.741211, 45.657248 ], [ -69.739151, 45.656768 ], [ -69.742584, 45.654848 ], [ -69.743958, 45.651968 ], [ -69.741211, 45.651968 ], [ -69.737778, 45.650528 ], [ -69.735718, 45.650528 ], [ -69.733658, 45.654368 ], [ -69.731598, 45.655808 ], [ -69.732285, 45.656768 ], [ -69.735031, 45.656768 ], [ -69.734344, 45.657728 ], [ -69.728851, 45.656288 ], [ -69.721985, 45.657248 ], [ -69.719238, 45.655808 ], [ -69.712372, 45.655328 ], [ -69.706879, 45.652928 ], [ -69.700699, 45.651488 ], [ -69.699326, 45.650048 ], [ -69.691772, 45.645248 ], [ -69.693832, 45.640928 ], [ -69.696579, 45.640448 ], [ -69.700012, 45.644288 ], [ -69.705505, 45.644768 ], [ -69.706192, 45.646688 ], [ -69.709625, 45.649568 ], [ -69.713058, 45.650528 ], [ -69.712372, 45.647648 ], [ -69.713745, 45.647168 ], [ -69.713745, 45.648128 ], [ -69.715118, 45.648128 ], [ -69.716492, 45.647648 ], [ -69.718552, 45.639488 ], [ -69.714432, 45.639488 ], [ -69.710999, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.636127 ], [ -69.706879, 45.632286 ], [ -69.701385, 45.627964 ], [ -69.702759, 45.626044 ], [ -69.702759, 45.620281 ], [ -69.704819, 45.619320 ], [ -69.704132, 45.618360 ], [ -69.708252, 45.616439 ], [ -69.709625, 45.613077 ], [ -69.710999, 45.612596 ], [ -69.711685, 45.614037 ], [ -69.713745, 45.612596 ], [ -69.714432, 45.612596 ], [ -69.717178, 45.612116 ], [ -69.719238, 45.614518 ], [ -69.717178, 45.608754 ], [ -69.717865, 45.607793 ], [ -69.719925, 45.607793 ], [ -69.719925, 45.604431 ], [ -69.721298, 45.602989 ], [ -69.717178, 45.597224 ], [ -69.714432, 45.596744 ], [ -69.713058, 45.594822 ], [ -69.712372, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589537 ], [ -69.714432, 45.585212 ], [ -69.717178, 45.584731 ], [ -69.719238, 45.582809 ], [ -69.723358, 45.581367 ], [ -69.726105, 45.577042 ], [ -69.726105, 45.574158 ], [ -69.728165, 45.572236 ], [ -69.728165, 45.569832 ], [ -69.731598, 45.566468 ], [ -69.743271, 45.562622 ], [ -69.744644, 45.560699 ], [ -69.747391, 45.560218 ], [ -69.750824, 45.557814 ], [ -69.754257, 45.557333 ], [ -69.759750, 45.553968 ], [ -69.764557, 45.554449 ], [ -69.769363, 45.553487 ], [ -69.773483, 45.554449 ], [ -69.774857, 45.553487 ], [ -69.774857, 45.549159 ], [ -69.772797, 45.545312 ], [ -69.779663, 45.542427 ], [ -69.731598, 45.387360 ], [ -69.700012, 45.292279 ], [ -69.708252, 45.291313 ], [ -69.705505, 45.278269 ], [ -69.683533, 45.212520 ], [ -69.686966, 45.207682 ], [ -69.656067, 45.104062 ], [ -69.654694, 45.099700 ], [ -69.645767, 45.101154 ], [ -69.631348, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128289 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.365372, 45.157348 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152022 ], [ -70.367432, 45.835019 ], [ -70.363998, 45.834540 ], [ -70.362625, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.357132, 45.838846 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.350266, 45.844586 ], [ -70.349579, 45.846978 ], [ -70.346146, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.259628, 45.890008 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.253448, 45.902433 ], [ -70.253448, 45.907211 ], [ -70.259628, 45.909600 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.256882, 45.916288 ], [ -70.256882, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258255, 45.928230 ], [ -70.255508, 45.928707 ], [ -70.251389, 45.933483 ], [ -70.246582, 45.935871 ], [ -70.243149, 45.936826 ], [ -70.239029, 45.939691 ], [ -70.240402, 45.942556 ], [ -70.239029, 45.943988 ], [ -70.244522, 45.944466 ], [ -70.241776, 45.946375 ], [ -70.248642, 45.950195 ], [ -70.247955, 45.950672 ], [ -70.248642, 45.952582 ], [ -70.250702, 45.952582 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.954969 ], [ -70.255508, 45.952582 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.308380, 45.979309 ], [ -70.309067, 45.980741 ], [ -70.307693, 45.980741 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317993, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ], [ -70.256882, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252762, 46.103709 ], [ -70.252075, 46.105613 ], [ -70.252762, 46.107041 ], [ -70.254822, 46.108469 ], [ -70.255508, 46.110374 ], [ -70.254135, 46.110850 ], [ -70.253448, 46.112278 ], [ -70.254135, 46.113706 ], [ -70.252075, 46.114658 ], [ -70.250702, 46.117990 ], [ -70.251389, 46.119417 ], [ -70.249329, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247269, 46.125605 ], [ -70.245209, 46.126080 ], [ -70.244522, 46.128460 ], [ -70.243149, 46.128460 ], [ -70.243835, 46.130839 ], [ -70.242462, 46.131315 ], [ -70.242462, 46.133218 ], [ -70.241089, 46.134646 ], [ -70.241776, 46.135122 ], [ -70.239716, 46.136549 ], [ -70.239716, 46.137501 ] ], [ [ -69.787903, 45.784285 ], [ -69.787216, 45.783327 ], [ -69.784470, 45.783327 ], [ -69.783783, 45.782369 ], [ -69.783783, 45.781412 ], [ -69.781723, 45.780933 ], [ -69.781723, 45.781891 ], [ -69.783783, 45.783327 ], [ -69.783783, 45.783806 ], [ -69.784470, 45.785243 ], [ -69.787903, 45.784764 ], [ -69.787903, 45.784285 ] ], [ [ -69.800949, 45.785243 ], [ -69.799576, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.796829, 45.782848 ], [ -69.796143, 45.783327 ], [ -69.795456, 45.783327 ], [ -69.795456, 45.784285 ], [ -69.795456, 45.785243 ], [ -69.797516, 45.785243 ], [ -69.797516, 45.784764 ], [ -69.800949, 45.785243 ] ], [ [ -69.825668, 45.741173 ], [ -69.827042, 45.739735 ], [ -69.833221, 45.738297 ], [ -69.829102, 45.737818 ], [ -69.827728, 45.738777 ], [ -69.827042, 45.737818 ], [ -69.827042, 45.738777 ], [ -69.825668, 45.739256 ], [ -69.825668, 45.741173 ] ], [ [ -69.719238, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.723358, 45.833584 ], [ -69.719238, 45.834062 ] ], [ [ -69.789963, 45.783806 ], [ -69.792023, 45.785243 ], [ -69.792023, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.795456, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.793396, 45.782848 ], [ -69.793396, 45.783327 ], [ -69.793396, 45.783806 ], [ -69.795456, 45.783327 ] ], [ [ -69.723358, 45.833584 ], [ -69.725418, 45.834540 ], [ -69.724731, 45.833105 ], [ -69.723358, 45.833584 ] ], [ [ -70.107880, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.388149 ], [ -70.107193, 46.387675 ], [ -70.107880, 46.388622 ] ], [ [ -69.787903, 45.784285 ], [ -69.788589, 45.783327 ], [ -69.787903, 45.782848 ], [ -69.787903, 45.784285 ] ] ], [ [ [ -69.498825, 45.050240 ], [ -69.499512, 45.053636 ], [ -69.355316, 45.073521 ], [ -69.349136, 45.050240 ], [ -69.498825, 45.050240 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.239716, 46.137501 ], [ -70.240402, 46.137977 ], [ -70.240402, 46.138928 ], [ -70.239029, 46.139404 ], [ -70.239029, 46.143210 ], [ -70.236282, 46.145113 ], [ -70.238342, 46.148443 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.150821 ], [ -70.241089, 46.150821 ], [ -70.241089, 46.149870 ], [ -70.242462, 46.149394 ], [ -70.243835, 46.151297 ], [ -70.245895, 46.150821 ], [ -70.246582, 46.151773 ], [ -70.247955, 46.151773 ], [ -70.247269, 46.153200 ], [ -70.250015, 46.154151 ], [ -70.249329, 46.155578 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159383 ], [ -70.256882, 46.159383 ], [ -70.258942, 46.160810 ], [ -70.258255, 46.161761 ], [ -70.259628, 46.163188 ], [ -70.264435, 46.164614 ], [ -70.264435, 46.167468 ], [ -70.265808, 46.168894 ], [ -70.267868, 46.170321 ], [ -70.269928, 46.170321 ], [ -70.270615, 46.171747 ], [ -70.273361, 46.172223 ], [ -70.275421, 46.173174 ], [ -70.274734, 46.174125 ], [ -70.278168, 46.175076 ], [ -70.279541, 46.177453 ], [ -70.282288, 46.178404 ], [ -70.282288, 46.180306 ], [ -70.283661, 46.180306 ], [ -70.283661, 46.181257 ], [ -70.285721, 46.182683 ], [ -70.285034, 46.184109 ], [ -70.290527, 46.185060 ], [ -70.289841, 46.188863 ], [ -70.291901, 46.190289 ], [ -70.291901, 46.191240 ], [ -70.288467, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195042 ], [ -70.285721, 46.195042 ], [ -70.285721, 46.196943 ], [ -70.284348, 46.197419 ], [ -70.283661, 46.198844 ], [ -70.280914, 46.199795 ], [ -70.280914, 46.200745 ], [ -70.279541, 46.201221 ], [ -70.278854, 46.203122 ], [ -70.276794, 46.203597 ], [ -70.276108, 46.207399 ], [ -70.271301, 46.209774 ], [ -70.271988, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.271301, 46.212150 ], [ -70.271301, 46.213101 ], [ -70.274048, 46.214526 ], [ -70.272675, 46.215951 ], [ -70.273361, 46.216902 ], [ -70.269241, 46.216902 ], [ -70.267181, 46.218802 ], [ -70.267868, 46.220702 ], [ -70.265121, 46.223553 ], [ -70.267181, 46.224978 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.259628, 46.230203 ], [ -70.260315, 46.231153 ], [ -70.257568, 46.236378 ], [ -70.258942, 46.238752 ], [ -70.256882, 46.240177 ], [ -70.256882, 46.242077 ], [ -70.255508, 46.243026 ], [ -70.255508, 46.244451 ], [ -70.254135, 46.245401 ], [ -70.255508, 46.245876 ], [ -70.250702, 46.248725 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253473 ], [ -70.252762, 46.254897 ], [ -70.252762, 46.258695 ], [ -70.252075, 46.260120 ], [ -70.250015, 46.260594 ], [ -70.250015, 46.262968 ], [ -70.247955, 46.265816 ], [ -70.247955, 46.267715 ], [ -70.243149, 46.271512 ], [ -70.243149, 46.272936 ], [ -70.240402, 46.272936 ], [ -70.240402, 46.274834 ], [ -70.239029, 46.275784 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.279106 ], [ -70.234909, 46.281479 ], [ -70.234222, 46.283377 ], [ -70.232162, 46.284326 ], [ -70.231476, 46.290969 ], [ -70.228729, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.220490, 46.292867 ], [ -70.216370, 46.294290 ], [ -70.217056, 46.295239 ], [ -70.214996, 46.294764 ], [ -70.213623, 46.296188 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210190, 46.298085 ], [ -70.205383, 46.299983 ], [ -70.206757, 46.300932 ], [ -70.205383, 46.302355 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.309944 ], [ -70.203323, 46.312790 ], [ -70.202637, 46.314687 ], [ -70.207443, 46.319430 ], [ -70.206070, 46.324646 ], [ -70.208817, 46.329387 ], [ -70.195770, 46.340765 ], [ -70.195770, 46.343610 ], [ -70.193024, 46.346928 ], [ -70.190964, 46.347876 ], [ -70.192337, 46.348824 ], [ -70.191650, 46.349771 ], [ -70.187531, 46.349771 ], [ -70.184784, 46.351667 ], [ -70.181351, 46.352141 ], [ -70.180664, 46.354511 ], [ -70.177231, 46.355459 ], [ -70.175171, 46.357828 ], [ -70.173111, 46.359250 ], [ -70.170364, 46.359250 ], [ -70.165558, 46.357354 ], [ -70.164871, 46.358302 ], [ -70.162125, 46.359724 ], [ -70.161438, 46.361145 ], [ -70.160065, 46.361145 ], [ -70.160065, 46.359724 ], [ -70.158005, 46.359250 ], [ -70.158005, 46.360671 ], [ -70.155258, 46.361145 ], [ -70.153885, 46.359724 ], [ -70.147705, 46.358776 ], [ -70.144272, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140152, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138092, 46.366358 ], [ -70.137405, 46.369200 ], [ -70.136032, 46.369674 ], [ -70.133972, 46.368727 ], [ -70.129166, 46.369200 ], [ -70.128479, 46.370622 ], [ -70.127106, 46.370622 ], [ -70.127792, 46.379149 ], [ -70.125732, 46.381518 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115433, 46.386254 ], [ -70.116806, 46.387201 ], [ -70.116806, 46.388149 ], [ -70.114746, 46.388149 ], [ -70.114059, 46.385307 ], [ -70.110626, 46.386254 ], [ -70.112000, 46.388149 ], [ -70.111313, 46.388149 ], [ -70.109940, 46.387201 ], [ -70.109940, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.109940, 46.390043 ], [ -70.109253, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.106506, 46.390517 ], [ -70.107193, 46.392411 ], [ -70.104446, 46.393832 ], [ -70.101700, 46.396673 ], [ -70.100327, 46.398568 ], [ -70.101013, 46.400935 ], [ -70.098953, 46.400462 ], [ -70.099640, 46.402356 ], [ -70.098953, 46.402829 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403303 ], [ -70.098267, 46.403303 ], [ -70.097580, 46.404250 ], [ -70.099640, 46.404250 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405670 ], [ -70.094833, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094147, 46.408037 ], [ -70.096893, 46.408984 ], [ -70.096207, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.408984 ], [ -70.082474, 46.410405 ], [ -70.079041, 46.410405 ], [ -70.076294, 46.409458 ], [ -70.072174, 46.410878 ], [ -70.068054, 46.411352 ], [ -70.063934, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.056381, 46.415612 ], [ -70.022736, 46.573495 ], [ -69.816055, 46.573023 ], [ -69.720612, 46.573967 ], [ -69.719238, 46.393832 ], [ -69.732285, 46.393832 ], [ -69.728165, 45.976924 ], [ -69.683533, 45.983604 ], [ -69.646454, 45.863716 ], [ -69.646454, 45.862759 ], [ -69.647827, 45.863716 ], [ -69.648514, 45.862759 ], [ -69.649200, 45.863238 ], [ -69.651260, 45.862759 ], [ -69.651260, 45.863716 ], [ -69.654007, 45.863716 ], [ -69.654694, 45.861803 ], [ -69.656067, 45.862281 ], [ -69.656754, 45.861325 ], [ -69.656067, 45.859890 ], [ -69.658127, 45.860847 ], [ -69.659500, 45.860369 ], [ -69.659500, 45.860847 ], [ -69.662247, 45.860847 ], [ -69.662933, 45.859890 ], [ -69.664307, 45.860369 ], [ -69.663620, 45.861325 ], [ -69.664993, 45.861803 ], [ -69.669800, 45.860847 ], [ -69.673233, 45.862281 ], [ -69.673233, 45.861803 ], [ -69.674606, 45.862281 ], [ -69.672546, 45.859412 ], [ -69.673920, 45.856543 ], [ -69.674606, 45.851760 ], [ -69.675980, 45.851282 ], [ -69.675980, 45.852717 ], [ -69.677353, 45.852717 ], [ -69.678040, 45.851760 ], [ -69.681473, 45.851282 ], [ -69.682159, 45.852239 ], [ -69.683533, 45.850804 ], [ -69.686279, 45.851760 ], [ -69.686279, 45.853673 ], [ -69.689713, 45.854152 ], [ -69.689026, 45.857978 ], [ -69.691772, 45.858934 ], [ -69.691086, 45.860847 ], [ -69.693832, 45.861803 ], [ -69.692459, 45.862281 ], [ -69.693146, 45.864194 ], [ -69.693832, 45.863716 ], [ -69.696579, 45.864194 ], [ -69.696579, 45.867063 ], [ -69.699326, 45.868497 ], [ -69.698639, 45.869931 ], [ -69.701385, 45.872322 ], [ -69.700012, 45.873756 ], [ -69.702759, 45.877103 ], [ -69.702759, 45.878537 ], [ -69.701385, 45.879493 ], [ -69.697952, 45.880449 ], [ -69.697266, 45.885707 ], [ -69.702759, 45.885707 ], [ -69.706192, 45.884751 ], [ -69.708252, 45.885707 ], [ -69.710999, 45.884751 ], [ -69.712372, 45.882839 ], [ -69.715805, 45.883317 ], [ -69.717178, 45.882361 ], [ -69.721985, 45.881405 ], [ -69.723358, 45.879493 ], [ -69.724045, 45.879493 ], [ -69.724045, 45.879015 ], [ -69.726791, 45.879971 ], [ -69.729538, 45.879493 ], [ -69.731598, 45.878059 ], [ -69.732971, 45.879971 ], [ -69.735031, 45.879971 ], [ -69.735718, 45.880927 ], [ -69.736404, 45.880449 ], [ -69.736404, 45.881883 ], [ -69.737778, 45.883317 ], [ -69.737778, 45.879971 ], [ -69.733658, 45.879015 ], [ -69.734344, 45.878537 ], [ -69.733658, 45.877103 ], [ -69.729538, 45.876146 ], [ -69.728165, 45.875190 ], [ -69.726791, 45.875668 ], [ -69.726791, 45.874712 ], [ -69.724731, 45.873756 ], [ -69.724731, 45.871844 ], [ -69.723358, 45.871366 ], [ -69.724045, 45.867541 ], [ -69.725418, 45.867063 ], [ -69.724731, 45.865628 ], [ -69.717178, 45.865628 ], [ -69.715118, 45.862281 ], [ -69.710999, 45.860847 ], [ -69.711685, 45.857978 ], [ -69.710999, 45.856065 ], [ -69.708939, 45.855586 ], [ -69.708252, 45.854152 ], [ -69.705505, 45.853673 ], [ -69.708252, 45.850804 ], [ -69.707565, 45.846978 ], [ -69.706192, 45.846021 ], [ -69.704132, 45.846021 ], [ -69.706879, 45.842194 ], [ -69.707565, 45.838368 ], [ -69.708939, 45.837411 ], [ -69.708252, 45.835976 ], [ -69.711685, 45.833584 ], [ -69.711685, 45.832148 ], [ -69.715118, 45.831670 ], [ -69.717178, 45.832627 ], [ -69.717865, 45.833584 ], [ -69.717178, 45.834540 ], [ -69.718552, 45.834062 ], [ -69.719238, 45.834062 ], [ -69.717865, 45.831191 ], [ -69.718552, 45.829756 ], [ -69.715805, 45.828799 ], [ -69.715118, 45.825450 ], [ -69.712372, 45.823057 ], [ -69.712372, 45.818751 ], [ -69.709625, 45.815401 ], [ -69.708252, 45.811093 ], [ -69.712372, 45.806307 ], [ -69.713745, 45.801999 ], [ -69.717178, 45.798648 ], [ -69.716492, 45.798170 ], [ -69.718552, 45.794818 ], [ -69.719925, 45.788594 ], [ -69.723358, 45.785243 ], [ -69.722672, 45.783327 ], [ -69.728851, 45.782848 ], [ -69.732971, 45.783327 ], [ -69.737778, 45.782848 ], [ -69.737778, 45.781412 ], [ -69.735718, 45.780454 ], [ -69.735718, 45.779017 ], [ -69.728851, 45.775665 ], [ -69.725418, 45.771355 ], [ -69.724045, 45.766565 ], [ -69.726105, 45.762254 ], [ -69.729538, 45.760338 ], [ -69.732285, 45.756026 ], [ -69.736404, 45.754589 ], [ -69.740524, 45.755547 ], [ -69.743271, 45.759859 ], [ -69.747391, 45.759380 ], [ -69.746704, 45.761296 ], [ -69.749451, 45.763212 ], [ -69.750824, 45.765607 ], [ -69.750137, 45.763212 ], [ -69.752884, 45.761296 ], [ -69.757004, 45.761296 ], [ -69.759750, 45.762254 ], [ -69.762497, 45.760817 ], [ -69.768677, 45.761296 ], [ -69.767303, 45.762733 ], [ -69.769363, 45.762733 ], [ -69.772797, 45.765128 ], [ -69.774170, 45.764649 ], [ -69.773483, 45.766086 ], [ -69.776230, 45.767523 ], [ -69.776917, 45.770397 ], [ -69.781723, 45.775665 ], [ -69.780350, 45.776623 ], [ -69.781036, 45.778060 ], [ -69.782410, 45.778539 ], [ -69.783783, 45.776623 ], [ -69.785156, 45.777102 ], [ -69.784470, 45.778060 ], [ -69.785843, 45.779496 ], [ -69.785156, 45.779496 ], [ -69.784470, 45.780454 ], [ -69.786530, 45.780454 ], [ -69.787903, 45.777581 ], [ -69.789276, 45.777581 ], [ -69.787216, 45.776623 ], [ -69.787216, 45.774707 ], [ -69.785843, 45.774707 ], [ -69.785843, 45.775665 ], [ -69.782410, 45.775186 ], [ -69.783096, 45.774228 ], [ -69.784470, 45.774228 ], [ -69.783783, 45.772792 ], [ -69.781036, 45.773270 ], [ -69.783783, 45.772313 ], [ -69.781723, 45.769439 ], [ -69.784470, 45.769439 ], [ -69.785843, 45.768481 ], [ -69.787903, 45.768960 ], [ -69.789963, 45.768002 ], [ -69.789276, 45.766565 ], [ -69.791336, 45.765607 ], [ -69.791336, 45.764649 ], [ -69.790649, 45.764649 ], [ -69.792709, 45.761775 ], [ -69.792709, 45.758422 ], [ -69.791336, 45.758422 ], [ -69.792709, 45.756984 ], [ -69.792023, 45.756026 ], [ -69.789276, 45.755547 ], [ -69.792023, 45.751235 ], [ -69.790649, 45.749798 ], [ -69.788589, 45.749319 ], [ -69.789276, 45.747881 ], [ -69.787903, 45.746444 ], [ -69.789276, 45.746923 ], [ -69.792023, 45.745485 ], [ -69.796143, 45.745965 ], [ -69.800949, 45.748839 ], [ -69.803696, 45.748839 ], [ -69.811935, 45.745485 ], [ -69.812622, 45.746923 ], [ -69.817429, 45.746923 ], [ -69.820862, 45.745006 ], [ -69.822235, 45.743569 ], [ -69.824982, 45.743089 ], [ -69.825668, 45.741173 ], [ -69.823608, 45.742131 ], [ -69.818802, 45.738777 ], [ -69.811249, 45.737339 ], [ -69.809875, 45.735901 ], [ -69.812622, 45.735901 ], [ -69.809189, 45.733025 ], [ -69.800262, 45.733025 ], [ -69.793396, 45.728232 ], [ -69.791336, 45.728232 ], [ -69.792023, 45.725356 ], [ -69.794769, 45.725356 ], [ -69.795456, 45.724398 ], [ -69.796829, 45.723918 ], [ -69.798203, 45.724877 ], [ -69.799576, 45.723439 ], [ -69.799576, 45.722480 ], [ -69.802322, 45.723918 ], [ -69.804382, 45.722480 ], [ -69.803009, 45.720563 ], [ -69.804382, 45.720563 ], [ -69.805069, 45.721522 ], [ -69.805756, 45.721042 ], [ -69.807129, 45.722001 ], [ -69.808502, 45.723439 ], [ -69.814682, 45.721042 ], [ -69.808502, 45.722480 ], [ -69.805069, 45.719604 ], [ -69.805069, 45.717207 ], [ -69.803009, 45.714810 ], [ -69.797516, 45.714810 ], [ -69.789963, 45.710495 ], [ -69.790649, 45.704741 ], [ -69.789276, 45.701384 ], [ -69.785843, 45.699945 ], [ -69.785843, 45.698507 ], [ -69.784470, 45.697068 ], [ -69.785156, 45.692272 ], [ -69.783096, 45.690353 ], [ -69.778976, 45.689874 ], [ -69.776230, 45.687955 ], [ -69.774857, 45.687475 ], [ -69.773483, 45.685557 ], [ -69.768677, 45.684597 ], [ -69.765244, 45.682678 ], [ -69.759750, 45.682199 ], [ -69.756317, 45.679320 ], [ -69.754257, 45.679320 ], [ -69.747391, 45.681239 ], [ -69.742584, 45.680759 ], [ -69.738464, 45.679320 ], [ -69.738464, 45.676921 ], [ -69.737091, 45.677401 ], [ -69.737778, 45.676442 ], [ -69.736404, 45.676442 ], [ -69.738464, 45.675002 ], [ -69.738464, 45.671164 ], [ -69.740524, 45.668765 ], [ -69.739151, 45.666846 ], [ -69.741211, 45.666846 ], [ -69.744644, 45.663487 ], [ -69.744644, 45.661087 ], [ -69.741211, 45.660127 ], [ -69.741211, 45.657248 ], [ -69.739151, 45.656768 ], [ -69.742584, 45.654848 ], [ -69.743958, 45.651968 ], [ -69.741211, 45.651968 ], [ -69.737778, 45.650528 ], [ -69.735718, 45.650528 ], [ -69.733658, 45.654368 ], [ -69.731598, 45.655808 ], [ -69.732285, 45.656768 ], [ -69.735031, 45.656768 ], [ -69.734344, 45.657728 ], [ -69.728851, 45.656288 ], [ -69.721985, 45.657248 ], [ -69.719238, 45.655808 ], [ -69.712372, 45.655328 ], [ -69.706879, 45.652928 ], [ -69.700699, 45.651488 ], [ -69.699326, 45.650048 ], [ -69.691772, 45.645248 ], [ -69.693832, 45.640928 ], [ -69.696579, 45.640448 ], [ -69.700012, 45.644288 ], [ -69.705505, 45.644768 ], [ -69.706192, 45.646688 ], [ -69.709625, 45.649568 ], [ -69.713058, 45.650528 ], [ -69.712372, 45.647648 ], [ -69.713745, 45.647168 ], [ -69.713745, 45.648128 ], [ -69.715118, 45.648128 ], [ -69.716492, 45.647648 ], [ -69.718552, 45.639488 ], [ -69.714432, 45.639488 ], [ -69.710999, 45.637567 ], [ -69.708939, 45.638047 ], [ -69.706879, 45.636127 ], [ -69.706879, 45.632286 ], [ -69.701385, 45.627964 ], [ -69.702759, 45.626044 ], [ -69.702759, 45.620281 ], [ -69.704819, 45.619320 ], [ -69.704132, 45.618360 ], [ -69.708252, 45.616439 ], [ -69.709625, 45.613077 ], [ -69.710999, 45.612596 ], [ -69.711685, 45.614037 ], [ -69.713745, 45.612596 ], [ -69.714432, 45.612596 ], [ -69.717178, 45.612116 ], [ -69.719238, 45.614518 ], [ -69.717178, 45.608754 ], [ -69.717865, 45.607793 ], [ -69.719925, 45.607793 ], [ -69.719925, 45.604431 ], [ -69.721298, 45.602989 ], [ -69.717178, 45.597224 ], [ -69.714432, 45.596744 ], [ -69.713058, 45.594822 ], [ -69.712372, 45.591939 ], [ -69.713745, 45.590017 ], [ -69.714432, 45.589537 ], [ -69.714432, 45.585212 ], [ -69.717178, 45.584731 ], [ -69.719238, 45.582809 ], [ -69.723358, 45.581367 ], [ -69.726105, 45.577042 ], [ -69.726105, 45.574158 ], [ -69.728165, 45.572236 ], [ -69.728165, 45.569832 ], [ -69.731598, 45.566468 ], [ -69.743271, 45.562622 ], [ -69.744644, 45.560699 ], [ -69.747391, 45.560218 ], [ -69.750824, 45.557814 ], [ -69.754257, 45.557333 ], [ -69.759750, 45.553968 ], [ -69.764557, 45.554449 ], [ -69.769363, 45.553487 ], [ -69.773483, 45.554449 ], [ -69.774857, 45.553487 ], [ -69.774857, 45.549159 ], [ -69.772797, 45.545312 ], [ -69.779663, 45.542427 ], [ -69.731598, 45.387360 ], [ -69.700012, 45.292279 ], [ -69.708252, 45.291313 ], [ -69.705505, 45.278269 ], [ -69.683533, 45.212520 ], [ -69.686966, 45.207682 ], [ -69.656067, 45.104062 ], [ -69.654694, 45.099700 ], [ -69.645767, 45.101154 ], [ -69.631348, 45.050240 ], [ -70.137405, 45.050240 ], [ -70.148392, 45.089036 ], [ -70.159378, 45.128289 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162674 ], [ -70.312500, 45.164611 ], [ -70.365372, 45.157348 ], [ -70.363998, 45.152506 ], [ -70.367432, 45.152022 ], [ -70.367432, 45.835019 ], [ -70.363998, 45.834540 ], [ -70.362625, 45.835497 ], [ -70.359192, 45.835497 ], [ -70.356445, 45.837889 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840281 ], [ -70.353012, 45.842194 ], [ -70.350266, 45.844586 ], [ -70.349579, 45.846978 ], [ -70.346146, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.342026, 45.852239 ], [ -70.329666, 45.853673 ], [ -70.328293, 45.855108 ], [ -70.322800, 45.855108 ], [ -70.321426, 45.856065 ], [ -70.319366, 45.855586 ], [ -70.312500, 45.857978 ], [ -70.307693, 45.858934 ], [ -70.303574, 45.862759 ], [ -70.297394, 45.864194 ], [ -70.287781, 45.870888 ], [ -70.284348, 45.871366 ], [ -70.280914, 45.874234 ], [ -70.279541, 45.876146 ], [ -70.273361, 45.879493 ], [ -70.272675, 45.882361 ], [ -70.259628, 45.890008 ], [ -70.259628, 45.891920 ], [ -70.263062, 45.891920 ], [ -70.265808, 45.893831 ], [ -70.263748, 45.894309 ], [ -70.262375, 45.896699 ], [ -70.260315, 45.897177 ], [ -70.260315, 45.898610 ], [ -70.253448, 45.902433 ], [ -70.253448, 45.907211 ], [ -70.259628, 45.909600 ], [ -70.258255, 45.911989 ], [ -70.258942, 45.915333 ], [ -70.256882, 45.916288 ], [ -70.256882, 45.918199 ], [ -70.259628, 45.918677 ], [ -70.260315, 45.920587 ], [ -70.262375, 45.920110 ], [ -70.263062, 45.923931 ], [ -70.258942, 45.926319 ], [ -70.258255, 45.928230 ], [ -70.255508, 45.928707 ], [ -70.251389, 45.933483 ], [ -70.246582, 45.935871 ], [ -70.243149, 45.936826 ], [ -70.239029, 45.939691 ], [ -70.240402, 45.942556 ], [ -70.239029, 45.943988 ], [ -70.244522, 45.944466 ], [ -70.241776, 45.946375 ], [ -70.248642, 45.950195 ], [ -70.247955, 45.950672 ], [ -70.248642, 45.952582 ], [ -70.250702, 45.952582 ], [ -70.252075, 45.955446 ], [ -70.253448, 45.954969 ], [ -70.255508, 45.952582 ], [ -70.260315, 45.952104 ], [ -70.260315, 45.953537 ], [ -70.258255, 45.954491 ], [ -70.260315, 45.957356 ], [ -70.258255, 45.959265 ], [ -70.261002, 45.959742 ], [ -70.263062, 45.962129 ], [ -70.265121, 45.962606 ], [ -70.265808, 45.964038 ], [ -70.267181, 45.962606 ], [ -70.273361, 45.960697 ], [ -70.274734, 45.961174 ], [ -70.274734, 45.963084 ], [ -70.272675, 45.964038 ], [ -70.274048, 45.964038 ], [ -70.275421, 45.966902 ], [ -70.280228, 45.965470 ], [ -70.280228, 45.964515 ], [ -70.282288, 45.963561 ], [ -70.286407, 45.964515 ], [ -70.289154, 45.963084 ], [ -70.291901, 45.963561 ], [ -70.296021, 45.962606 ], [ -70.296707, 45.963561 ], [ -70.298080, 45.962606 ], [ -70.300827, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303574, 45.964993 ], [ -70.304947, 45.964993 ], [ -70.309753, 45.962606 ], [ -70.312500, 45.962129 ], [ -70.313873, 45.963084 ], [ -70.316620, 45.963084 ], [ -70.312500, 45.965470 ], [ -70.312500, 45.969765 ], [ -70.310440, 45.972152 ], [ -70.311813, 45.974538 ], [ -70.309753, 45.975492 ], [ -70.309753, 45.976924 ], [ -70.307007, 45.978355 ], [ -70.308380, 45.979309 ], [ -70.309067, 45.980741 ], [ -70.307693, 45.980741 ], [ -70.307007, 45.982172 ], [ -70.304947, 45.983604 ], [ -70.302200, 45.983604 ], [ -70.299454, 45.985989 ], [ -70.294647, 45.985989 ], [ -70.291214, 45.989329 ], [ -70.286407, 45.991714 ], [ -70.286407, 45.992668 ], [ -70.287094, 45.993145 ], [ -70.283661, 45.995531 ], [ -70.288467, 45.994099 ], [ -70.287781, 45.995054 ], [ -70.291214, 45.994577 ], [ -70.289841, 45.995531 ], [ -70.291214, 45.996008 ], [ -70.291901, 45.996962 ], [ -70.295334, 45.996962 ], [ -70.300140, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002685 ], [ -70.304947, 46.003162 ], [ -70.305634, 46.005070 ], [ -70.304947, 46.006978 ], [ -70.306320, 46.010316 ], [ -70.308380, 46.010316 ], [ -70.311127, 46.011747 ], [ -70.310440, 46.014608 ], [ -70.310440, 46.015562 ], [ -70.311813, 46.015085 ], [ -70.312500, 46.016516 ], [ -70.314560, 46.016039 ], [ -70.315247, 46.017946 ], [ -70.317993, 46.018423 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019377 ], [ -70.312500, 46.022714 ], [ -70.301514, 46.027482 ], [ -70.301514, 46.028435 ], [ -70.300140, 46.028912 ], [ -70.298080, 46.030819 ], [ -70.301514, 46.031296 ], [ -70.302200, 46.032726 ], [ -70.297394, 46.040829 ], [ -70.293961, 46.040829 ], [ -70.289841, 46.044165 ], [ -70.289841, 46.046072 ], [ -70.280914, 46.050361 ], [ -70.279541, 46.052267 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055603 ], [ -70.278168, 46.055603 ], [ -70.279541, 46.058462 ], [ -70.278168, 46.058938 ], [ -70.278168, 46.060368 ], [ -70.282288, 46.060368 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.293274, 46.060368 ], [ -70.300827, 46.060368 ], [ -70.302887, 46.062273 ], [ -70.303574, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.307007, 46.060844 ], [ -70.310440, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.306320, 46.068467 ], [ -70.302200, 46.070372 ], [ -70.304947, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.302887, 46.074660 ], [ -70.302887, 46.076565 ], [ -70.300140, 46.077994 ], [ -70.300140, 46.078947 ], [ -70.302200, 46.080375 ], [ -70.302200, 46.082281 ], [ -70.291901, 46.086567 ], [ -70.290527, 46.093710 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098472 ], [ -70.285721, 46.099900 ], [ -70.278168, 46.099900 ], [ -70.273361, 46.102280 ], [ -70.271301, 46.100852 ], [ -70.267868, 46.101328 ], [ -70.263062, 46.100376 ], [ -70.261002, 46.100852 ], [ -70.257568, 46.100376 ], [ -70.256882, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252762, 46.103709 ], [ -70.252075, 46.105613 ], [ -70.252762, 46.107041 ], [ -70.254822, 46.108469 ], [ -70.255508, 46.110374 ], [ -70.254135, 46.110850 ], [ -70.253448, 46.112278 ], [ -70.254135, 46.113706 ], [ -70.252075, 46.114658 ], [ -70.250702, 46.117990 ], [ -70.251389, 46.119417 ], [ -70.249329, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247269, 46.125605 ], [ -70.245209, 46.126080 ], [ -70.244522, 46.128460 ], [ -70.243149, 46.128460 ], [ -70.243835, 46.130839 ], [ -70.242462, 46.131315 ], [ -70.242462, 46.133218 ], [ -70.241089, 46.134646 ], [ -70.241776, 46.135122 ], [ -70.239716, 46.136549 ], [ -70.239716, 46.137501 ] ], [ [ -69.787903, 45.784285 ], [ -69.787216, 45.783327 ], [ -69.784470, 45.783327 ], [ -69.783783, 45.782369 ], [ -69.783783, 45.781412 ], [ -69.781723, 45.780933 ], [ -69.781723, 45.781891 ], [ -69.783783, 45.783327 ], [ -69.783783, 45.783806 ], [ -69.784470, 45.785243 ], [ -69.787903, 45.784764 ], [ -69.787903, 45.784285 ] ], [ [ -69.800949, 45.785243 ], [ -69.799576, 45.783327 ], [ -69.798203, 45.784285 ], [ -69.796829, 45.782848 ], [ -69.796143, 45.783327 ], [ -69.795456, 45.783327 ], [ -69.795456, 45.784285 ], [ -69.795456, 45.785243 ], [ -69.797516, 45.785243 ], [ -69.797516, 45.784764 ], [ -69.800949, 45.785243 ] ], [ [ -69.825668, 45.741173 ], [ -69.827042, 45.739735 ], [ -69.833221, 45.738297 ], [ -69.829102, 45.737818 ], [ -69.827728, 45.738777 ], [ -69.827042, 45.737818 ], [ -69.827042, 45.738777 ], [ -69.825668, 45.739256 ], [ -69.825668, 45.741173 ] ], [ [ -69.719238, 45.834062 ], [ -69.719925, 45.835019 ], [ -69.723358, 45.833584 ], [ -69.719238, 45.834062 ] ], [ [ -69.789963, 45.783806 ], [ -69.792023, 45.785243 ], [ -69.792023, 45.783806 ], [ -69.789963, 45.783806 ] ], [ [ -69.795456, 45.783327 ], [ -69.794083, 45.782848 ], [ -69.793396, 45.782848 ], [ -69.793396, 45.783327 ], [ -69.793396, 45.783806 ], [ -69.795456, 45.783327 ] ], [ [ -69.723358, 45.833584 ], [ -69.725418, 45.834540 ], [ -69.724731, 45.833105 ], [ -69.723358, 45.833584 ] ], [ [ -70.107880, 46.388622 ], [ -70.108566, 46.388622 ], [ -70.108566, 46.388149 ], [ -70.107193, 46.387675 ], [ -70.107880, 46.388622 ] ], [ [ -69.787903, 45.784285 ], [ -69.788589, 45.783327 ], [ -69.787903, 45.782848 ], [ -69.787903, 45.784285 ] ] ], [ [ [ -69.498825, 45.050240 ], [ -69.499512, 45.053636 ], [ -69.355316, 45.073521 ], [ -69.349136, 45.050240 ], [ -69.498825, 45.050240 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 77, "y": 91 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871605 ], [ -70.285034, 45.111089 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162916 ], [ -70.312500, 45.164611 ], [ -70.365028, 45.157590 ], [ -70.363655, 45.152506 ], [ -70.364342, 45.152264 ], [ -70.374298, 45.151053 ], [ -70.418587, 45.144031 ], [ -70.457039, 45.289139 ], [ -70.473175, 45.353110 ], [ -70.496521, 45.434117 ], [ -70.502014, 45.454833 ], [ -70.518837, 45.512121 ], [ -70.505791, 45.513805 ], [ -70.533943, 45.602269 ], [ -70.536690, 45.613557 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.666126 ], [ -70.545616, 45.666366 ], [ -70.545273, 45.666846 ], [ -70.542183, 45.666366 ], [ -70.538406, 45.668765 ], [ -70.536003, 45.669725 ], [ -70.534973, 45.669725 ], [ -70.533943, 45.670924 ], [ -70.532913, 45.670924 ], [ -70.530167, 45.669485 ], [ -70.527763, 45.666846 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.669005 ], [ -70.519867, 45.669725 ], [ -70.519180, 45.669725 ], [ -70.519180, 45.670204 ], [ -70.519867, 45.671404 ], [ -70.517807, 45.672603 ], [ -70.517464, 45.673803 ], [ -70.512314, 45.676921 ], [ -70.511971, 45.677641 ], [ -70.510941, 45.677881 ], [ -70.510597, 45.679320 ], [ -70.505791, 45.681239 ], [ -70.502357, 45.681719 ], [ -70.502701, 45.682918 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686276 ], [ -70.496521, 45.686276 ], [ -70.496521, 45.686996 ], [ -70.494461, 45.687715 ], [ -70.494118, 45.688914 ], [ -70.490341, 45.689634 ], [ -70.484848, 45.692991 ], [ -70.484505, 45.693711 ], [ -70.482445, 45.693711 ], [ -70.479355, 45.694910 ], [ -70.477638, 45.696348 ], [ -70.474892, 45.697787 ], [ -70.475235, 45.698267 ], [ -70.474205, 45.698986 ], [ -70.469055, 45.701624 ], [ -70.470428, 45.702583 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.466652, 45.705940 ], [ -70.465622, 45.706419 ], [ -70.462875, 45.706179 ], [ -70.461502, 45.705460 ], [ -70.460472, 45.705700 ], [ -70.459785, 45.706419 ], [ -70.458412, 45.706419 ], [ -70.456009, 45.707138 ], [ -70.453949, 45.706419 ], [ -70.452919, 45.704980 ], [ -70.452232, 45.705220 ], [ -70.450859, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.443306, 45.704261 ], [ -70.442963, 45.704741 ], [ -70.440903, 45.705460 ], [ -70.440216, 45.704261 ], [ -70.439186, 45.703782 ], [ -70.430946, 45.707138 ], [ -70.428886, 45.707378 ], [ -70.428886, 45.708097 ], [ -70.428200, 45.707378 ], [ -70.425797, 45.707138 ], [ -70.425453, 45.707618 ], [ -70.426826, 45.708337 ], [ -70.428886, 45.708577 ], [ -70.429573, 45.710255 ], [ -70.428543, 45.709776 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423393, 45.711693 ], [ -70.417900, 45.713371 ], [ -70.413094, 45.715529 ], [ -70.413094, 45.716488 ], [ -70.407600, 45.716728 ], [ -70.406227, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400391, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721522 ], [ -70.397987, 45.723199 ], [ -70.396957, 45.725356 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395241, 45.729670 ], [ -70.390434, 45.728472 ], [ -70.385628, 45.732786 ], [ -70.385628, 45.733505 ], [ -70.383911, 45.734224 ], [ -70.384254, 45.734703 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735661 ], [ -70.385628, 45.736141 ], [ -70.390091, 45.736141 ], [ -70.390434, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.738058 ], [ -70.392494, 45.738537 ], [ -70.391808, 45.739256 ], [ -70.393524, 45.739495 ], [ -70.393867, 45.739975 ], [ -70.393867, 45.740933 ], [ -70.392838, 45.741412 ], [ -70.394554, 45.742371 ], [ -70.394211, 45.744048 ], [ -70.393181, 45.744287 ], [ -70.392151, 45.745725 ], [ -70.389061, 45.747162 ], [ -70.388031, 45.748360 ], [ -70.388718, 45.749079 ], [ -70.388374, 45.750277 ], [ -70.394554, 45.754589 ], [ -70.395927, 45.756745 ], [ -70.400734, 45.757463 ], [ -70.403137, 45.758901 ], [ -70.405884, 45.761775 ], [ -70.407257, 45.762493 ], [ -70.406227, 45.764649 ], [ -70.406570, 45.768481 ], [ -70.406227, 45.769678 ], [ -70.405540, 45.770157 ], [ -70.405884, 45.770876 ], [ -70.407600, 45.772073 ], [ -70.407600, 45.773510 ], [ -70.406914, 45.775186 ], [ -70.405540, 45.776623 ], [ -70.407600, 45.778060 ], [ -70.409317, 45.782848 ], [ -70.410347, 45.784285 ], [ -70.411034, 45.784764 ], [ -70.414810, 45.784285 ], [ -70.415840, 45.785243 ], [ -70.414467, 45.790509 ], [ -70.414810, 45.791467 ], [ -70.416870, 45.793621 ], [ -70.417213, 45.793382 ], [ -70.417900, 45.793861 ], [ -70.417213, 45.795297 ], [ -70.416527, 45.795776 ], [ -70.414810, 45.795776 ], [ -70.410690, 45.796733 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797930 ], [ -70.405540, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401077, 45.796015 ], [ -70.397301, 45.797691 ], [ -70.395927, 45.799127 ], [ -70.395927, 45.799606 ], [ -70.396614, 45.799845 ], [ -70.396614, 45.801520 ], [ -70.395927, 45.801999 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803675 ], [ -70.396614, 45.805829 ], [ -70.397301, 45.807025 ], [ -70.396957, 45.807982 ], [ -70.390434, 45.812290 ], [ -70.390091, 45.813247 ], [ -70.388031, 45.813965 ], [ -70.387688, 45.814444 ], [ -70.388374, 45.817315 ], [ -70.387688, 45.819229 ], [ -70.381508, 45.823057 ], [ -70.380135, 45.824732 ], [ -70.376701, 45.826885 ], [ -70.374985, 45.827603 ], [ -70.372581, 45.827842 ], [ -70.371895, 45.829278 ], [ -70.369148, 45.831191 ], [ -70.370522, 45.831909 ], [ -70.369835, 45.832866 ], [ -70.371895, 45.834062 ], [ -70.370865, 45.835258 ], [ -70.369148, 45.835976 ], [ -70.367775, 45.835976 ], [ -70.367088, 45.834780 ], [ -70.363998, 45.834780 ], [ -70.362282, 45.835736 ], [ -70.359192, 45.835497 ], [ -70.356102, 45.837889 ], [ -70.356789, 45.839085 ], [ -70.354042, 45.840281 ], [ -70.352325, 45.840520 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842434 ], [ -70.351639, 45.844108 ], [ -70.350952, 45.844108 ], [ -70.349922, 45.844825 ], [ -70.349236, 45.845782 ], [ -70.349236, 45.847217 ], [ -70.348206, 45.847456 ], [ -70.345802, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.343056, 45.851282 ], [ -70.342026, 45.852239 ], [ -70.337563, 45.852717 ], [ -70.336876, 45.853195 ], [ -70.335159, 45.853434 ], [ -70.333443, 45.853195 ], [ -70.330696, 45.854152 ], [ -70.329666, 45.853913 ], [ -70.328636, 45.854391 ], [ -70.328979, 45.854869 ], [ -70.328293, 45.855108 ], [ -70.326576, 45.854869 ], [ -70.322800, 45.855347 ], [ -70.321426, 45.856304 ], [ -70.319366, 45.855586 ], [ -70.314903, 45.857260 ], [ -70.314217, 45.857978 ], [ -70.312500, 45.858217 ], [ -70.309067, 45.858456 ], [ -70.307693, 45.858934 ], [ -70.304260, 45.861564 ], [ -70.303574, 45.862998 ], [ -70.296707, 45.864911 ], [ -70.290527, 45.868975 ], [ -70.289841, 45.868975 ], [ -70.287781, 45.870888 ], [ -70.285034, 45.871605 ] ] ], [ [ [ -70.285034, 46.048216 ], [ -70.285034, 45.995292 ], [ -70.286751, 45.994338 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994338 ], [ -70.288124, 45.995054 ], [ -70.289841, 45.995292 ], [ -70.290184, 45.994815 ], [ -70.291214, 45.994815 ], [ -70.291214, 45.995292 ], [ -70.290527, 45.995292 ], [ -70.290184, 45.995769 ], [ -70.291557, 45.996008 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.296364, 45.997677 ], [ -70.298080, 45.997677 ], [ -70.298424, 45.998154 ], [ -70.300484, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002924 ], [ -70.304604, 46.002924 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.005070 ], [ -70.305290, 46.006024 ], [ -70.305290, 46.007216 ], [ -70.306320, 46.010316 ], [ -70.307693, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309753, 46.010793 ], [ -70.309753, 46.011509 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012462 ], [ -70.311127, 46.013654 ], [ -70.310440, 46.013893 ], [ -70.310440, 46.014847 ], [ -70.310783, 46.015562 ], [ -70.312157, 46.015323 ], [ -70.311813, 46.016039 ], [ -70.312500, 46.016754 ], [ -70.314560, 46.016277 ], [ -70.315247, 46.016992 ], [ -70.315247, 46.018185 ], [ -70.317650, 46.018661 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019615 ], [ -70.315247, 46.020092 ], [ -70.314903, 46.021284 ], [ -70.312500, 46.022714 ], [ -70.309753, 46.024145 ], [ -70.308723, 46.024145 ], [ -70.305977, 46.025098 ], [ -70.303230, 46.027005 ], [ -70.301514, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300140, 46.028912 ], [ -70.298424, 46.030819 ], [ -70.301857, 46.031534 ], [ -70.302200, 46.032726 ], [ -70.301857, 46.033441 ], [ -70.301170, 46.033441 ], [ -70.300827, 46.033918 ], [ -70.301170, 46.034871 ], [ -70.299797, 46.035824 ], [ -70.299797, 46.037731 ], [ -70.297394, 46.039876 ], [ -70.297394, 46.040829 ], [ -70.294304, 46.041067 ], [ -70.291901, 46.043451 ], [ -70.290184, 46.044165 ], [ -70.290527, 46.044880 ], [ -70.289841, 46.046072 ], [ -70.287437, 46.047025 ], [ -70.285378, 46.048455 ], [ -70.285034, 46.048216 ] ] ], [ [ [ -70.285034, 45.994577 ], [ -70.285034, 45.964515 ], [ -70.287781, 45.964277 ], [ -70.289154, 45.963084 ], [ -70.290527, 45.963561 ], [ -70.292244, 45.963561 ], [ -70.293961, 45.962845 ], [ -70.296021, 45.962845 ], [ -70.297050, 45.963561 ], [ -70.298424, 45.962845 ], [ -70.298767, 45.963561 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303917, 45.964993 ], [ -70.305290, 45.964993 ], [ -70.307007, 45.964038 ], [ -70.308380, 45.963799 ], [ -70.309753, 45.962606 ], [ -70.310440, 45.962845 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.315933, 45.962845 ], [ -70.316277, 45.963322 ], [ -70.315247, 45.964515 ], [ -70.314217, 45.964515 ], [ -70.312500, 45.965470 ], [ -70.311813, 45.965947 ], [ -70.311813, 45.966902 ], [ -70.312500, 45.968572 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.970958 ], [ -70.311470, 45.971913 ], [ -70.310440, 45.972390 ], [ -70.310783, 45.973583 ], [ -70.312157, 45.973822 ], [ -70.312157, 45.974538 ], [ -70.311470, 45.975253 ], [ -70.310097, 45.975731 ], [ -70.310097, 45.977162 ], [ -70.308723, 45.977401 ], [ -70.307007, 45.978355 ], [ -70.308037, 45.979309 ], [ -70.308723, 45.979309 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980741 ], [ -70.308037, 45.980741 ], [ -70.307350, 45.982411 ], [ -70.305290, 45.983604 ], [ -70.304604, 45.983365 ], [ -70.303917, 45.983842 ], [ -70.302200, 45.983842 ], [ -70.300827, 45.985274 ], [ -70.300140, 45.985274 ], [ -70.299797, 45.985989 ], [ -70.294991, 45.985989 ], [ -70.293274, 45.987898 ], [ -70.291557, 45.988613 ], [ -70.291557, 45.989329 ], [ -70.288467, 45.991476 ], [ -70.286751, 45.991953 ], [ -70.286407, 45.992907 ], [ -70.287094, 45.992907 ], [ -70.287437, 45.993384 ], [ -70.285034, 45.994577 ] ] ], [ [ [ -70.285034, 46.062512 ], [ -70.286751, 46.062750 ], [ -70.287781, 46.062273 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.305290, 46.061321 ], [ -70.307350, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.302887, 46.076803 ], [ -70.302200, 46.077518 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.291557, 46.087281 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062512 ] ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.285034, 45.871605 ], [ -70.285034, 45.111089 ], [ -70.293961, 45.109877 ], [ -70.308380, 45.163158 ], [ -70.311813, 45.162916 ], [ -70.312500, 45.164611 ], [ -70.365028, 45.157590 ], [ -70.363655, 45.152506 ], [ -70.364342, 45.152264 ], [ -70.374298, 45.151053 ], [ -70.418587, 45.144031 ], [ -70.457039, 45.289139 ], [ -70.473175, 45.353110 ], [ -70.496521, 45.434117 ], [ -70.502014, 45.454833 ], [ -70.518837, 45.512121 ], [ -70.505791, 45.513805 ], [ -70.533943, 45.602269 ], [ -70.536690, 45.613557 ], [ -70.552826, 45.667805 ], [ -70.547333, 45.666126 ], [ -70.545616, 45.666366 ], [ -70.545273, 45.666846 ], [ -70.542183, 45.666366 ], [ -70.538406, 45.668765 ], [ -70.536003, 45.669725 ], [ -70.534973, 45.669725 ], [ -70.533943, 45.670924 ], [ -70.532913, 45.670924 ], [ -70.530167, 45.669485 ], [ -70.527763, 45.666846 ], [ -70.526047, 45.666366 ], [ -70.523300, 45.668285 ], [ -70.519867, 45.669005 ], [ -70.519867, 45.669725 ], [ -70.519180, 45.669725 ], [ -70.519180, 45.670204 ], [ -70.519867, 45.671404 ], [ -70.517807, 45.672603 ], [ -70.517464, 45.673803 ], [ -70.512314, 45.676921 ], [ -70.511971, 45.677641 ], [ -70.510941, 45.677881 ], [ -70.510597, 45.679320 ], [ -70.505791, 45.681239 ], [ -70.502357, 45.681719 ], [ -70.502701, 45.682918 ], [ -70.496521, 45.685557 ], [ -70.497208, 45.686276 ], [ -70.496521, 45.686276 ], [ -70.496521, 45.686996 ], [ -70.494461, 45.687715 ], [ -70.494118, 45.688914 ], [ -70.490341, 45.689634 ], [ -70.484848, 45.692991 ], [ -70.484505, 45.693711 ], [ -70.482445, 45.693711 ], [ -70.479355, 45.694910 ], [ -70.477638, 45.696348 ], [ -70.474892, 45.697787 ], [ -70.475235, 45.698267 ], [ -70.474205, 45.698986 ], [ -70.469055, 45.701624 ], [ -70.470428, 45.702583 ], [ -70.470428, 45.703302 ], [ -70.467682, 45.704261 ], [ -70.466652, 45.705940 ], [ -70.465622, 45.706419 ], [ -70.462875, 45.706179 ], [ -70.461502, 45.705460 ], [ -70.460472, 45.705700 ], [ -70.459785, 45.706419 ], [ -70.458412, 45.706419 ], [ -70.456009, 45.707138 ], [ -70.453949, 45.706419 ], [ -70.452919, 45.704980 ], [ -70.452232, 45.705220 ], [ -70.450859, 45.704021 ], [ -70.449142, 45.704501 ], [ -70.445366, 45.703782 ], [ -70.443306, 45.704261 ], [ -70.442963, 45.704741 ], [ -70.440903, 45.705460 ], [ -70.440216, 45.704261 ], [ -70.439186, 45.703782 ], [ -70.430946, 45.707138 ], [ -70.428886, 45.707378 ], [ -70.428886, 45.708097 ], [ -70.428200, 45.707378 ], [ -70.425797, 45.707138 ], [ -70.425453, 45.707618 ], [ -70.426826, 45.708337 ], [ -70.428886, 45.708577 ], [ -70.429573, 45.710255 ], [ -70.428543, 45.709776 ], [ -70.428543, 45.710495 ], [ -70.425110, 45.711933 ], [ -70.423393, 45.711693 ], [ -70.417900, 45.713371 ], [ -70.413094, 45.715529 ], [ -70.413094, 45.716488 ], [ -70.407600, 45.716728 ], [ -70.406227, 45.717926 ], [ -70.403824, 45.718405 ], [ -70.402794, 45.719364 ], [ -70.400391, 45.719844 ], [ -70.399704, 45.720802 ], [ -70.400734, 45.721522 ], [ -70.397987, 45.723199 ], [ -70.396957, 45.725356 ], [ -70.397987, 45.726794 ], [ -70.397301, 45.727034 ], [ -70.396957, 45.728951 ], [ -70.395241, 45.729670 ], [ -70.390434, 45.728472 ], [ -70.385628, 45.732786 ], [ -70.385628, 45.733505 ], [ -70.383911, 45.734224 ], [ -70.384254, 45.734703 ], [ -70.385971, 45.734703 ], [ -70.385971, 45.735182 ], [ -70.384941, 45.735661 ], [ -70.385628, 45.736141 ], [ -70.390091, 45.736141 ], [ -70.390434, 45.736860 ], [ -70.389404, 45.737339 ], [ -70.392151, 45.738058 ], [ -70.392494, 45.738537 ], [ -70.391808, 45.739256 ], [ -70.393524, 45.739495 ], [ -70.393867, 45.739975 ], [ -70.393867, 45.740933 ], [ -70.392838, 45.741412 ], [ -70.394554, 45.742371 ], [ -70.394211, 45.744048 ], [ -70.393181, 45.744287 ], [ -70.392151, 45.745725 ], [ -70.389061, 45.747162 ], [ -70.388031, 45.748360 ], [ -70.388718, 45.749079 ], [ -70.388374, 45.750277 ], [ -70.394554, 45.754589 ], [ -70.395927, 45.756745 ], [ -70.400734, 45.757463 ], [ -70.403137, 45.758901 ], [ -70.405884, 45.761775 ], [ -70.407257, 45.762493 ], [ -70.406227, 45.764649 ], [ -70.406570, 45.768481 ], [ -70.406227, 45.769678 ], [ -70.405540, 45.770157 ], [ -70.405884, 45.770876 ], [ -70.407600, 45.772073 ], [ -70.407600, 45.773510 ], [ -70.406914, 45.775186 ], [ -70.405540, 45.776623 ], [ -70.407600, 45.778060 ], [ -70.409317, 45.782848 ], [ -70.410347, 45.784285 ], [ -70.411034, 45.784764 ], [ -70.414810, 45.784285 ], [ -70.415840, 45.785243 ], [ -70.414467, 45.790509 ], [ -70.414810, 45.791467 ], [ -70.416870, 45.793621 ], [ -70.417213, 45.793382 ], [ -70.417900, 45.793861 ], [ -70.417213, 45.795297 ], [ -70.416527, 45.795776 ], [ -70.414810, 45.795776 ], [ -70.410690, 45.796733 ], [ -70.408630, 45.797691 ], [ -70.406570, 45.797930 ], [ -70.405540, 45.796733 ], [ -70.403137, 45.796015 ], [ -70.401077, 45.796015 ], [ -70.397301, 45.797691 ], [ -70.395927, 45.799127 ], [ -70.395927, 45.799606 ], [ -70.396614, 45.799845 ], [ -70.396614, 45.801520 ], [ -70.395927, 45.801999 ], [ -70.395927, 45.802717 ], [ -70.397987, 45.803675 ], [ -70.396614, 45.805829 ], [ -70.397301, 45.807025 ], [ -70.396957, 45.807982 ], [ -70.390434, 45.812290 ], [ -70.390091, 45.813247 ], [ -70.388031, 45.813965 ], [ -70.387688, 45.814444 ], [ -70.388374, 45.817315 ], [ -70.387688, 45.819229 ], [ -70.381508, 45.823057 ], [ -70.380135, 45.824732 ], [ -70.376701, 45.826885 ], [ -70.374985, 45.827603 ], [ -70.372581, 45.827842 ], [ -70.371895, 45.829278 ], [ -70.369148, 45.831191 ], [ -70.370522, 45.831909 ], [ -70.369835, 45.832866 ], [ -70.371895, 45.834062 ], [ -70.370865, 45.835258 ], [ -70.369148, 45.835976 ], [ -70.367775, 45.835976 ], [ -70.367088, 45.834780 ], [ -70.363998, 45.834780 ], [ -70.362282, 45.835736 ], [ -70.359192, 45.835497 ], [ -70.356102, 45.837889 ], [ -70.356789, 45.838846 ], [ -70.356445, 45.839324 ], [ -70.352325, 45.840520 ], [ -70.352325, 45.841955 ], [ -70.353012, 45.842434 ], [ -70.351639, 45.844108 ], [ -70.350952, 45.844108 ], [ -70.349922, 45.844825 ], [ -70.349236, 45.845782 ], [ -70.349236, 45.847217 ], [ -70.348206, 45.847456 ], [ -70.345802, 45.849369 ], [ -70.343399, 45.849847 ], [ -70.343056, 45.851282 ], [ -70.342026, 45.852239 ], [ -70.337563, 45.852717 ], [ -70.336876, 45.853195 ], [ -70.335159, 45.853434 ], [ -70.333443, 45.853195 ], [ -70.330696, 45.854152 ], [ -70.329666, 45.853913 ], [ -70.328636, 45.854391 ], [ -70.328979, 45.854869 ], [ -70.328293, 45.855108 ], [ -70.326576, 45.854869 ], [ -70.322800, 45.855347 ], [ -70.321426, 45.856304 ], [ -70.319366, 45.855586 ], [ -70.314903, 45.857260 ], [ -70.314217, 45.857978 ], [ -70.312500, 45.858217 ], [ -70.309067, 45.858456 ], [ -70.307693, 45.858934 ], [ -70.304260, 45.861564 ], [ -70.303574, 45.862998 ], [ -70.296707, 45.864911 ], [ -70.290527, 45.868975 ], [ -70.289841, 45.868975 ], [ -70.287781, 45.870888 ], [ -70.285034, 45.871605 ] ] ], [ [ [ -70.285034, 46.048216 ], [ -70.285034, 45.995292 ], [ -70.286751, 45.994338 ], [ -70.288811, 45.994099 ], [ -70.289154, 45.994338 ], [ -70.288124, 45.995054 ], [ -70.289841, 45.995292 ], [ -70.290184, 45.994815 ], [ -70.291214, 45.994815 ], [ -70.291214, 45.995292 ], [ -70.290527, 45.995292 ], [ -70.290184, 45.995769 ], [ -70.291557, 45.996008 ], [ -70.292244, 45.997200 ], [ -70.295334, 45.996962 ], [ -70.296364, 45.997677 ], [ -70.298080, 45.997677 ], [ -70.298424, 45.998154 ], [ -70.300484, 45.998870 ], [ -70.302887, 45.998870 ], [ -70.303574, 46.000778 ], [ -70.304260, 46.001255 ], [ -70.302887, 46.001732 ], [ -70.302887, 46.002924 ], [ -70.304604, 46.002924 ], [ -70.305290, 46.003401 ], [ -70.305977, 46.005070 ], [ -70.305290, 46.006024 ], [ -70.305290, 46.007216 ], [ -70.306320, 46.010316 ], [ -70.307693, 46.010793 ], [ -70.308723, 46.010316 ], [ -70.309753, 46.010793 ], [ -70.309753, 46.011509 ], [ -70.311470, 46.011985 ], [ -70.310783, 46.012462 ], [ -70.311127, 46.013654 ], [ -70.310440, 46.013893 ], [ -70.310440, 46.014847 ], [ -70.310783, 46.015562 ], [ -70.312157, 46.015323 ], [ -70.311813, 46.016039 ], [ -70.312500, 46.016754 ], [ -70.314560, 46.016277 ], [ -70.315247, 46.016992 ], [ -70.315247, 46.018185 ], [ -70.317650, 46.018661 ], [ -70.317993, 46.019377 ], [ -70.315933, 46.019615 ], [ -70.315247, 46.020092 ], [ -70.314903, 46.021284 ], [ -70.312500, 46.022714 ], [ -70.309753, 46.024145 ], [ -70.308723, 46.024145 ], [ -70.305977, 46.025098 ], [ -70.303230, 46.027005 ], [ -70.301514, 46.027482 ], [ -70.301857, 46.028674 ], [ -70.300140, 46.028912 ], [ -70.298424, 46.030819 ], [ -70.301857, 46.031534 ], [ -70.302200, 46.032726 ], [ -70.301857, 46.033441 ], [ -70.301170, 46.033441 ], [ -70.300827, 46.033918 ], [ -70.301170, 46.034871 ], [ -70.299797, 46.035824 ], [ -70.299797, 46.037731 ], [ -70.297394, 46.039876 ], [ -70.297394, 46.040829 ], [ -70.294304, 46.041067 ], [ -70.291901, 46.043451 ], [ -70.290184, 46.044165 ], [ -70.290527, 46.044880 ], [ -70.289841, 46.046072 ], [ -70.287437, 46.047025 ], [ -70.285378, 46.048455 ], [ -70.285034, 46.048216 ] ] ], [ [ [ -70.285034, 45.994577 ], [ -70.285034, 45.964515 ], [ -70.287781, 45.964277 ], [ -70.289154, 45.963084 ], [ -70.290527, 45.963561 ], [ -70.292244, 45.963561 ], [ -70.293961, 45.962845 ], [ -70.296021, 45.962845 ], [ -70.297050, 45.963561 ], [ -70.298424, 45.962845 ], [ -70.298767, 45.963561 ], [ -70.300140, 45.963561 ], [ -70.301170, 45.964515 ], [ -70.303574, 45.964038 ], [ -70.303917, 45.964993 ], [ -70.305290, 45.964993 ], [ -70.307007, 45.964038 ], [ -70.308380, 45.963799 ], [ -70.309753, 45.962606 ], [ -70.310440, 45.962845 ], [ -70.312500, 45.962129 ], [ -70.313187, 45.962129 ], [ -70.313530, 45.963084 ], [ -70.315933, 45.962845 ], [ -70.316277, 45.963322 ], [ -70.315247, 45.964515 ], [ -70.314217, 45.964515 ], [ -70.312500, 45.965470 ], [ -70.311813, 45.965947 ], [ -70.311813, 45.966902 ], [ -70.312500, 45.968572 ], [ -70.312500, 45.970004 ], [ -70.311470, 45.970958 ], [ -70.311470, 45.971913 ], [ -70.310440, 45.972390 ], [ -70.310783, 45.973583 ], [ -70.312157, 45.973822 ], [ -70.312157, 45.974538 ], [ -70.311470, 45.975253 ], [ -70.310097, 45.975731 ], [ -70.310097, 45.977162 ], [ -70.308723, 45.977401 ], [ -70.307007, 45.978355 ], [ -70.308037, 45.979309 ], [ -70.308723, 45.979309 ], [ -70.309067, 45.980264 ], [ -70.309067, 45.980741 ], [ -70.308037, 45.980741 ], [ -70.307350, 45.982411 ], [ -70.305290, 45.983604 ], [ -70.304604, 45.983365 ], [ -70.303917, 45.983842 ], [ -70.302200, 45.983842 ], [ -70.300827, 45.985274 ], [ -70.300140, 45.985274 ], [ -70.299797, 45.985989 ], [ -70.294991, 45.985989 ], [ -70.293274, 45.987898 ], [ -70.291557, 45.988613 ], [ -70.291557, 45.989329 ], [ -70.288467, 45.991476 ], [ -70.286751, 45.991953 ], [ -70.286407, 45.992907 ], [ -70.287094, 45.992907 ], [ -70.287437, 45.993384 ], [ -70.285034, 45.994577 ] ] ], [ [ [ -70.285034, 46.062512 ], [ -70.286751, 46.062750 ], [ -70.287781, 46.062273 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304947, 46.061797 ], [ -70.305290, 46.061321 ], [ -70.307350, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.302887, 46.076803 ], [ -70.302200, 46.077518 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.291557, 46.087281 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.291214, 46.092281 ], [ -70.285034, 46.092281 ], [ -70.285034, 46.062512 ] ] ] ] } } ] } ] } , @@ -162,7 +162,7 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "somerset", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.720955, 46.573967 ], [ -69.720955, 46.532414 ], [ -69.719238, 46.394069 ], [ -69.732285, 46.394069 ], [ -69.730225, 46.202646 ], [ -69.729538, 46.073231 ], [ -69.729195, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.055841 ], [ -70.278511, 46.057032 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.058700 ], [ -70.278168, 46.059176 ], [ -70.278854, 46.060129 ], [ -70.278511, 46.060606 ], [ -70.279884, 46.060844 ], [ -70.280914, 46.060129 ], [ -70.281601, 46.060606 ], [ -70.282631, 46.060368 ], [ -70.283318, 46.062035 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304604, 46.061797 ], [ -70.306664, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.303230, 46.075851 ], [ -70.302544, 46.077279 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.292587, 46.086567 ], [ -70.291901, 46.086805 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.290527, 46.093710 ], [ -70.289841, 46.094662 ], [ -70.288811, 46.094900 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098710 ], [ -70.286064, 46.099900 ], [ -70.283318, 46.100376 ], [ -70.278168, 46.099900 ], [ -70.275764, 46.101328 ], [ -70.274048, 46.101566 ], [ -70.273361, 46.102280 ], [ -70.271645, 46.101090 ], [ -70.268211, 46.101328 ], [ -70.266495, 46.100614 ], [ -70.265465, 46.100852 ], [ -70.263405, 46.100376 ], [ -70.262375, 46.100376 ], [ -70.262032, 46.100852 ], [ -70.261002, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257225, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252419, 46.101328 ], [ -70.253105, 46.102519 ], [ -70.253105, 46.103947 ], [ -70.252075, 46.105851 ], [ -70.252762, 46.107279 ], [ -70.254478, 46.107755 ], [ -70.255165, 46.108707 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110612 ], [ -70.255165, 46.111088 ], [ -70.254135, 46.111088 ], [ -70.254135, 46.112278 ], [ -70.253448, 46.112516 ], [ -70.254478, 46.113944 ], [ -70.253792, 46.113944 ], [ -70.253448, 46.114658 ], [ -70.252762, 46.114420 ], [ -70.253105, 46.115134 ], [ -70.252419, 46.114896 ], [ -70.251732, 46.117990 ], [ -70.251045, 46.117990 ], [ -70.251389, 46.119655 ], [ -70.250702, 46.119655 ], [ -70.250359, 46.120369 ], [ -70.249672, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247955, 46.124177 ], [ -70.247269, 46.124177 ], [ -70.247612, 46.125605 ], [ -70.246925, 46.125367 ], [ -70.245552, 46.126080 ], [ -70.245552, 46.126794 ], [ -70.244865, 46.127032 ], [ -70.245209, 46.127270 ], [ -70.244522, 46.127270 ], [ -70.244865, 46.128460 ], [ -70.243492, 46.128698 ], [ -70.243835, 46.131077 ], [ -70.242805, 46.131077 ], [ -70.242462, 46.131553 ], [ -70.242805, 46.133218 ], [ -70.241432, 46.134646 ], [ -70.242119, 46.135360 ], [ -70.240746, 46.136311 ], [ -70.241089, 46.136549 ], [ -70.240402, 46.136549 ], [ -70.240746, 46.136787 ], [ -70.240059, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137739 ], [ -70.239716, 46.138690 ], [ -70.240402, 46.139166 ], [ -70.240059, 46.139642 ], [ -70.239372, 46.139642 ], [ -70.239372, 46.140355 ], [ -70.240059, 46.140593 ], [ -70.239372, 46.140831 ], [ -70.239372, 46.143210 ], [ -70.237312, 46.144875 ], [ -70.236282, 46.145113 ], [ -70.236626, 46.146540 ], [ -70.237656, 46.146778 ], [ -70.238686, 46.148443 ], [ -70.239372, 46.148919 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.151059 ], [ -70.241432, 46.151059 ], [ -70.241432, 46.149870 ], [ -70.242462, 46.149632 ], [ -70.243835, 46.150584 ], [ -70.243835, 46.151535 ], [ -70.245895, 46.150821 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.247612, 46.153200 ], [ -70.250359, 46.154151 ], [ -70.249672, 46.155578 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159621 ], [ -70.257225, 46.159621 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.161048 ], [ -70.258255, 46.161999 ], [ -70.259285, 46.162474 ], [ -70.259972, 46.163426 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.263405, 46.164377 ], [ -70.264778, 46.164852 ], [ -70.264435, 46.167706 ], [ -70.265808, 46.168181 ], [ -70.266151, 46.169132 ], [ -70.267525, 46.169370 ], [ -70.268211, 46.170321 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.170796 ], [ -70.269928, 46.171034 ], [ -70.270615, 46.171272 ], [ -70.270958, 46.171985 ], [ -70.273705, 46.172223 ], [ -70.275421, 46.173412 ], [ -70.274734, 46.173887 ], [ -70.275078, 46.174363 ], [ -70.277138, 46.174363 ], [ -70.278168, 46.175076 ], [ -70.279198, 46.176502 ], [ -70.279884, 46.176502 ], [ -70.279884, 46.177453 ], [ -70.280914, 46.177453 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180306 ], [ -70.284004, 46.180544 ], [ -70.283661, 46.181494 ], [ -70.284691, 46.181732 ], [ -70.284691, 46.182208 ], [ -70.286064, 46.182921 ], [ -70.285378, 46.184347 ], [ -70.286064, 46.184822 ], [ -70.288811, 46.185298 ], [ -70.290527, 46.185060 ], [ -70.290527, 46.187674 ], [ -70.289841, 46.187912 ], [ -70.289841, 46.188863 ], [ -70.292244, 46.190289 ], [ -70.292244, 46.191477 ], [ -70.290184, 46.192666 ], [ -70.288811, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195280 ], [ -70.285721, 46.195280 ], [ -70.285721, 46.197181 ], [ -70.284348, 46.197656 ], [ -70.283661, 46.199082 ], [ -70.281944, 46.199320 ], [ -70.280914, 46.200033 ], [ -70.281258, 46.200983 ], [ -70.279541, 46.201458 ], [ -70.278854, 46.202171 ], [ -70.278854, 46.203122 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204310 ], [ -70.276794, 46.205022 ], [ -70.276108, 46.207636 ], [ -70.275078, 46.207874 ], [ -70.272331, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.271645, 46.210487 ], [ -70.272331, 46.210725 ], [ -70.271988, 46.210962 ], [ -70.270958, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.270615, 46.211675 ], [ -70.271645, 46.212150 ], [ -70.271301, 46.213338 ], [ -70.274391, 46.214526 ], [ -70.272675, 46.216189 ], [ -70.273361, 46.216902 ], [ -70.271645, 46.217139 ], [ -70.271645, 46.216664 ], [ -70.270958, 46.216664 ], [ -70.269585, 46.217139 ], [ -70.268555, 46.217852 ], [ -70.268211, 46.218802 ], [ -70.267525, 46.219040 ], [ -70.267868, 46.220940 ], [ -70.265465, 46.223553 ], [ -70.267181, 46.224740 ], [ -70.267181, 46.225215 ], [ -70.265808, 46.225453 ], [ -70.264435, 46.227115 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.262032, 46.229016 ], [ -70.259972, 46.230441 ], [ -70.260658, 46.231391 ], [ -70.259628, 46.232103 ], [ -70.259628, 46.233765 ], [ -70.257568, 46.236615 ], [ -70.257568, 46.237565 ], [ -70.259285, 46.238752 ], [ -70.256882, 46.240415 ], [ -70.257225, 46.242077 ], [ -70.255852, 46.243264 ], [ -70.255852, 46.244689 ], [ -70.254135, 46.245401 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246113 ], [ -70.252419, 46.248250 ], [ -70.251045, 46.248725 ], [ -70.251045, 46.249912 ], [ -70.251732, 46.250861 ], [ -70.251389, 46.252048 ], [ -70.254135, 46.253236 ], [ -70.254478, 46.253948 ], [ -70.254135, 46.254660 ], [ -70.253105, 46.254897 ], [ -70.253105, 46.258933 ], [ -70.252419, 46.260120 ], [ -70.250359, 46.260832 ], [ -70.250359, 46.262019 ], [ -70.249672, 46.262493 ], [ -70.250359, 46.262731 ], [ -70.250359, 46.263205 ], [ -70.249329, 46.263917 ], [ -70.249672, 46.264629 ], [ -70.248642, 46.265104 ], [ -70.248299, 46.265816 ], [ -70.248299, 46.267715 ], [ -70.246582, 46.268664 ], [ -70.245895, 46.269851 ], [ -70.243149, 46.271749 ], [ -70.243492, 46.273173 ], [ -70.242119, 46.273411 ], [ -70.241776, 46.272699 ], [ -70.240746, 46.272936 ], [ -70.240746, 46.274834 ], [ -70.239372, 46.275784 ], [ -70.239372, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.277682 ], [ -70.240059, 46.279106 ], [ -70.238686, 46.280292 ], [ -70.235252, 46.281716 ], [ -70.234566, 46.283377 ], [ -70.232506, 46.284563 ], [ -70.232506, 46.285749 ], [ -70.231819, 46.286698 ], [ -70.231819, 46.290969 ], [ -70.229073, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.227356, 46.292155 ], [ -70.225296, 46.292867 ], [ -70.223923, 46.292629 ], [ -70.222893, 46.293104 ], [ -70.220490, 46.293104 ], [ -70.218773, 46.294053 ], [ -70.216713, 46.294527 ], [ -70.217400, 46.295239 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.214996, 46.295476 ], [ -70.214310, 46.295476 ], [ -70.214653, 46.295951 ], [ -70.213623, 46.296425 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210533, 46.298085 ], [ -70.209160, 46.298797 ], [ -70.206757, 46.299034 ], [ -70.205727, 46.299983 ], [ -70.205727, 46.300457 ], [ -70.206757, 46.300932 ], [ -70.206757, 46.301643 ], [ -70.205383, 46.302592 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.307336 ], [ -70.206070, 46.309944 ], [ -70.204697, 46.310893 ], [ -70.203323, 46.312790 ], [ -70.202980, 46.314687 ], [ -70.204697, 46.316110 ], [ -70.204353, 46.316821 ], [ -70.206070, 46.317770 ], [ -70.207443, 46.319430 ], [ -70.206757, 46.320378 ], [ -70.207100, 46.322512 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207443, 46.327728 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331284 ], [ -70.206413, 46.331758 ], [ -70.205383, 46.332706 ], [ -70.204353, 46.334129 ], [ -70.201950, 46.335314 ], [ -70.200920, 46.336973 ], [ -70.198174, 46.338869 ], [ -70.198174, 46.339343 ], [ -70.195770, 46.340765 ], [ -70.195084, 46.342188 ], [ -70.195770, 46.343610 ], [ -70.193367, 46.345980 ], [ -70.193367, 46.346928 ], [ -70.191307, 46.347876 ], [ -70.191650, 46.349060 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350008 ], [ -70.189590, 46.350482 ], [ -70.188904, 46.350008 ], [ -70.187874, 46.350008 ], [ -70.184784, 46.351904 ], [ -70.183067, 46.351667 ], [ -70.181694, 46.352141 ], [ -70.180664, 46.354748 ], [ -70.177574, 46.355459 ], [ -70.176544, 46.356170 ], [ -70.175514, 46.358065 ], [ -70.173111, 46.359250 ], [ -70.170708, 46.359487 ], [ -70.167274, 46.358065 ], [ -70.166588, 46.357354 ], [ -70.165901, 46.357354 ], [ -70.165215, 46.358539 ], [ -70.162468, 46.359724 ], [ -70.162468, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160408, 46.361145 ], [ -70.159721, 46.360671 ], [ -70.160408, 46.359724 ], [ -70.158348, 46.359250 ], [ -70.157661, 46.359961 ], [ -70.158005, 46.360671 ], [ -70.156631, 46.361382 ], [ -70.155602, 46.361382 ], [ -70.153885, 46.359961 ], [ -70.152855, 46.359961 ], [ -70.151482, 46.359250 ], [ -70.148048, 46.359013 ], [ -70.144615, 46.362330 ], [ -70.141869, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140495, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138435, 46.366358 ], [ -70.137749, 46.369200 ], [ -70.136375, 46.369911 ], [ -70.135345, 46.369911 ], [ -70.135345, 46.369437 ], [ -70.134315, 46.368963 ], [ -70.133286, 46.368963 ], [ -70.131569, 46.369674 ], [ -70.129509, 46.369437 ], [ -70.128479, 46.370859 ], [ -70.127106, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372991 ], [ -70.128136, 46.379149 ], [ -70.125732, 46.381754 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115776, 46.386491 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388149 ], [ -70.115089, 46.388149 ], [ -70.114403, 46.385307 ], [ -70.113716, 46.385307 ], [ -70.112686, 46.386017 ], [ -70.110626, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388149 ], [ -70.111313, 46.388386 ], [ -70.111313, 46.387912 ], [ -70.110283, 46.387438 ], [ -70.109596, 46.387912 ], [ -70.110283, 46.388859 ], [ -70.108223, 46.388859 ], [ -70.108223, 46.388386 ], [ -70.108910, 46.388149 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.387912 ], [ -70.108566, 46.389570 ], [ -70.109940, 46.390280 ], [ -70.109596, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.107193, 46.390517 ], [ -70.106506, 46.390754 ], [ -70.107536, 46.392648 ], [ -70.106506, 46.393358 ], [ -70.105133, 46.393358 ], [ -70.104446, 46.393832 ], [ -70.104103, 46.394779 ], [ -70.101700, 46.396910 ], [ -70.100670, 46.398568 ], [ -70.101013, 46.401172 ], [ -70.100327, 46.401409 ], [ -70.098953, 46.400698 ], [ -70.098953, 46.401409 ], [ -70.099983, 46.402356 ], [ -70.099297, 46.402592 ], [ -70.099297, 46.403066 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403539 ], [ -70.098267, 46.403539 ], [ -70.097923, 46.404486 ], [ -70.099983, 46.404250 ], [ -70.100670, 46.404486 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405907 ], [ -70.095177, 46.406854 ], [ -70.095520, 46.407091 ], [ -70.096550, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094833, 46.407801 ], [ -70.094490, 46.408274 ], [ -70.096893, 46.408984 ], [ -70.096550, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.093803, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.090370, 46.410641 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.409221 ], [ -70.086250, 46.409221 ], [ -70.082817, 46.410641 ], [ -70.079384, 46.410641 ], [ -70.078011, 46.409694 ], [ -70.076637, 46.409458 ], [ -70.073547, 46.410405 ], [ -70.072517, 46.411115 ], [ -70.068054, 46.411588 ], [ -70.065651, 46.412772 ], [ -70.064964, 46.413955 ], [ -70.064278, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.057068, 46.414902 ], [ -70.056381, 46.415612 ], [ -70.056725, 46.416559 ], [ -70.055695, 46.421529 ], [ -70.023079, 46.573495 ], [ -69.920425, 46.573731 ], [ -69.816399, 46.573259 ], [ -69.758720, 46.573967 ], [ -69.720955, 46.573967 ] ] ] } } +{ "type": "Feature", "properties": { "STATEFP": "23", "COUNTYFP": "025", "COUNTYNS": "00581298", "GEOID": "23025", "NAME": "Somerset", "NAMELSAD": "Somerset County", "LSAD": "06", "CLASSFP": "H1", "MTFCC": "G4020", "FUNCSTAT": "A", "ALAND": 10164314642, "AWATER": 437895944, "INTPTLAT": "+45.507482", "INTPTLON": "-069.976039" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.720955, 46.573967 ], [ -69.720955, 46.532414 ], [ -69.719238, 46.394069 ], [ -69.732285, 46.394069 ], [ -69.730225, 46.202646 ], [ -69.729538, 46.073231 ], [ -69.729195, 46.054173 ], [ -70.280914, 46.054173 ], [ -70.279541, 46.054650 ], [ -70.279541, 46.055841 ], [ -70.278511, 46.055841 ], [ -70.278511, 46.057032 ], [ -70.279541, 46.057985 ], [ -70.279541, 46.058700 ], [ -70.278168, 46.059176 ], [ -70.278854, 46.060129 ], [ -70.278511, 46.060606 ], [ -70.279884, 46.060844 ], [ -70.280914, 46.060129 ], [ -70.281601, 46.060606 ], [ -70.282631, 46.060368 ], [ -70.283318, 46.062035 ], [ -70.284348, 46.062750 ], [ -70.289154, 46.062273 ], [ -70.290871, 46.061082 ], [ -70.293274, 46.060606 ], [ -70.301170, 46.060606 ], [ -70.303230, 46.061559 ], [ -70.303230, 46.062273 ], [ -70.303917, 46.061321 ], [ -70.304604, 46.061797 ], [ -70.306664, 46.061082 ], [ -70.308723, 46.061559 ], [ -70.309753, 46.063226 ], [ -70.310783, 46.063703 ], [ -70.311127, 46.064656 ], [ -70.309067, 46.065608 ], [ -70.309067, 46.066085 ], [ -70.307007, 46.067514 ], [ -70.306320, 46.068705 ], [ -70.302544, 46.070372 ], [ -70.302887, 46.070849 ], [ -70.304604, 46.071087 ], [ -70.305290, 46.071802 ], [ -70.302200, 46.073231 ], [ -70.303230, 46.074898 ], [ -70.303230, 46.075851 ], [ -70.302544, 46.077279 ], [ -70.301170, 46.077518 ], [ -70.300140, 46.078232 ], [ -70.300140, 46.079185 ], [ -70.302544, 46.080375 ], [ -70.301857, 46.080852 ], [ -70.302200, 46.082281 ], [ -70.300140, 46.083709 ], [ -70.292931, 46.085853 ], [ -70.292587, 46.086567 ], [ -70.291901, 46.086805 ], [ -70.291557, 46.088948 ], [ -70.290871, 46.089900 ], [ -70.291557, 46.090615 ], [ -70.290527, 46.093710 ], [ -70.289841, 46.094662 ], [ -70.288811, 46.094900 ], [ -70.284348, 46.097519 ], [ -70.284348, 46.098710 ], [ -70.286064, 46.099900 ], [ -70.283318, 46.100376 ], [ -70.278168, 46.099900 ], [ -70.275764, 46.101328 ], [ -70.274048, 46.101566 ], [ -70.273361, 46.102280 ], [ -70.271645, 46.101090 ], [ -70.268211, 46.101328 ], [ -70.266495, 46.100614 ], [ -70.265465, 46.100852 ], [ -70.263405, 46.100376 ], [ -70.262375, 46.100376 ], [ -70.262032, 46.100852 ], [ -70.261002, 46.101090 ], [ -70.257568, 46.100376 ], [ -70.257225, 46.099424 ], [ -70.254822, 46.099424 ], [ -70.252762, 46.100376 ], [ -70.252419, 46.101328 ], [ -70.253105, 46.102519 ], [ -70.253105, 46.103947 ], [ -70.252075, 46.105851 ], [ -70.252762, 46.107279 ], [ -70.254478, 46.107755 ], [ -70.255165, 46.108707 ], [ -70.254822, 46.110374 ], [ -70.255508, 46.110612 ], [ -70.255165, 46.111088 ], [ -70.254135, 46.111088 ], [ -70.254135, 46.112278 ], [ -70.253448, 46.112516 ], [ -70.254478, 46.113944 ], [ -70.253792, 46.113944 ], [ -70.253448, 46.114658 ], [ -70.252762, 46.114420 ], [ -70.253105, 46.115134 ], [ -70.252419, 46.114896 ], [ -70.251732, 46.117990 ], [ -70.251045, 46.117990 ], [ -70.251389, 46.119655 ], [ -70.250702, 46.119655 ], [ -70.250359, 46.120369 ], [ -70.249672, 46.120369 ], [ -70.247955, 46.122749 ], [ -70.247955, 46.124177 ], [ -70.247269, 46.124177 ], [ -70.247612, 46.125605 ], [ -70.246925, 46.125367 ], [ -70.245552, 46.126080 ], [ -70.245552, 46.126794 ], [ -70.244865, 46.127032 ], [ -70.245209, 46.127270 ], [ -70.244522, 46.127270 ], [ -70.244865, 46.128460 ], [ -70.243492, 46.128698 ], [ -70.243835, 46.131077 ], [ -70.242805, 46.131077 ], [ -70.242462, 46.131553 ], [ -70.242805, 46.133218 ], [ -70.241432, 46.134646 ], [ -70.242119, 46.135360 ], [ -70.240746, 46.136311 ], [ -70.241089, 46.136549 ], [ -70.240402, 46.136549 ], [ -70.240746, 46.136787 ], [ -70.240059, 46.136787 ], [ -70.240402, 46.137977 ], [ -70.239716, 46.137739 ], [ -70.239716, 46.138690 ], [ -70.240402, 46.139166 ], [ -70.240059, 46.139642 ], [ -70.239372, 46.139642 ], [ -70.239372, 46.140355 ], [ -70.240059, 46.140593 ], [ -70.239372, 46.140831 ], [ -70.239372, 46.143210 ], [ -70.237312, 46.144875 ], [ -70.236282, 46.145113 ], [ -70.236626, 46.146540 ], [ -70.237656, 46.146778 ], [ -70.238686, 46.148443 ], [ -70.239372, 46.148919 ], [ -70.240402, 46.148919 ], [ -70.240402, 46.151059 ], [ -70.241432, 46.151059 ], [ -70.241432, 46.149870 ], [ -70.242462, 46.149632 ], [ -70.243835, 46.150584 ], [ -70.243835, 46.151535 ], [ -70.245895, 46.150821 ], [ -70.246925, 46.152011 ], [ -70.248299, 46.151773 ], [ -70.247612, 46.153200 ], [ -70.250359, 46.154151 ], [ -70.249672, 46.155578 ], [ -70.250359, 46.155816 ], [ -70.250359, 46.156529 ], [ -70.252075, 46.157005 ], [ -70.252075, 46.157956 ], [ -70.252762, 46.158432 ], [ -70.255508, 46.158432 ], [ -70.255508, 46.159621 ], [ -70.257225, 46.159621 ], [ -70.257568, 46.160334 ], [ -70.258942, 46.161048 ], [ -70.258255, 46.161999 ], [ -70.259285, 46.162474 ], [ -70.259972, 46.163426 ], [ -70.261345, 46.163663 ], [ -70.261688, 46.164377 ], [ -70.263405, 46.164377 ], [ -70.264778, 46.164852 ], [ -70.264435, 46.167706 ], [ -70.265808, 46.168181 ], [ -70.266151, 46.169132 ], [ -70.267525, 46.169370 ], [ -70.268211, 46.170321 ], [ -70.270271, 46.170321 ], [ -70.270615, 46.170796 ], [ -70.269928, 46.171034 ], [ -70.270615, 46.171272 ], [ -70.270958, 46.171985 ], [ -70.273705, 46.172223 ], [ -70.275421, 46.173412 ], [ -70.274734, 46.173887 ], [ -70.275078, 46.174363 ], [ -70.277138, 46.174363 ], [ -70.278168, 46.175076 ], [ -70.279198, 46.176502 ], [ -70.279884, 46.176502 ], [ -70.279884, 46.177453 ], [ -70.280914, 46.177453 ], [ -70.281258, 46.178166 ], [ -70.282288, 46.178642 ], [ -70.282631, 46.180306 ], [ -70.284004, 46.180544 ], [ -70.283661, 46.181494 ], [ -70.284691, 46.181732 ], [ -70.284691, 46.182208 ], [ -70.286064, 46.182921 ], [ -70.285378, 46.184347 ], [ -70.286064, 46.184822 ], [ -70.288811, 46.185298 ], [ -70.290527, 46.185060 ], [ -70.290527, 46.187674 ], [ -70.289841, 46.187912 ], [ -70.289841, 46.188863 ], [ -70.292244, 46.190289 ], [ -70.292244, 46.191477 ], [ -70.290184, 46.192666 ], [ -70.288811, 46.192666 ], [ -70.289154, 46.193616 ], [ -70.287781, 46.193616 ], [ -70.287781, 46.195280 ], [ -70.285721, 46.195280 ], [ -70.285721, 46.197181 ], [ -70.284348, 46.197656 ], [ -70.283661, 46.199082 ], [ -70.281944, 46.199320 ], [ -70.280914, 46.200033 ], [ -70.281258, 46.200983 ], [ -70.279541, 46.201458 ], [ -70.278854, 46.202171 ], [ -70.278854, 46.203122 ], [ -70.277138, 46.203834 ], [ -70.277481, 46.204310 ], [ -70.276794, 46.205022 ], [ -70.276108, 46.207636 ], [ -70.275078, 46.207874 ], [ -70.272331, 46.210012 ], [ -70.271645, 46.210012 ], [ -70.271645, 46.210487 ], [ -70.272331, 46.210725 ], [ -70.271988, 46.210962 ], [ -70.270958, 46.210725 ], [ -70.270615, 46.211200 ], [ -70.270615, 46.211675 ], [ -70.271645, 46.212150 ], [ -70.271301, 46.213338 ], [ -70.274391, 46.214526 ], [ -70.272675, 46.216189 ], [ -70.273361, 46.216902 ], [ -70.271645, 46.217139 ], [ -70.271645, 46.216664 ], [ -70.270958, 46.216664 ], [ -70.269585, 46.217139 ], [ -70.268555, 46.217852 ], [ -70.268211, 46.218802 ], [ -70.267525, 46.219040 ], [ -70.267868, 46.220940 ], [ -70.265465, 46.223553 ], [ -70.267181, 46.224740 ], [ -70.267181, 46.225215 ], [ -70.265808, 46.225453 ], [ -70.264435, 46.227115 ], [ -70.263748, 46.227353 ], [ -70.263748, 46.228778 ], [ -70.262032, 46.229016 ], [ -70.259972, 46.230441 ], [ -70.260658, 46.231391 ], [ -70.259628, 46.232103 ], [ -70.259628, 46.233765 ], [ -70.257568, 46.236615 ], [ -70.257568, 46.237565 ], [ -70.259285, 46.238752 ], [ -70.256882, 46.240415 ], [ -70.257225, 46.242077 ], [ -70.255852, 46.243264 ], [ -70.255852, 46.244689 ], [ -70.254135, 46.245401 ], [ -70.254135, 46.245876 ], [ -70.255508, 46.246113 ], [ -70.252419, 46.248250 ], [ -70.251045, 46.248725 ], [ -70.251045, 46.249912 ], [ -70.251732, 46.250861 ], [ -70.251389, 46.252048 ], [ -70.254478, 46.253710 ], [ -70.254478, 46.254422 ], [ -70.253105, 46.254897 ], [ -70.253105, 46.258933 ], [ -70.252419, 46.260120 ], [ -70.250359, 46.260832 ], [ -70.250359, 46.262019 ], [ -70.249672, 46.262493 ], [ -70.250359, 46.262731 ], [ -70.250359, 46.263205 ], [ -70.249329, 46.263917 ], [ -70.249672, 46.264629 ], [ -70.248642, 46.265104 ], [ -70.248299, 46.265816 ], [ -70.248299, 46.267715 ], [ -70.246582, 46.268664 ], [ -70.245895, 46.269851 ], [ -70.243149, 46.271749 ], [ -70.243492, 46.273173 ], [ -70.242119, 46.273411 ], [ -70.241776, 46.272699 ], [ -70.240746, 46.272936 ], [ -70.240746, 46.274834 ], [ -70.239372, 46.275784 ], [ -70.239372, 46.276496 ], [ -70.240402, 46.277207 ], [ -70.239716, 46.277682 ], [ -70.240059, 46.279106 ], [ -70.238686, 46.280292 ], [ -70.235252, 46.281716 ], [ -70.234566, 46.283377 ], [ -70.232506, 46.284563 ], [ -70.232506, 46.285749 ], [ -70.231819, 46.286698 ], [ -70.231819, 46.290969 ], [ -70.229073, 46.291443 ], [ -70.228729, 46.292392 ], [ -70.227356, 46.292155 ], [ -70.225296, 46.292867 ], [ -70.223923, 46.292629 ], [ -70.222893, 46.293104 ], [ -70.220490, 46.293104 ], [ -70.218773, 46.294053 ], [ -70.216713, 46.294527 ], [ -70.217400, 46.295239 ], [ -70.217056, 46.295476 ], [ -70.216370, 46.295476 ], [ -70.215340, 46.294764 ], [ -70.214996, 46.295476 ], [ -70.214310, 46.295476 ], [ -70.214653, 46.295951 ], [ -70.213623, 46.296425 ], [ -70.214310, 46.296662 ], [ -70.214310, 46.297137 ], [ -70.212250, 46.298560 ], [ -70.210533, 46.298085 ], [ -70.209160, 46.298797 ], [ -70.206757, 46.299034 ], [ -70.205727, 46.299983 ], [ -70.205727, 46.300457 ], [ -70.206757, 46.300932 ], [ -70.206757, 46.301643 ], [ -70.205383, 46.302592 ], [ -70.206757, 46.306150 ], [ -70.206070, 46.307336 ], [ -70.206070, 46.309944 ], [ -70.204697, 46.310893 ], [ -70.203323, 46.312790 ], [ -70.202980, 46.314687 ], [ -70.204697, 46.316110 ], [ -70.204353, 46.316821 ], [ -70.206070, 46.317770 ], [ -70.207443, 46.319430 ], [ -70.206757, 46.320378 ], [ -70.207100, 46.322512 ], [ -70.206070, 46.323935 ], [ -70.206070, 46.324883 ], [ -70.207100, 46.326068 ], [ -70.207443, 46.327728 ], [ -70.209160, 46.329624 ], [ -70.207787, 46.331284 ], [ -70.206413, 46.331758 ], [ -70.205383, 46.332706 ], [ -70.204353, 46.334129 ], [ -70.201950, 46.335314 ], [ -70.200920, 46.336973 ], [ -70.198174, 46.338869 ], [ -70.198174, 46.339343 ], [ -70.195770, 46.340765 ], [ -70.195084, 46.342188 ], [ -70.195770, 46.343610 ], [ -70.193367, 46.345980 ], [ -70.193367, 46.346928 ], [ -70.191307, 46.347876 ], [ -70.191650, 46.349060 ], [ -70.192337, 46.349060 ], [ -70.191650, 46.350008 ], [ -70.189590, 46.350482 ], [ -70.188904, 46.350008 ], [ -70.187874, 46.350008 ], [ -70.184784, 46.351904 ], [ -70.183067, 46.351667 ], [ -70.181694, 46.352141 ], [ -70.180664, 46.354748 ], [ -70.177574, 46.355459 ], [ -70.176544, 46.356170 ], [ -70.175514, 46.358065 ], [ -70.173111, 46.359250 ], [ -70.170708, 46.359487 ], [ -70.167274, 46.358065 ], [ -70.166588, 46.357354 ], [ -70.165901, 46.357354 ], [ -70.165215, 46.358539 ], [ -70.162468, 46.359724 ], [ -70.162468, 46.360671 ], [ -70.161781, 46.361145 ], [ -70.160408, 46.361145 ], [ -70.159721, 46.360671 ], [ -70.160408, 46.359724 ], [ -70.158348, 46.359250 ], [ -70.157661, 46.359961 ], [ -70.158005, 46.360671 ], [ -70.156631, 46.361382 ], [ -70.155602, 46.361382 ], [ -70.153885, 46.359961 ], [ -70.152855, 46.359961 ], [ -70.151482, 46.359250 ], [ -70.148048, 46.359013 ], [ -70.144615, 46.362330 ], [ -70.141869, 46.362093 ], [ -70.140839, 46.362567 ], [ -70.140495, 46.363988 ], [ -70.141525, 46.364462 ], [ -70.138435, 46.366358 ], [ -70.137749, 46.369200 ], [ -70.136375, 46.369911 ], [ -70.135345, 46.369911 ], [ -70.135345, 46.369437 ], [ -70.134315, 46.368963 ], [ -70.133286, 46.368963 ], [ -70.131569, 46.369674 ], [ -70.129509, 46.369437 ], [ -70.128479, 46.370859 ], [ -70.127106, 46.370859 ], [ -70.126762, 46.371569 ], [ -70.127449, 46.372991 ], [ -70.128136, 46.379149 ], [ -70.125732, 46.381754 ], [ -70.123672, 46.381991 ], [ -70.116806, 46.385307 ], [ -70.115776, 46.386491 ], [ -70.117149, 46.387438 ], [ -70.116806, 46.388149 ], [ -70.115089, 46.388149 ], [ -70.114403, 46.385307 ], [ -70.113716, 46.385307 ], [ -70.112686, 46.386017 ], [ -70.110626, 46.386254 ], [ -70.112686, 46.387675 ], [ -70.112343, 46.388149 ], [ -70.111313, 46.388386 ], [ -70.111313, 46.387912 ], [ -70.110283, 46.387438 ], [ -70.109596, 46.387912 ], [ -70.110283, 46.388859 ], [ -70.108223, 46.388859 ], [ -70.108223, 46.388386 ], [ -70.108910, 46.388149 ], [ -70.108223, 46.387675 ], [ -70.107536, 46.387912 ], [ -70.108566, 46.389570 ], [ -70.109940, 46.390280 ], [ -70.109596, 46.390990 ], [ -70.108566, 46.391464 ], [ -70.107193, 46.390517 ], [ -70.106506, 46.390754 ], [ -70.107536, 46.392648 ], [ -70.106506, 46.393358 ], [ -70.105133, 46.393358 ], [ -70.104446, 46.393832 ], [ -70.104103, 46.394779 ], [ -70.101700, 46.396910 ], [ -70.100670, 46.398568 ], [ -70.101013, 46.401172 ], [ -70.100327, 46.401409 ], [ -70.098953, 46.400698 ], [ -70.098953, 46.401409 ], [ -70.099983, 46.402356 ], [ -70.099297, 46.402592 ], [ -70.099297, 46.403066 ], [ -70.100327, 46.402829 ], [ -70.100327, 46.403539 ], [ -70.098267, 46.403539 ], [ -70.097923, 46.404486 ], [ -70.099983, 46.404250 ], [ -70.100670, 46.404486 ], [ -70.101013, 46.405197 ], [ -70.096893, 46.405197 ], [ -70.095520, 46.405907 ], [ -70.095177, 46.406854 ], [ -70.095520, 46.407091 ], [ -70.096550, 46.406617 ], [ -70.096893, 46.407091 ], [ -70.094833, 46.407801 ], [ -70.094490, 46.408274 ], [ -70.096893, 46.408984 ], [ -70.096550, 46.409694 ], [ -70.094833, 46.409931 ], [ -70.093803, 46.409458 ], [ -70.092087, 46.409458 ], [ -70.090370, 46.410641 ], [ -70.088654, 46.410878 ], [ -70.087280, 46.409221 ], [ -70.086250, 46.409221 ], [ -70.082817, 46.410641 ], [ -70.079384, 46.410641 ], [ -70.078011, 46.409694 ], [ -70.076637, 46.409458 ], [ -70.073547, 46.410405 ], [ -70.072517, 46.411115 ], [ -70.068054, 46.411588 ], [ -70.065651, 46.412772 ], [ -70.064964, 46.413955 ], [ -70.064278, 46.414192 ], [ -70.061874, 46.413719 ], [ -70.057068, 46.414902 ], [ -70.056381, 46.415612 ], [ -70.056725, 46.416559 ], [ -70.055695, 46.421529 ], [ -70.023079, 46.573495 ], [ -69.920425, 46.573731 ], [ -69.816399, 46.573259 ], [ -69.758720, 46.573967 ], [ -69.720955, 46.573967 ] ] ] } } ] } ] } , diff --git a/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json index d6b26f016..efdd4ade8 100644 --- a/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json +++ b/tests/tl_2018_51685_roads/out/-Z11_-z11_--no-simplification-of-shared-nodes.json @@ -154,9 +154,9 @@ , { "type": "Feature", "properties": { "LINEARID": "110410477452", "FULLNAME": "White Pine Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.447348, 38.771417 ], [ -77.447004, 38.771216 ], [ -77.446876, 38.771350 ], [ -77.447176, 38.771584 ], [ -77.448421, 38.772421 ], [ -77.449064, 38.772689 ], [ -77.450180, 38.773157 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440009, 38.775967 ], [ -77.442541, 38.776202 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440009, 38.775967 ], [ -77.440052, 38.776202 ], [ -77.439752, 38.778276 ], [ -77.439880, 38.779280 ], [ -77.439752, 38.779648 ], [ -77.439494, 38.779982 ], [ -77.438679, 38.780517 ], [ -77.438550, 38.780618 ], [ -77.438421, 38.780618 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110410477313", "FULLNAME": "Euclid Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440009, 38.775967 ], [ -77.440052, 38.776202 ], [ -77.439752, 38.778276 ], [ -77.439880, 38.779079 ], [ -77.439837, 38.779514 ], [ -77.439494, 38.779982 ], [ -77.438679, 38.780517 ], [ -77.438550, 38.780618 ], [ -77.438421, 38.780618 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105533752589", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440009, 38.775967 ], [ -77.442541, 38.776202 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1105045631567", "FULLNAME": "Euclid Ave", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.444601, 38.770815 ], [ -77.442498, 38.772387 ], [ -77.442412, 38.772454 ], [ -77.442026, 38.772789 ], [ -77.441554, 38.773324 ], [ -77.441125, 38.773860 ], [ -77.440567, 38.774763 ], [ -77.440138, 38.775867 ], [ -77.440009, 38.775967 ], [ -77.439966, 38.775767 ], [ -77.440438, 38.774663 ], [ -77.441382, 38.773257 ], [ -77.442369, 38.772287 ], [ -77.442927, 38.771819 ], [ -77.443914, 38.771183 ], [ -77.444730, 38.770413 ], [ -77.445374, 38.769711 ], [ -77.445545, 38.769543 ], [ -77.447047, 38.767870 ], [ -77.447262, 38.767670 ] ] } } , @@ -266,7 +266,7 @@ , { "type": "Feature", "properties": { "LINEARID": "110410477423", "FULLNAME": "Railroad Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.442241, 38.762617 ], [ -77.441983, 38.762650 ], [ -77.441897, 38.762650 ], [ -77.441554, 38.762851 ], [ -77.440739, 38.763621 ], [ -77.440610, 38.763788 ], [ -77.440567, 38.763989 ], [ -77.440567, 38.764089 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439322, 38.763788 ], [ -77.439408, 38.763922 ], [ -77.439709, 38.764022 ], [ -77.440181, 38.763788 ], [ -77.440867, 38.763085 ], [ -77.440782, 38.762952 ], [ -77.440052, 38.762650 ], [ -77.439923, 38.762650 ], [ -77.439365, 38.763186 ], [ -77.439237, 38.763453 ], [ -77.439322, 38.763788 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "1105533753031", "FULLNAME": "Sunset Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439322, 38.763788 ], [ -77.439408, 38.763922 ], [ -77.439709, 38.764022 ], [ -77.440181, 38.763788 ], [ -77.440867, 38.763085 ], [ -77.440782, 38.762952 ], [ -77.440310, 38.762717 ], [ -77.440052, 38.762650 ], [ -77.439923, 38.762650 ], [ -77.439795, 38.762717 ], [ -77.439365, 38.763186 ], [ -77.439237, 38.763453 ], [ -77.439322, 38.763788 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1103679536111", "FULLNAME": "Russia Branch View Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.439194, 38.764357 ], [ -77.439065, 38.764825 ], [ -77.438464, 38.765327 ], [ -77.437778, 38.765930 ], [ -77.437177, 38.765327 ], [ -77.436876, 38.765260 ] ] } } , @@ -312,14 +312,14 @@ , { "type": "Feature", "properties": { "LINEARID": "1103679536475", "FULLNAME": "Handerson Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435846, 38.766264 ], [ -77.435932, 38.766465 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.766063 ], [ -77.436018, 38.766130 ], [ -77.435846, 38.766264 ], [ -77.435675, 38.766197 ], [ -77.435546, 38.766063 ], [ -77.435374, 38.765863 ], [ -77.435417, 38.765729 ], [ -77.435846, 38.765528 ], [ -77.436018, 38.765327 ] ] } } -, { "type": "Feature", "properties": { "LINEARID": "1103678302380", "FULLNAME": "Elzey Pl", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.766063 ], [ -77.436361, 38.765863 ], [ -77.436962, 38.765729 ], [ -77.437048, 38.765829 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1103679538402", "FULLNAME": "Digital Dr", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.440138, 38.759873 ], [ -77.438979, 38.761211 ], [ -77.438679, 38.761948 ], [ -77.437649, 38.763387 ], [ -77.437563, 38.763587 ], [ -77.437434, 38.763955 ], [ -77.437091, 38.764558 ], [ -77.436533, 38.765361 ], [ -77.436061, 38.765863 ], [ -77.435546, 38.766063 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1103678610426", "FULLNAME": "Wheats Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435203, 38.766465 ], [ -77.434816, 38.766365 ] ] } } , +{ "type": "Feature", "properties": { "LINEARID": "1103678302281", "FULLNAME": "Walker Way", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436233, 38.766063 ], [ -77.436018, 38.766130 ], [ -77.435846, 38.766264 ], [ -77.435675, 38.766197 ], [ -77.435546, 38.766063 ], [ -77.435374, 38.765829 ], [ -77.435417, 38.765729 ], [ -77.435846, 38.765528 ], [ -77.436018, 38.765327 ] ] } } +, { "type": "Feature", "properties": { "LINEARID": "1103679090051", "FULLNAME": "Park Station Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.435546, 38.766063 ], [ -77.435203, 38.766465 ], [ -77.434902, 38.767000 ], [ -77.434773, 38.767368 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1106081861019", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.436662, 38.764357 ], [ -77.435846, 38.764123 ] ] } } @@ -486,7 +486,7 @@ , { "type": "Feature", "properties": { "LINEARID": "110410477438", "FULLNAME": "Stephanie St", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.427735, 38.765361 ], [ -77.427135, 38.765294 ], [ -77.426491, 38.765060 ], [ -77.426019, 38.764692 ], [ -77.425547, 38.764290 ], [ -77.425289, 38.764156 ], [ -77.424517, 38.763822 ], [ -77.423658, 38.763688 ], [ -77.422929, 38.763755 ], [ -77.421942, 38.764056 ] ] } } , -{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.764959 ], [ -77.421942, 38.764056 ], [ -77.421684, 38.763487 ], [ -77.421684, 38.763286 ], [ -77.421942, 38.762516 ], [ -77.422285, 38.762081 ], [ -77.422285, 38.761914 ] ] } } +{ "type": "Feature", "properties": { "LINEARID": "110410477306", "FULLNAME": "Cougar Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.422328, 38.764959 ], [ -77.421942, 38.764056 ], [ -77.421684, 38.763487 ], [ -77.421684, 38.763286 ], [ -77.421942, 38.762516 ], [ -77.422071, 38.762282 ], [ -77.422285, 38.762081 ], [ -77.422285, 38.761914 ] ] } } , { "type": "Feature", "properties": { "LINEARID": "1103679536129", "FULLNAME": "Silver Meteor Ct", "RTTYP": "M", "MTFCC": "S1400" }, "geometry": { "type": "LineString", "coordinates": [ [ -77.431598, 38.761814 ], [ -77.430654, 38.763085 ] ] } } ,